| 1 | /* GNU Objective C Runtime Thread Interface.
|
|---|
| 2 | Copyright (C) 1999 Free Software Foundation, Inc.
|
|---|
| 3 |
|
|---|
| 4 | This file is part of GNU CC.
|
|---|
| 5 |
|
|---|
| 6 | GNU CC is free software; you can redistribute it and/or modify it under the
|
|---|
| 7 | terms of the GNU General Public License as published by the Free Software
|
|---|
| 8 | Foundation; either version 2, or (at your option) any later version.
|
|---|
| 9 |
|
|---|
| 10 | GNU CC is distributed in the hope that it will be useful, but WITHOUT ANY
|
|---|
| 11 | WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|---|
| 12 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|---|
| 13 | details.
|
|---|
| 14 |
|
|---|
| 15 | You should have received a copy of the GNU General Public License
|
|---|
| 16 | along with GNU CC; see the file COPYING. If not, write to
|
|---|
| 17 | the Free Software Foundation, 59 Temple Place - Suite 330,
|
|---|
| 18 | Boston, MA 02111-1307, USA. */
|
|---|
| 19 |
|
|---|
| 20 | /* As a special exception, if you link this library with files compiled with
|
|---|
| 21 | GCC to produce an executable, this does not cause the resulting executable
|
|---|
| 22 | to be covered by the GNU General Public License. This exception does not
|
|---|
| 23 | however invalidate any other reasons why the executable file might be
|
|---|
| 24 | covered by the GNU General Public License. */
|
|---|
| 25 |
|
|---|
| 26 | #define _LIBOBJC
|
|---|
| 27 | #include "tconfig.h"
|
|---|
| 28 | #include "defaults.h"
|
|---|
| 29 | #include <objc/thr.h>
|
|---|
| 30 | #include "runtime.h"
|
|---|
| 31 | #include <gthr.h>
|
|---|
| 32 |
|
|---|
| 33 | /* Backend initialization functions */
|
|---|
| 34 |
|
|---|
| 35 | /* Initialize the threads subsystem. */
|
|---|
| 36 | int
|
|---|
| 37 | __objc_init_thread_system(void)
|
|---|
| 38 | {
|
|---|
| 39 | return __gthread_objc_init_thread_system ();
|
|---|
| 40 | }
|
|---|
| 41 |
|
|---|
| 42 | /* Close the threads subsystem. */
|
|---|
| 43 | int
|
|---|
| 44 | __objc_close_thread_system(void)
|
|---|
|
|---|