From 82ba818ff456bcd6d56a06226e3f27e98fbb55c3 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 22:58:58 -0500 Subject: removing all downloaded devdocs files --- devdocs/elisp/processes-and-threads.html | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 devdocs/elisp/processes-and-threads.html (limited to 'devdocs/elisp/processes-and-threads.html') diff --git a/devdocs/elisp/processes-and-threads.html b/devdocs/elisp/processes-and-threads.html deleted file mode 100644 index 0d5e935a..00000000 --- a/devdocs/elisp/processes-and-threads.html +++ /dev/null @@ -1,10 +0,0 @@ -

Processes and Threads

Because threads were a relatively late addition to Emacs Lisp, and due to the way dynamic binding was sometimes used in conjunction with accept-process-output, by default a process is locked to the thread that created it. When a process is locked to a thread, output from the process can only be accepted by that thread.

A Lisp program can specify to which thread a process is to be locked, or instruct Emacs to unlock a process, in which case its output can be processed by any thread. Only a single thread will wait for output from a given process at one time—once one thread begins waiting for output, the process is temporarily locked until accept-process-output or sit-for returns.

If the thread exits, all the processes locked to it are unlocked.

Function: process-thread process -

Return the thread to which process is locked. If process is unlocked, return nil.

-
Function: set-process-thread process thread -

Set the locking thread of process to thread. thread may be nil, in which case the process is unlocked.

-
-

- Copyright © 1990-1996, 1998-2022 Free Software Foundation, Inc.
Licensed under the GNU GPL license.
- https://www.gnu.org/software/emacs/manual/html_node/elisp/Processes-and-Threads.html -

-
-- cgit v1.2.3