source: trunk/src/gcc/libobjc/thr-dce.c@ 833

Last change on this file since 833 was 2, checked in by bird, 23 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 6.3 KB
Line 
1/* GNU Objective C Runtime Thread Interface
2 Copyright (C) 1996, 1997 Free Software Foundation, Inc.
3 Contributed by Galen C. Hunt ([email protected])
4
5This file is part of GNU CC.
6
7GNU CC is free software; you can redistribute it and/or modify it under the
8terms of the GNU General Public License as published by the Free Software
9Foundation; either version 2, or (at your option) any later version.
10
11GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14details.
15
16You should have received a copy of the GNU General Public License along with
17GNU CC; see the file COPYING. If not, write to the Free Software
18Foundation, 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20
21/* As a special exception, if you link this library with files compiled with
22 GCC to produce an executable, this does not cause the resulting executable
23 to be covered by the GNU General Public License. This exception does not
24 however invalidate any other reasons why the executable file might be
25 covered by the GNU General Public License. */
26
27#include <pthread.h>
28#include <thr.h>
29#include "runtime.h"
30
31/* Key structure for maintaining thread specific storage */
32static pthread_key_t _objc_thread_storage;
33
34/* Backend initialization functions */
35
36/* Initialize the threads subsystem. */
37int
38__objc_init_thread_system(void)
39{
40 /* Initialize the thread storage key */
41 return pthread_keycreate(&_objc_thread_storage, NULL);
42}
43
44/* Close the threads subsystem. */
45int
46__objc_close_thread_system(void)
47{
48 /* Destroy the thread storage key */
49 /* Not implemented yet */
50 /* return pthread_key_delete(&_objc_thread_storage); */
51 return 0;
52}
53
54/* Backend thread functions */
55
56/* Create a new thread of execution. */
57objc_thread_t
58__objc_thread_detach(void (*func)(void *arg), void *arg)
59{
60 objc_thread_t thread_id;
61 pthread_t new_thread_handle;
62
63 if (pthread_create(&new_thread_handle, pthread_attr_default,
64 (void *)func, arg) == 0)
65 {
66 /* ??? May not work! (64bit) */
67 thread_id = *(objc_thread_t *)&new_thread_handle;
68 pthread_detach(&new_thread_handle); /* Fully detach thread. */
69 }
70 else
71 thread_id = NULL;
72
73 return thread_id;
74}
75
76/* Set the current thread's priority. */
77int
78__objc_thread_set_priority(int priority)
79{
80 int sys_priority = 0;
81
82 switch (priority)
83 {
84 case OBJC_THREAD_INTERACTIVE_PRIORITY:
85 sys_priority = (PRI_FG_MIN_NP + PRI_FG_MAX_NP) / 2;
86 break;
87 default:
88 case OBJC_THREAD_BACKGROUND_PRIORITY:
89 sys_priority = (PRI_BG_MIN_NP + PRI_BG_MAX_NP) / 2;
90 break;
91 case OBJC_THREAD_LOW_PRIORITY:
92 sys_priority = (PRI_BG_MIN_NP + PRI_BG_MAX_NP) / 2;
93 break;
94 }
95
96 /* Change the priority. */
97 if (pthread_setprio(pthread_self(), sys_priority) >= 0)
98 return 0;
99 else
100 /* Failed */
101 return -1;
102}
103
104/* Return the current thread's priority. */
105int
106__objc_thread_get_priority(void)
107{
108 int sys_priority;
109
110 if ((sys_priority = pthread_getprio(pthread_self())) >= 0) {
111 if (sys_priority >= PRI_FG_MIN_NP && sys_priority <= PRI_FG_MAX_NP)