X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=glib%2Fgthread.h;h=3f026f6311443cdd225e5aa38e161fa4308a3ba8;hb=2a53b4d0e2c98a14aedf31e38f0ad1fb2e8fe26f;hp=b9c3025a020222b6d4dcef09c96770367979d5c3;hpb=2149b29468bb99af3c29d5de61f75aad735082dc;p=platform%2Fupstream%2Fglib.git diff --git a/glib/gthread.h b/glib/gthread.h index b9c3025..3f026f6 100644 --- a/glib/gthread.h +++ b/glib/gthread.h @@ -12,9 +12,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, - * USA. + * License along with this library; if not, see . */ /* @@ -24,19 +22,20 @@ * GLib at ftp://ftp.gtk.org/pub/gtk/. */ +#ifndef __G_THREAD_H__ +#define __G_THREAD_H__ + #if !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION) #error "Only can be included directly." #endif -#ifndef __G_THREAD_H__ -#define __G_THREAD_H__ - #include #include G_BEGIN_DECLS #define G_THREAD_ERROR g_thread_error_quark () +GLIB_AVAILABLE_IN_ALL GQuark g_thread_error_quark (void); typedef enum @@ -150,9 +149,13 @@ GThread * g_thread_try_new (const gchar *name, GThreadFunc func, gpointer data, GError **error); +GLIB_AVAILABLE_IN_ALL GThread * g_thread_self (void); +GLIB_AVAILABLE_IN_ALL void g_thread_exit (gpointer retval); +GLIB_AVAILABLE_IN_ALL gpointer g_thread_join (GThread *thread); +GLIB_AVAILABLE_IN_ALL void g_thread_yield (void); @@ -160,8 +163,11 @@ GLIB_AVAILABLE_IN_2_32 void g_mutex_init (GMutex *mutex); GLIB_AVAILABLE_IN_2_32 void g_mutex_clear (GMutex *mutex); +GLIB_AVAILABLE_IN_ALL void g_mutex_lock (GMutex *mutex); +GLIB_AVAILABLE_IN_ALL gboolean g_mutex_trylock (GMutex *mutex); +GLIB_AVAILABLE_IN_ALL void g_mutex_unlock (GMutex *mutex); GLIB_AVAILABLE_IN_2_32 @@ -196,26 +202,34 @@ GLIB_AVAILABLE_IN_2_32 void g_cond_init (GCond *cond); GLIB_AVAILABLE_IN_2_32 void g_cond_clear (GCond *cond); +GLIB_AVAILABLE_IN_ALL void g_cond_wait (GCond *cond, GMutex *mutex); +GLIB_AVAILABLE_IN_ALL void g_cond_signal (GCond *cond); +GLIB_AVAILABLE_IN_ALL void g_cond_broadcast (GCond *cond); GLIB_AVAILABLE_IN_2_32 gboolean g_cond_wait_until (GCond *cond, GMutex *mutex, gint64 end_time); +GLIB_AVAILABLE_IN_ALL gpointer g_private_get (GPrivate *key); +GLIB_AVAILABLE_IN_ALL void g_private_set (GPrivate *key, gpointer value); GLIB_AVAILABLE_IN_2_32 void g_private_replace (GPrivate *key, gpointer value); +GLIB_AVAILABLE_IN_ALL gpointer g_once_impl (GOnce *once, GThreadFunc func, gpointer arg); +GLIB_AVAILABLE_IN_ALL gboolean g_once_init_enter (volatile void *location); +GLIB_AVAILABLE_IN_ALL void g_once_init_leave (volatile void *location, gsize result);