| 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 |
|
|---|
| 5 | This file is part of GNU CC.
|
|---|
| 6 |
|
|---|
| 7 | GNU CC is free software; you can redistribute it and/or modify it under the
|
|---|
| 8 | terms of the GNU General Public License as published by the Free Software
|
|---|
| 9 | Foundation; either version 2, or (at your option) any later version.
|
|---|
| 10 |
|
|---|
| 11 | GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
|---|
| 12 | WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|---|
| 13 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|---|
| 14 | details.
|
|---|
| 15 |
|
|---|
| 16 | You should have received a copy of the GNU General Public License along with
|
|---|
| 17 | GNU CC; see the file COPYING. If not, write to the Free Software
|
|---|
| 18 | Foundation, 59 Temple Place - Suite 330,
|
|---|
| 19 | Boston, 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 */
|
|---|
| 32 | static pthread_key_t _objc_thread_storage;
|
|---|
| 33 |
|
|---|
| 34 | /* Backend initialization functions */
|
|---|
| 35 |
|
|---|
| 36 | /* Initialize the threads subsystem. */
|
|---|
| 37 | int
|
|---|
| 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. */
|
|---|
| 45 | int
|
|---|
| 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. */
|
|---|
| 57 | objc_thread_t
|
|---|
| 58 | __objc_thread_detach(void (*func)(void *arg), void *arg)
|
|---|
| 59 | {
|
|---|
|
|---|