| 1 | /* GNU Objective C Runtime Thread Implementation
|
|---|
| 2 | Copyright (C) 1996, 1997 Free Software Foundation, Inc.
|
|---|
| 3 | Contributed by Galen C. Hunt ([email protected])
|
|---|
| 4 | Modified for Mach threads by Bill Bumgarner <[email protected]>
|
|---|
| 5 | Condition functions added by Mircea Oancea <[email protected]>
|
|---|
| 6 |
|
|---|
| 7 | This file is part of GNU CC.
|
|---|
| 8 |
|
|---|
| 9 | GNU CC is free software; you can redistribute it and/or modify it under the
|
|---|
| 10 | terms of the GNU General Public License as published by the Free Software
|
|---|
| 11 | Foundation; either version 2, or (at your option) any later version.
|
|---|
| 12 |
|
|---|
| 13 | GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
|---|
| 14 | WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|---|
| 15 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|---|
| 16 | details.
|
|---|
| 17 |
|
|---|
| 18 | You should have received a copy of the GNU General Public License
|
|---|
| 19 | along with GNU CC; see the file COPYING. If not, write to
|
|---|
| 20 | the Free Software Foundation, 59 Temple Place - Suite 330,
|
|---|
| 21 | Boston, MA 02111-1307, USA. */
|
|---|
| 22 |
|
|---|
| 23 | /* As a special exception, if you link this library with files compiled with
|
|---|
| 24 | GCC to produce an executable, this does not cause the resulting executable
|
|---|
| 25 | to be covered by the GNU General Public License. This exception does not
|
|---|
| 26 | however invalidate any other reasons why the executable file might be
|
|---|
| 27 | covered by the GNU General Public License. */
|
|---|
| 28 |
|
|---|
| 29 | #include <mach/mach.h>
|
|---|
| 30 | #include <mach/cthreads.h>
|
|---|
| 31 | #include <objc/thr.h>
|
|---|
| 32 | #include "runtime.h"
|
|---|
| 33 |
|
|---|
| 34 | /*
|
|---|
| 35 | Obtain the maximum thread priority that can set for t. Under the
|
|---|
| 36 | mach threading model, it is possible for the developer to adjust the
|
|---|
| 37 | maximum priority downward only-- cannot be raised without superuser
|
|---|
| 38 | privileges. Once lowered, it cannot be raised.
|
|---|
| 39 | */
|
|---|
| 40 | static int __mach_get_max_thread_priority(cthread_t t, int *base)
|
|---|
| 41 | {
|
|---|
| 42 | thread_t threadP;
|
|---|
| 43 | kern_return_t error;
|
|---|
| 44 | struct thread_sched_info info;
|
|---|
| 45 | unsigned int info_count=THREAD_SCHED_INFO_COUNT;
|
|---|
| 46 |
|
|---|
| 47 | if (t == NULL)
|
|---|
| 48 | return -1;
|
|---|
| 49 |
|
|---|
| 50 | threadP = cthread_thread(t); /* get thread underlying */
|
|---|
| 51 |
|
|---|
| 52 | error=thread_info(threadP, THREAD_SCHED_INFO,
|
|---|
| 53 | (thread_info_t)&info, &info_count);
|
|---|
| 54 |
|
|---|
| 55 | if (error != KERN_SUCCESS)
|
|---|
| 56 | return -1;
|
|---|
| 57 |
|
|---|
| 58 | if (base != NULL)
|
|---|
|
|---|