mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-06-18 02:14:12 +02:00
Revert "make struct _GThread private"
This reverts commit d904612100120d12126f1a6623a106d8a5b02fa6. glibmm touches the contents of GThread, so this broke their build.
This commit is contained in:
parent
d904612100
commit
62fe053268
@ -43,6 +43,15 @@ typedef enum
|
|||||||
G_THREAD_PRIORITY_URGENT
|
G_THREAD_PRIORITY_URGENT
|
||||||
} GThreadPriority;
|
} GThreadPriority;
|
||||||
|
|
||||||
|
struct _GThread
|
||||||
|
{
|
||||||
|
/*< private >*/
|
||||||
|
GThreadFunc func;
|
||||||
|
gpointer data;
|
||||||
|
gboolean joinable;
|
||||||
|
GThreadPriority priority;
|
||||||
|
};
|
||||||
|
|
||||||
typedef struct _GThreadFunctions GThreadFunctions;
|
typedef struct _GThreadFunctions GThreadFunctions;
|
||||||
struct _GThreadFunctions
|
struct _GThreadFunctions
|
||||||
{
|
{
|
||||||
|
@ -25,15 +25,6 @@
|
|||||||
|
|
||||||
#include "deprecated/gthread.h"
|
#include "deprecated/gthread.h"
|
||||||
|
|
||||||
struct _GThread
|
|
||||||
{
|
|
||||||
/*< private >*/
|
|
||||||
GThreadFunc func;
|
|
||||||
gpointer data;
|
|
||||||
gboolean joinable;
|
|
||||||
GThreadPriority priority;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct _GRealThread GRealThread;
|
typedef struct _GRealThread GRealThread;
|
||||||
struct _GRealThread
|
struct _GRealThread
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user