| 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 | Conditions added by Mircea Oancea ([email protected])
|
|---|
| 5 |
|
|---|
| 6 | This file is part of GNU CC.
|
|---|
| 7 |
|
|---|
| 8 | GNU CC is free software; you can redistribute it and/or modify it under the
|
|---|
| 9 | terms of the GNU General Public License as published by the Free Software
|
|---|
| 10 | Foundation; either version 2, or (at your option) any later version.
|
|---|
| 11 |
|
|---|
| 12 | GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
|---|
| 13 | WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|---|
| 14 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|---|
| 15 | details.
|
|---|
| 16 |
|
|---|
| 17 | You should have received a copy of the GNU General Public License along with
|
|---|
| 18 | GNU CC; see the file COPYING. If not, write to the Free Software
|
|---|
| 19 | Foundation, 59 Temple Place - Suite 330,
|
|---|
| 20 | Boston, 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 <objc/thr.h>
|
|---|
| 29 | #include "runtime.h"
|
|---|
| 30 |
|
|---|
| 31 | #include <thread.h>
|
|---|
| 32 | #include <synch.h>
|
|---|
| 33 | #include <errno.h>
|
|---|
| 34 |
|
|---|
| 35 | /* Key structure for maintaining thread specific storage */
|
|---|
| 36 | static thread_key_t __objc_thread_data_key;
|
|---|
| 37 |
|
|---|
| 38 | /* Backend initialization functions */
|
|---|
| 39 |
|
|---|
| 40 | /* Initialize the threads subsystem. */
|
|---|
| 41 | int
|
|---|
| 42 | __objc_init_thread_system(void)
|
|---|
| 43 | {
|
|---|
| 44 | /* Initialize the thread storage key */
|
|---|
| 45 | if (thr_keycreate(&__objc_thread_data_key, NULL) == 0)
|
|---|
| 46 | return 0;
|
|---|
| 47 | else
|
|---|
| 48 | return -1;
|
|---|
| 49 | }
|
|---|
|
|---|