Update.
authorUlrich Drepper <drepper@redhat.com>
Thu, 13 Apr 2000 07:30:27 +0000 (07:30 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 13 Apr 2000 07:30:27 +0000 (07:30 +0000)
2000-04-13  Ulrich Drepper  <drepper@redhat.com>

* posix/globtest.sh: Work around inconsistency with expanding ~/
in shell (PR libc/1690).  Reported by patsmith@pobox.com.

ChangeLog
linuxthreads/ChangeLog
linuxthreads/Makefile
linuxthreads/Versions
linuxthreads/spinlock.c
linuxthreads/sysdeps/pthread/getcpuclockid.c [new file with mode: 0644]
linuxthreads/sysdeps/pthread/pthread.h
linuxthreads/sysdeps/unix/sysv/linux/i386/getcpuclockid.c [new file with mode: 0644]
posix/globtest.sh

index f2e6f98..6accbb2 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-04-13  Ulrich Drepper  <drepper@redhat.com>
+
+       * posix/globtest.sh: Work around inconsistency with expanding ~/
+       in shell (PR libc/1690).  Reported by patsmith@pobox.com.
+
 2000-04-12  Ulrich Drepper  <drepper@redhat.com>
 
        * posix/getconf.c: Add support for many more POSIX options.
index e129e8c..d7c9b5f 100644 (file)
@@ -1,5 +1,11 @@
 2000-04-12  Ulrich Drepper  <drepper@redhat.com>
 
+       * Makefile (libpthread-routines): Add getcpuclockid.
+       * Versions [libpthread] (GLIBC_2.2): Add pthread_getcpuclockid.
+       * sysdeps/pthread/getcpuclockid.c: New file.
+       * sysdeps/unix/sysv/linux/i386/getcpuclockid.c: New file.
+       * sysdeps/pthread/pthread.h: Add prototype for pthread_getcpuclockid.
+
        * sysdeps/unix/sysv/linux/bits/posix_opt.h (_POSIX_SPIN_LOCKS):
        Defined.
        * sysdeps/unix/sysv/linux/i386/bits/posix_opt.h: Likewise.
index d2b1542..b51ea84 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
+# Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
 # This file is part of the GNU C Library.
 
 # The GNU C Library is free software; you can redistribute it and/or
@@ -35,7 +35,7 @@ extra-libs-others := $(extra-libs)
 libpthread-routines := attr cancel condvar join manager mutex ptfork \
                       ptlongjmp pthread signals specific errno lockfile \
                       semaphore spinlock wrapsyscall rwlock pt-machine \
-                      oldsemaphore events
+                      oldsemaphore events getcpuclockid
 
 vpath %.c Examples
 tests = ex1 ex2 ex3 ex4 ex5 ex6
index e5348fc..92ec98d 100644 (file)
@@ -134,5 +134,6 @@ libpthread {
     sem_timedwait;
     pthread_spin_destroy; pthread_spin_init; pthread_spin_lock;
     pthread_spin_trylock; pthread_spin_unlock;
+    pthread_getcpuclockid;
   }
 }
index 981d7a4..6e7eb12 100644 (file)
@@ -82,8 +82,6 @@ void internal_function __pthread_lock(pthread_spinlock_t * lock,
   /* Put back any resumes we caught that don't belong to us. */
   while (spurious_wakeup_count--)
     restart(self);
-
-  return 0;
 }
 int __pthread_spin_lock(pthread_spinlock_t * lock)
 {
diff --git a/linuxthreads/sysdeps/pthread/getcpuclockid.c b/linuxthreads/sysdeps/pthread/getcpuclockid.c
new file mode 100644 (file)
index 0000000..ef1f84f
--- /dev/null
@@ -0,0 +1,28 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Library General Public License as
+   published by the Free Software Foundation; either version 2 of the
+   License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+
+   You should have received a copy of the GNU Library General Public
+   License along with the GNU C Library; see the file COPYING.LIB.  If not,
+   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+   Boston, MA 02111-1307, USA.  */
+
+#include <errno.h>
+#include <pthread.h>
+#include <sys/time.h>
+
+int
+pthread_getcpuclockid (pthread_t pthread_id, clockid_t *clock_id)
+{
+  /* We don't have a timer for that.  */
+  return ENOENT;
+}
index 4cc1aaa..de00130 100644 (file)
@@ -411,19 +411,20 @@ extern int pthread_rwlockattr_setkind_np (pthread_rwlockattr_t *__attr,
 
 /* Initialize the spinlock LOCK.  If PSHARED is nonzero the spinlock can
    be shared between different processes.  */
-extern int pthread_spin_init (pthread_spinlock_t *__lock, int __pshared);
+extern int pthread_spin_init (pthread_spinlock_t *__lock, int __pshared)
+     __THROW;
 
 /* Destroy the spinlock LOCK.  */
-extern int pthread_spin_destroy (pthread_spinlock_t *__lock);
+extern int pthread_spin_destroy (pthread_spinlock_t *__lock) __THROW;
 
 /* Wait until spinlock LOCK is retrieved.  */
-extern int pthread_spin_lock (pthread_spinlock_t *__lock);
+extern int pthread_spin_lock (pthread_spinlock_t *__lock) __THROW;
 
 /* Try to lock spinlock LOCK.  */
-extern int pthread_spin_trylock (pthread_spinlock_t *__lock);
+extern int pthread_spin_trylock (pthread_spinlock_t *__lock) __THROW;
 
 /* Release spinlock LOCK.  */
-extern int pthread_spin_unlock (pthread_spinlock_t *__lock);
+extern int pthread_spin_unlock (pthread_spinlock_t *__lock) __THROW;
 #endif
 
 
@@ -525,6 +526,14 @@ extern void _pthread_cleanup_pop_restore (struct _pthread_cleanup_buffer *__buff
                                          int __execute) __THROW;
 #endif
 
+
+#ifdef __USE_XOPEN2K
+/* Get ID of CPU-time clock for thread THREAD_ID.  */
+extern int pthread_getcpuclockid (pthread_t __thread_id,
+                                 clockid_t *__clock_id) __THROW;
+#endif
+
+
 /* Functions for handling signals.  */
 #include <bits/sigthread.h>
 
diff --git a/linuxthreads/sysdeps/unix/sysv/linux/i386/getcpuclockid.c b/linuxthreads/sysdeps/unix/sysv/linux/i386/getcpuclockid.c
new file mode 100644 (file)
index 0000000..2c4218a
--- /dev/null
@@ -0,0 +1,37 @@
+/* Copyright (C) 2000 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Library General Public License as
+   published by the Free Software Foundation; either version 2 of the
+   License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+
+   You should have received a copy of the GNU Library General Public
+   License along with the GNU C Library; see the file COPYING.LIB.  If not,
+   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+   Boston, MA 02111-1307, USA.  */
+
+#include <errno.h>
+#include <pthread.h>
+#include <unistd.h>
+#include <sys/time.h>
+
+#include <internals.h>
+
+int
+pthread_getcpuclockid (pthread_t thread_id, clockid_t *clock_id)
+{
+  /* We don't allow any process ID but our own.  */
+  if (thread_id != thread_self ())
+    return EPERM;
+
+  /* Store the number.  */
+  *clock_id = CLOCK_PTHREAD_CPUTIME_ID;
+
+  return 0;
+}
index 6c08830..40d95d5 100755 (executable)
@@ -235,7 +235,12 @@ echo ~ | cmp - $testout || result=1
 ${elf_objpfx}${rtld_installed_name} --library-path ${library_path} \
 ${common_objpfx}posix/globtest -q -t "$testdir" "~/" |
 sort > $testout
-echo ~/ | cmp - $testout || result=1
+# Some shell incorrectly(?) convert ~/ into // if ~ expands to /.
+if test ~/ = //; then
+    echo / | cmp - $testout || result=1
+else
+    echo ~/ | cmp - $testout || result=1
+endif
 
 # Test tilde expansion with username
 ${elf_objpfx}${rtld_installed_name} --library-path ${library_path} \