X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=glib%2Fgthread-posix.c;h=6f5a60664b15830ddbcb6446ea364f3dc347b2da;hb=30ed5f53e205e6bfc35126a9d3c62dac8a9c5dad;hp=d57a9cb4bc60245255cbc12f9bc29eb4bbccc4a8;hpb=56348210f38209a11902e54b2db41833aab36414;p=platform%2Fupstream%2Fglib.git diff --git a/glib/gthread-posix.c b/glib/gthread-posix.c index d57a9cb..6f5a606 100644 --- a/glib/gthread-posix.c +++ b/glib/gthread-posix.c @@ -15,9 +15,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 . */ /* @@ -47,6 +45,7 @@ #include "gslice.h" #include "gmessages.h" #include "gstrfuncs.h" +#include "gmain.h" #include #include @@ -54,12 +53,9 @@ #include #include -#ifdef HAVE_SYS_TIME_H -# include -#endif -#ifdef HAVE_UNISTD_H -# include -#endif +#include +#include + #ifdef HAVE_SCHED_H #include #endif @@ -87,18 +83,18 @@ g_mutex_impl_new (void) pthread_mutexattr_t *pattr = NULL; pthread_mutex_t *mutex; gint status; +#ifdef PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP + pthread_mutexattr_t attr; +#endif mutex = malloc (sizeof (pthread_mutex_t)); if G_UNLIKELY (mutex == NULL) g_thread_abort (errno, "malloc"); #ifdef PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP - { - pthread_mutexattr_t attr; - pthread_mutexattr_init (&attr); - pthread_mutexattr_settype (&attr, PTHREAD_MUTEX_ADAPTIVE_NP); - pattr = &attr; - } + pthread_mutexattr_init (&attr); + pthread_mutexattr_settype (&attr, PTHREAD_MUTEX_ADAPTIVE_NP); + pattr = &attr; #endif if G_UNLIKELY ((status = pthread_mutex_init (mutex, pattr)) != 0) @@ -118,7 +114,7 @@ g_mutex_impl_free (pthread_mutex_t *mutex) free (mutex); } -static pthread_mutex_t * +static inline pthread_mutex_t * g_mutex_get_impl (GMutex *mutex) { pthread_mutex_t *impl = g_atomic_pointer_get (&mutex->p); @@ -146,7 +142,7 @@ g_mutex_get_impl (GMutex *mutex) * It is not necessary to initialize a mutex that has been * statically allocated. * - * |[ + * |[ * typedef struct { * GMutex m; * ... @@ -184,13 +180,12 @@ g_mutex_init (GMutex *mutex) * Calling g_mutex_clear() on a locked mutex leads to undefined * behaviour. * - * Since: 2.32 + * Sine: 2.32 */ void g_mutex_clear (GMutex *mutex) { g_mutex_impl_free (mutex->p); - mutex->p = NULL; } /** @@ -201,10 +196,10 @@ g_mutex_clear (GMutex *mutex) * current thread will block until @mutex is unlocked by the other * thread. * - * #GMutex is neither guaranteed to be recursive nor to be + * #GMutex is neither guaranteed to be recursive nor to be * non-recursive. As such, calling g_mutex_lock() on a #GMutex that has * already been locked by the same thread results in undefined behaviour - * (including but not limited to deadlocks). + * (including but not limited to deadlocks). */ void g_mutex_lock (GMutex *mutex) @@ -242,11 +237,10 @@ g_mutex_unlock (GMutex *mutex) * it immediately returns %FALSE. Otherwise it locks @mutex and returns * %TRUE. * - * #GMutex is neither guaranteed to be recursive nor to be + * #GMutex is neither guaranteed to be recursive nor to be * non-recursive. As such, calling g_mutex_lock() on a #GMutex that has * already been locked by the same thread results in undefined behaviour * (including but not limited to deadlocks or arbitrary return values). - * * Returns: %TRUE if @mutex could be locked */ @@ -272,7 +266,10 @@ g_rec_mutex_impl_new (void) pthread_mutexattr_t attr; pthread_mutex_t *mutex; - mutex = g_slice_new (pthread_mutex_t); + mutex = malloc (sizeof (pthread_mutex_t)); + if G_UNLIKELY (mutex == NULL) + g_thread_abort (errno, "malloc"); + pthread_mutexattr_init (&attr); pthread_mutexattr_settype (&attr, PTHREAD_MUTEX_RECURSIVE); pthread_mutex_init (mutex, &attr); @@ -285,10 +282,10 @@ static void g_rec_mutex_impl_free (pthread_mutex_t *mutex) { pthread_mutex_destroy (mutex); - g_slice_free (pthread_mutex_t, mutex); + free (mutex); } -static pthread_mutex_t * +static inline pthread_mutex_t * g_rec_mutex_get_impl (GRecMutex *rec_mutex) { pthread_mutex_t *impl = g_atomic_pointer_get (&rec_mutex->p); @@ -317,7 +314,7 @@ g_rec_mutex_get_impl (GRecMutex *rec_mutex) * It is not necessary to initialise a recursive mutex that has been * statically allocated. * - * |[ + * |[ * typedef struct { * GRecMutex m; * ... @@ -448,7 +445,7 @@ g_rw_lock_impl_free (pthread_rwlock_t *rwlock) free (rwlock); } -static pthread_rwlock_t * +static inline pthread_rwlock_t * g_rw_lock_get_impl (GRWLock *lock) { pthread_rwlock_t *impl = g_atomic_pointer_get (&lock->p); @@ -475,7 +472,7 @@ g_rw_lock_get_impl (GRWLock *lock) * necessary to initialise a reader-writer lock that has been statically * allocated. * - * |[ + * |[ * typedef struct { * GRWLock l; * ... @@ -642,8 +639,13 @@ g_cond_impl_new (void) gint status; pthread_condattr_init (&attr); -#if defined (HAVE_PTHREAD_CONDATTR_SETCLOCK) && defined (CLOCK_MONOTONIC) - pthread_condattr_setclock (&attr, CLOCK_MONOTONIC); + +#ifdef HAVE_PTHREAD_COND_TIMEDWAIT_RELATIVE_NP +#elif defined (HAVE_PTHREAD_CONDATTR_SETCLOCK) && defined (CLOCK_MONOTONIC) + if G_UNLIKELY ((status = pthread_condattr_setclock (&attr, CLOCK_MONOTONIC)) != 0) + g_thread_abort (status, "pthread_condattr_setclock"); +#else +#error Cannot support GCond on your platform. #endif cond = malloc (sizeof (pthread_cond_t)); @@ -665,7 +667,7 @@ g_cond_impl_free (pthread_cond_t *cond) free (cond); } -static pthread_cond_t * +static inline pthread_cond_t * g_cond_get_impl (GCond *cond) { pthread_cond_t *impl = g_atomic_pointer_get (&cond->p); @@ -808,10 +810,10 @@ g_cond_broadcast (GCond *cond) * passed. * * The following code shows how to correctly perform a timed wait on a - * condition variable (extended the example presented in the + * condition variable (extending the example presented in the * documentation for #GCond): * - * |[ + * |[ * gpointer * pop_data_timed (void) * { @@ -857,11 +859,42 @@ g_cond_wait_until (GCond *cond, struct timespec ts; gint status; - ts.tv_sec = end_time / 1000000; - ts.tv_nsec = (end_time % 1000000) * 1000; +#ifdef HAVE_PTHREAD_COND_TIMEDWAIT_RELATIVE_NP + /* end_time is given relative to the monotonic clock as returned by + * g_get_monotonic_time(). + * + * Since this pthreads wants the relative time, convert it back again. + */ + { + gint64 now = g_get_monotonic_time (); + gint64 relative; + + if (end_time <= now) + return FALSE; - if ((status = pthread_cond_timedwait (g_cond_get_impl (cond), g_mutex_get_impl (mutex), &ts)) == 0) - return TRUE; + relative = end_time - now; + + ts.tv_sec = relative / 1000000; + ts.tv_nsec = (relative % 1000000) * 1000; + + if ((status = pthread_cond_timedwait_relative_np (g_cond_get_impl (cond), g_mutex_get_impl (mutex), &ts)) == 0) + return TRUE; + } +#elif defined (HAVE_PTHREAD_CONDATTR_SETCLOCK) && defined (CLOCK_MONOTONIC) + /* This is the exact check we used during init to set the clock to + * monotonic, so if we're in this branch, timedwait() will already be + * expecting a monotonic clock. + */ + { + ts.tv_sec = end_time / 1000000; + ts.tv_nsec = (end_time % 1000000) * 1000; + + if ((status = pthread_cond_timedwait (g_cond_get_impl (cond), g_mutex_get_impl (mutex), &ts)) == 0) + return TRUE; + } +#else +#error Cannot support GCond on your platform. +#endif if G_UNLIKELY (status != ETIMEDOUT) g_thread_abort (status, "pthread_cond_timedwait"); @@ -890,7 +923,7 @@ g_cond_wait_until (GCond *cond, * See G_PRIVATE_INIT() for a couple of examples. * * The #GPrivate structure should be considered opaque. It should only - * be accessed via the g_private_ functions. + * be accessed via the g_private_ functions. */ /** @@ -912,7 +945,7 @@ g_cond_wait_until (GCond *cond, * be properly initialised by default (ie: to all zeros). See the * examples below. * - * |[ + * |[ * static GPrivate name_key = G_PRIVATE_INIT (g_free); * * // return value should not be freed @@ -974,7 +1007,7 @@ g_private_impl_free (pthread_key_t *key) free (key); } -static pthread_key_t * +static inline pthread_key_t * g_private_get_impl (GPrivate *key) { pthread_key_t *impl = g_atomic_pointer_get (&key->p);