diff lib/pthread.in.h @ 13467:b3e78c51aab6

pthread: Add enough so that coreutils/src/sort.c compiles. * lib/pthread.in.h: Add self to author comment. Conditionalize on _GL_PTHREAD_H, not PTHREAD_H_, for consistency with the rest of gnulib. Include <sched.h> and <time.h>, as per POSIX. Include <sys/types.h>, in case it defines pthread_t. (pthread_t, pthread_attr_t, pthread_barrier_t, pthread_barrierattr_t): (pthread_cond_t, pthread_condattr_t, pthread_key_t, pthread_mutex_t): (pthread_mutexattr_t, pthread_once_t, pthread_rwlock_t): (pthread_rwlockattr_t, pthread_spinlock_t): New typedefs, if HAVE_PTHREAD_T is not defined. (PTHREAD_COND_INITIALIZER, PTHREAD_MUTEX_INITIALIZER): (PTHREAD_ONCE_INIT, PTHREAD_RWLOCK_INITIALIZER): (PTHREAD_BARRIER_SERIAL_THREAD, PTHREAD_CANCEL_DEFERRED): (PTHREAD_CANCEL_ASYNCHRONOUS, PTHREAD_CANCEL_ENABLE): (PTHREAD_CANCEL_DISABLE, PTHREAD_CANCELED, PTHREAD_CREATE_JOINABLE): (PTHREAD_CREATE_DETACHED, PTHREAD_INHERIT_SCHED): (PTHREAD_EXPLICIT_SCHED, PTHREAD_MUTEX_DEFAULT, PTHREAD_MUTEX_NORMAL): (PTHREAD_MUTEX_ERRORCHECK, PTHREAD_MUTEX_RECURSIVE): (PTHREAD_MUTEX_STALLED, PTHREAD_MUTEX_ROBUST, PTHREAD_PRIO_NONE): (PTHREAD_PRIO_INHERIT, PTHREAD_PRIO_PROTECT, PTHREAD_PROCESS_PRIVATE): (PTHREAD_PROCESS_SHARED, PTHREAD_SCOPE_SYSTEM, PTHREAD_SCOPE_PROCESS): New macros. (pthread_cond_destroy, pthread_cond_init, pthread_cond_signal): (pthread_cond_wait, pthread_exit, pthread_mutex_destroy): (pthread_mutex_init, pthread_mutex_lock, pthread_mutex_unlock): (pthread_spin_init, pthread_spin_lock, pthread_spin_trylock); (pthread_spin_unlock): New dummy functions. (pthread_create): Return EAGAIN; don't set errno. * m4/pthread.m4 (gl_PTHREAD_CHECK): Check for pthread_t, and require AC_C_INLINE. * modules/pthread (Depends-on): Add sched, time. (pthread.h): Use AM_V_GEN.
author Paul R. Eggert <eggert@cs.ucla.edu>
date Tue, 13 Jul 2010 15:55:36 -0700 (2010-07-13)
parents c2cbabec01dd
children 8a0b8adde2be
line wrap: on
line diff
--- a/lib/pthread.in.h
+++ b/lib/pthread.in.h
@@ -1,4 +1,4 @@
-/* Implement a trivial subset of the pthreads library.
+/* Implement a trivial subset of POSIX 1003.1-2008 pthread.h.
 
    Copyright (C) 2009, 2010 Free Software Foundation, Inc.
 
@@ -16,31 +16,195 @@
    along with this program; if not, write to the Free Software Foundation,
    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
-/* Written by Glen Lenker.  */
+/* Written by Paul Eggert and Glen Lenker.  */
+
+#ifndef _GL_PTHREAD_H_
+#define _GL_PTHREAD_H_
+
+#include <errno.h>
+#include <stdlib.h>
+#include <sched.h>
+#include <sys/types.h>
+#include <time.h>
 
-#ifndef PTHREAD_H_
-# define PTHREAD_H_
+#ifndef HAVE_PTHREAD_T
+ typedef int pthread_t;
+ typedef int pthread_attr_t;
+ typedef int pthread_barrier_t;
+ typedef int pthread_barrierattr_t;
+ typedef int pthread_cond_t;
+ typedef int pthread_condattr_t;
+ typedef int pthread_key_t;
+ typedef int pthread_mutex_t;
+ typedef int pthread_mutexattr_t;
+ typedef int pthread_once_t;
+ typedef int pthread_rwlock_t;
+ typedef int pthread_rwlockattr_t;
+ typedef int pthread_spinlock_t;
+#endif
 
-# include <errno.h>
-# include <stdlib.h>
+#define PTHREAD_COND_INITIALIZER { 0 }
+#define PTHREAD_MUTEX_INITIALIZER { 0 }
+#define PTHREAD_ONCE_INIT { 0 }
+#define PTHREAD_RWLOCK_INITIALIZER { 0 }
+
+#define PTHREAD_BARRIER_SERIAL_THREAD (-1)
+
+#define PTHREAD_CANCEL_DEFERRED 0
+#define PTHREAD_CANCEL_ASYNCHRONOUS 1
+
+#define PTHREAD_CANCEL_ENABLE 0
+#define PTHREAD_CANCEL_DISABLE 1
+
+#define PTHREAD_CANCELED ((void *) -1)
 
-typedef int pthread_t;
-typedef int pthread_attr_t;
+#define PTHREAD_CREATE_JOINABLE 0
+#define PTHREAD_CREATE_DETACHED 1
+
+#define PTHREAD_INHERIT_SCHED 0
+#define PTHREAD_EXPLICIT_SCHED 1
+
+#define PTHREAD_MUTEX_DEFAULT PTHREAD_MUTEX_NORMAL
+#define PTHREAD_MUTEX_NORMAL 0
+#define PTHREAD_MUTEX_ERRORCHECK 1
+#define PTHREAD_MUTEX_RECURSIVE 2
+
+#define PTHREAD_MUTEX_STALLED 0
+#define PTHREAD_MUTEX_ROBUST 1
+
+#define PTHREAD_PRIO_NONE 0
+#define PTHREAD_PRIO_INHERIT 1
+#define PTHREAD_PRIO_PROTECT 2
+
+#define PTHREAD_PROCESS_PRIVATE 0
+#define PTHREAD_PROCESS_SHARED 1
 
-static int
-pthread_create (pthread_t *restrict thread,
-                const pthread_attr_t *restrict attr,
-                void *(*start_routine)(void*), void *restrict arg)
+#define PTHREAD_SCOPE_SYSTEM 0
+#define PTHREAD_SCOPE_PROCESS 1
+
+/* Provide substitutes for the thread functions that should work
+   adequately on a single-threaded implementation, where
+   pthread_create always fails.  The goal is to let programs compile
+   on non-pthread hosts with minimal runtime overhead.
+
+   Omit interfaces that have not been analyzed and for which we do not
+   know what to do, so that they elicit a compile-time error for
+   now.  */
+
+static inline int
+pthread_cond_destroy (pthread_cond_t *cond)
 {
-  errno = EAGAIN;
-  return -1;
+  /* COND is never seriously used.  */
+  return 0;
+}
+
+static inline int
+pthread_cond_init (pthread_cond_t *restrict cond,
+		   pthread_condattr_t const *restrict attr)
+{
+  /* COND is never seriously used.  */
+  return 0;
 }
 
-static int
-pthread_join (pthread_t thread, void **value_ptr)
+static inline int
+pthread_cond_signal (pthread_cond_t *cond)
+{
+  /* No threads can currently be blocked on COND.  */
+  return 0;
+}
+
+static inline int
+pthread_cond_wait (pthread_cond_t *restrict cond,
+		   pthread_mutex_t *restrict mutex)
+{
+  /* Properly-written applications never come here.  */
+  abort ();
+  return 0;
+}
+
+static inline int
+pthread_create (pthread_t *restrict thread,
+                pthread_attr_t const *restrict attr,
+                void * (*start_routine) (void*), void *restrict arg)
 {
+  /* Do not create a thread.  */
+  return EAGAIN;
+}
+
+static inline void
+pthread_exit (void *value)
+{
+  /* There is just one thread, so the process exits.  */
+  exit (0);
+}
+
+static inline int
+pthread_join (pthread_t thread, void **pvalue)
+{
+  /* Properly-written applications never come here.  */
   abort ();
-  return -1;
+  return 0;
+}
+
+static inline int
+pthread_mutex_destroy (pthread_mutex_t *mutex)
+{
+  /* MUTEX is never seriously used.  */
+  return 0;
 }
 
-#endif /* PTHREAD_H_ */
+static inline int
+pthread_mutex_init (pthread_mutex_t *restrict mutex,
+		    pthread_mutexattr_t const *restrict attr)
+{
+  /* MUTEX is never seriously used.  */
+  return 0;
+}
+
+static inline int
+pthread_mutex_lock (pthread_mutex_t *mutex)
+{
+  /* There is only one thread, so it always gets the lock.  This
+     implementation does not support PTHREAD_MUTEX_ERRORCHECK.  */
+  return 0;
+}
+
+static inline int
+pthread_mutex_unlock (pthread_mutex_t *mutex)
+{
+  /* There is only one thread, so it always unlocks successfully.
+     This implementation does not support robust mutexes or
+     PTHREAD_MUTEX_ERRORCHECK.  */
+  return 0;
+}
+
+static inline int
+pthread_spin_init (pthread_spinlock_t *lock, int pshared)
+{
+  /* LOCK is never seriously used.  */
+  return 0;
+}
+
+static inline int
+pthread_spin_lock (pthread_spinlock_t *lock)
+{
+  /* Only one thread, so it always gets the lock.  */
+  return 0;
+}
+
+static inline int
+pthread_spin_trylock (pthread_spinlock_t *lock)
+{
+  /* Only one thread, so it always gets the lock.  Assume that a
+     thread never tries a lock that it already holds.  */
+  return 0;
+}
+
+static inline int
+pthread_spin_unlock (pthread_spinlock_t *lock)
+{
+  /* Only one thread, so spin locks are no-ops.  */
+  return 0;
+}
+
+#endif /* _GL_PTHREAD_H_ */