tidy up gthreadprivate.h

Remove some unused includes, too.
This commit is contained in:
Ryan Lortie 2011-10-13 01:22:51 -04:00
parent 332f74a2fc
commit b1cc2579c1
2 changed files with 28 additions and 33 deletions

View File

@ -32,6 +32,7 @@
#include "gthread.h"
#include "gthreadprivate.h"
#include "deprecated/gthread.h"
#include "garray.h"
#include "gutils.h"

View File

@ -24,13 +24,19 @@
#define __G_THREADPRIVATE_H__
#include "deprecated/gthread.h"
#include "garray.h"
#include "gslist.h"
G_BEGIN_DECLS
typedef struct _GRealThread GRealThread;
struct _GRealThread
{
GThread thread;
gint ref_count;
gboolean ours;
const gchar *name;
gpointer retval;
};
/* system thread implementation (gthread-posix.c, gthread-win32.c) */
G_GNUC_INTERNAL
void g_system_thread_wait (GRealThread *thread);
@ -41,9 +47,13 @@ GRealThread * g_system_thread_new (GThreadFunc func,
G_GNUC_INTERNAL
void g_system_thread_free (GRealThread *thread);
G_GNUC_INTERNAL void g_system_thread_exit (void);
G_GNUC_INTERNAL void g_system_thread_set_name (const gchar *name);
G_GNUC_INTERNAL
void g_system_thread_exit (void);
G_GNUC_INTERNAL
void g_system_thread_set_name (const gchar *name);
/* gthread.c */
G_GNUC_INTERNAL
GThread * g_thread_new_internal (const gchar *name,
GThreadFunc proxy,
@ -55,20 +65,4 @@ GThread * g_thread_new_internal (const gchar *name,
G_GNUC_INTERNAL
gpointer g_thread_proxy (gpointer thread);
struct _GRealThread
{
GThread thread;
gint ref_count;
gboolean ours;
const gchar *name;
gpointer retval;
};
#ifdef G_OS_WIN32
G_GNUC_INTERNAL void g_thread_DllMain (void);
#endif
G_END_DECLS
#endif /* __G_THREADPRIVATE_H__ */