source: trunk/src/gcc/libobjc/thr-pthreads.c@ 736

Last change on this file since 736 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: 5.2 KB
Line 
1/* GNU Objective C Runtime Thread Implementation for PCThreads under GNU/Linux.
2 Copyright (C) 1996, 1997 Free Software Foundation, Inc.
3 Contributed by Scott Christley <[email protected]>
4 Condition functions added by: Mircea Oancea <[email protected]>
5
6This file is part of GNU CC.
7
8GNU CC is free software; you can redistribute it and/or modify it under the
9terms of the GNU General Public License as published by the Free Software
10Foundation; either version 2, or (at your option) any later version.
11
12GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15details.
16
17You should have received a copy of the GNU General Public License
18along with GNU CC; see the file COPYING. If not, write to
19the Free Software Foundation, 59 Temple Place - Suite 330,
20Boston, MA 02111-1307, USA. */
21
22/* As a special exception, if you link this library with files compiled with
23 GCC to produce an executable, this does not cause the resulting executable
24 to be covered by the GNU General Public License. This exception does not
25 however invalidate any other reasons why the executable file might be
26 covered by the GNU General Public License. */
27
28#include <pcthread.h>
29#include <objc/thr.h>
30#include "runtime.h"
31
32/* Key structure for maintaining thread specific storage */
33static pthread_key_t _objc_thread_storage;
34
35/* Backend initialization functions */
36
37/* Initialize the threads subsystem. */
38int
39__objc_init_thread_system(void)
40{
41 /* Initialize the thread storage key */
42 return pthread_key_create(&_objc_thread_storage, NULL);
43}