Merge branch 'strlcpy' into 'master'
[glib.git] / glib / gthreadprivate.h
blob2cf8bdc00aaadb4c23fb3ab3bb286b6e4501b1e9
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;
27 struct _GRealThread
29 GThread thread;
31 gint ref_count;
32 gboolean ours;
33 gchar *name;
34 gpointer retval;
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,
41 gulong stack_size,
42 GError **error);
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);
49 /* gthread.c */
50 GThread * g_thread_new_internal (const gchar *name,
51 GThreadFunc proxy,
52 GThreadFunc func,
53 gpointer data,
54 gsize stack_size,
55 GError **error);
57 gpointer g_thread_proxy (gpointer thread);
59 #endif /* __G_THREADPRIVATE_H__ */