source: branches/libc-0.6/src/gcc/libobjc/thr-single.c@ 3060

Last change on this file since 3060 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: 4.0 KB
Line 
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
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 <objc/thr.h>
28#include "runtime.h"
29
30/* Thread local storage for a single thread */
31static void *thread_local_storage = NULL;
32
33/* Backend initialization functions */
34
35/* Initialize the threads subsystem. */
36int
37__objc_init_thread_system(void)
38{
39 /* No thread support available */
40 return -1;
41}
42
43/* Close the threads subsystem. */
44int
45__objc_close_thread_system(void)
46{
47 /* No thread support available */
48 return -1;
49}
50
51/* Backend thread functions */
52
53/* Create a new thread of execution. */
54objc_thread_t
55__objc_thread_detach(void (*func)(void *arg), void *arg)
56{
57 /* No thread support available */
58 return NULL;
59}
60
61/* Set the current thread's priority. */
62int
63__objc_thread_set_priority(int priority)
64{
65 /* No thread support available */
66 return -1;
67}
68
69/* Return the current thread's priority. */
70int
71__objc_thread_get_priority(void)
72{
73 return OBJC_THREAD_INTERACTIVE_PRIORITY;
74}
75
76/* Yield our process time to another thread. */
77void
78__objc_thread_yield(void)