From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 24900 invoked from network); 15 Dec 2023 06:24:49 -0000 Received: from minnie.tuhs.org (2600:3c01:e000:146::1) by inbox.vuxu.org with ESMTPUTF8; 15 Dec 2023 06:24:49 -0000 Received: from minnie.tuhs.org (localhost [IPv6:::1]) by minnie.tuhs.org (Postfix) with ESMTP id 57B6143DF6; Fri, 15 Dec 2023 16:24:41 +1000 (AEST) Received: from junk.nocrew.org (junk.nocrew.org [51.15.56.219]) by minnie.tuhs.org (Postfix) with ESMTPS id 6286243D61 for ; Fri, 15 Dec 2023 16:24:36 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=junk.nocrew.org) by junk.nocrew.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1rE1cf-00CXuV-Lk; Fri, 15 Dec 2023 06:24:33 +0000 From: Lars Brinkhoff To: jnc@mercury.lcs.mit.edu (Noel Chiappa) Organization: nocrew References: <20231214214805.81B2618C08F@mercury.lcs.mit.edu> Date: Fri, 15 Dec 2023 06:24:33 +0000 In-Reply-To: <20231214214805.81B2618C08F@mercury.lcs.mit.edu> (Noel Chiappa's message of "Thu, 14 Dec 2023 16:48:05 -0500 (EST)") Message-ID: <7wv8903rvi.fsf@junk.nocrew.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: lars@nocrew.org X-SA-Exim-Scanned: No (on junk.nocrew.org); SAEximRunCond expanded to false Message-ID-Hash: IVIEZLPJUCVWQS6GRWUXTCHZLSLIJOZO X-Message-ID-Hash: IVIEZLPJUCVWQS6GRWUXTCHZLSLIJOZO X-MailFrom: lars@nocrew.org X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: coff@tuhs.org X-Mailman-Version: 3.3.6b1 Precedence: list Subject: [COFF] Re: Terminology query - 'system process'? List-Id: Computer Old Farts Forum Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: For the record, daring to stray outside Unix, ITS originally had a "system job", and later split off a "core job". Both running in monitor mode. Job means the same thing as process here, and monitor same as kernel. --- >8 --- cut and stop reading here --- >8 --- off topic --- >8 --- In ITS terminology, "demon" means a (user space) process that is started on demand by the system. This could be due to an external event (say, a network connection), or another process indicating a need for a service. The demon may go away right after it has done its job, or linger around for a while. There's a separate term "dragon" which means a continuously running background process.