Finish killing off GSystemThread

This commit is contained in:
Ryan Lortie
2011-10-12 23:04:15 -04:00
parent e0c9757b9b
commit a5800ef336
4 changed files with 11 additions and 33 deletions

View File

@@ -206,22 +206,6 @@ typedef unsigned __int64 guintptr;
#define G_THREADS_ENABLED
#define G_THREADS_IMPL_WIN32
/* This represents a system thread as used by the implementation. An
* alien implementaion, as loaded by g_thread_init can only count on
* "sizeof (gpointer)" bytes to store their info. We however need more
* for some of our native implementations. */
typedef union _GSystemThread GSystemThread;
union _GSystemThread
{
#ifndef _WIN64
char data[4];
#else
char data[8];
#endif
double dummy_double;
void *dummy_pointer;
long dummy_long;
};
#define GINT16_TO_LE(val) ((gint16) (val))
#define GUINT16_TO_LE(val) ((guint16) (val))