summaryrefslogtreecommitdiff
path: root/libobjc/THREADS.MACH
diff options
context:
space:
mode:
authorbje <bje@138bc75d-0d04-0410-961f-82ee72b054a4>1998-09-17 08:04:30 +0000
committerbje <bje@138bc75d-0d04-0410-961f-82ee72b054a4>1998-09-17 08:04:30 +0000
commitd41977e4e85168436dfa7b74226ca12445317d9a (patch)
treeb8630279e559f3c950e92a27c2b4aa0daacb432a /libobjc/THREADS.MACH
parentc0d37149aae41c989063ed6857bf54a3ab72160e (diff)
downloadgcc-d41977e4e85168436dfa7b74226ca12445317d9a.tar.gz
Move documentation files from egcs/gcc/objc.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@22461 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libobjc/THREADS.MACH')
-rw-r--r--libobjc/THREADS.MACH23
1 files changed, 23 insertions, 0 deletions
diff --git a/libobjc/THREADS.MACH b/libobjc/THREADS.MACH
new file mode 100644
index 00000000000..55de6637866
--- /dev/null
+++ b/libobjc/THREADS.MACH
@@ -0,0 +1,23 @@
+This readme refers to the file thr-mach.c.
+
+Under mach, thread priorities are kinda strange-- any given thread has
+a MAXIMUM priority and a BASE priority. The BASE priority is the
+current priority of the thread and the MAXIMUM is the maximum possible
+priority the thread can assume. The developer can lower, but never
+raise the maximum priority.
+
+The gcc concept of thread priorities is that they run at one of three
+levels; interactive, background, and low.
+
+Under mach, this is translated to:
+
+interactive -- set priority to maximum
+background -- set priority to 2/3 of maximum
+low -- set priority to 1/3 of maximum
+
+This means that it is possible for a thread with the priority of
+interactive to actually run at a lower priority than another thread
+with a background, or even low, priority if the developer has modified
+the maximum priority.
+
+