Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/eglib
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2014-07-13 19:35:13 +0400
committerZoltan Varga <vargaz@gmail.com>2014-07-13 19:35:35 +0400
commitd07d02078c62fa17250e97e157bed0907c71bce6 (patch)
treeec7961565628a8d94b2000c25015850d542f3df4 /eglib
parent281904708fd01837e09d9e7b2e5e3a41375e90f9 (diff)
[runtime] Remove unused g_thread () functions.
Diffstat (limited to 'eglib')
-rw-r--r--eglib/src/glib.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/eglib/src/glib.h b/eglib/src/glib.h
index 30c2d7adb8f..7cb8e6179c0 100644
--- a/eglib/src/glib.h
+++ b/eglib/src/glib.h
@@ -1010,19 +1010,6 @@ glong g_utf8_pointer_to_offset (const gchar *str, const gchar *pos);
#define G_PRIORITY_DEFAULT 0
#define G_PRIORITY_DEFAULT_IDLE 200
-/*
- * Empty thread functions, not used by eglib
- */
-#define g_thread_supported() TRUE
-#define g_thread_init(x) G_STMT_START { if (x != NULL) { g_error ("No vtable supported in g_thread_init"); } } G_STMT_END
-
-#define G_LOCK_DEFINE(name) int name;
-#define G_LOCK_DEFINE_STATIC(name) static int name;
-#define G_LOCK_EXTERN(name)
-#define G_LOCK(name)
-#define G_TRYLOCK(name)
-#define G_UNLOCK(name)
-
#define GUINT16_SWAP_LE_BE_CONSTANT(x) ((((guint16) x) >> 8) | ((((guint16) x) << 8)))
#define GUINT16_SWAP_LE_BE(x) ((guint16) (((guint16) x) >> 8) | ((((guint16)(x)) & 0xff) << 8))