Revert "make struct _GThread private"

This reverts commit d904612100.

glibmm touches the contents of GThread, so this broke their build.
This commit is contained in:
Ryan Lortie 2011-10-13 09:00:54 -04:00
parent d904612100
commit 62fe053268
2 changed files with 9 additions and 9 deletions

View File

@ -43,6 +43,15 @@ typedef enum
G_THREAD_PRIORITY_URGENT
} GThreadPriority;
struct _GThread
{
/*< private >*/
GThreadFunc func;
gpointer data;
gboolean joinable;
GThreadPriority priority;
};
typedef struct _GThreadFunctions GThreadFunctions;
struct _GThreadFunctions
{

View File

@ -25,15 +25,6 @@
#include "deprecated/gthread.h"
struct _GThread
{
/*< private >*/
GThreadFunc func;
gpointer data;
gboolean joinable;
GThreadPriority priority;
};
typedef struct _GRealThread GRealThread;
struct _GRealThread
{