summaryrefslogtreecommitdiff
path: root/glib/gthreadprivate.h
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2012-11-28 12:00:40 -0500
committerRyan Lortie <desrt@desrt.ca>2013-01-18 13:03:28 -0500
commit6f8f1f7097cbef698b4c7be5816bc9d3864ec744 (patch)
treee06b86045270f184ae9467ed2c35f0d2115245e1 /glib/gthreadprivate.h
parentdbf447292d83b54be321c33025aea2e4d448d4f5 (diff)
downloadglib-6f8f1f7097cbef698b4c7be5816bc9d3864ec744.tar.gz
Remove most use of G_GNUC_INTERNAL
Now that we use an explicit list of symbols to export, the G_GNUC_INTERNAL is redundant. https://bugzilla.gnome.org/show_bug.cgi?id=688681
Diffstat (limited to 'glib/gthreadprivate.h')
-rw-r--r--glib/gthreadprivate.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/glib/gthreadprivate.h b/glib/gthreadprivate.h
index 6b974debb..15584f4bf 100644
--- a/glib/gthreadprivate.h
+++ b/glib/gthreadprivate.h
@@ -37,24 +37,18 @@ struct _GRealThread
};
/* system thread implementation (gthread-posix.c, gthread-win32.c) */
-G_GNUC_INTERNAL
void g_system_thread_wait (GRealThread *thread);
-G_GNUC_INTERNAL
GRealThread * g_system_thread_new (GThreadFunc func,
gulong stack_size,
GError **error);
-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);
/* gthread.c */
-G_GNUC_INTERNAL
GThread * g_thread_new_internal (const gchar *name,
GThreadFunc proxy,
GThreadFunc func,
@@ -62,7 +56,6 @@ GThread * g_thread_new_internal (const gchar *name,
gsize stack_size,
GError **error);
-G_GNUC_INTERNAL
gpointer g_thread_proxy (gpointer thread);
#endif /* __G_THREADPRIVATE_H__ */