1 /* GLIB - Library of useful routines for C programming
3 * gthreadprivate.h - GLib internal thread system related declarations.
5 * Copyright (C) 2003 Sebastian Wilhelmi
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #ifndef __G_THREADPRIVATE_H__
22 #define __G_THREADPRIVATE_H__
24 #include "deprecated/gthread.h"
26 typedef struct _GRealThread GRealThread
;
37 /* system thread implementation (gthread-posix.c, gthread-win32.c) */
38 void g_system_thread_wait (GRealThread
*thread
);
40 GRealThread
* g_system_thread_new (GThreadFunc func
,
43 void g_system_thread_free (GRealThread
*thread
);
45 void g_system_thread_exit (void);
46 void g_system_thread_set_name (const gchar
*name
);
50 GThread
* g_thread_new_internal (const gchar
*name
,
57 gpointer
g_thread_proxy (gpointer thread
);
59 #endif /* __G_THREADPRIVATE_H__ */