about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-05-05 21:32:19 +0000
committerAndreas Jaeger <aj@suse.de>2000-05-05 21:32:19 +0000
commitb19b73833a8627a26c083bad7147dffd3e52769a (patch)
treef79dcd67292bea72193452a284ebf1da08700abf
parentfda4deac4361d47c60df663f7c1c997322d10b5e (diff)
downloadglibc-b19b73833a8627a26c083bad7147dffd3e52769a.tar.gz
glibc-b19b73833a8627a26c083bad7147dffd3e52769a.tar.xz
glibc-b19b73833a8627a26c083bad7147dffd3e52769a.zip
2000-05-05 Andreas Jaeger <aj@suse.de>
	* sysdeps/unix/sysv/linux/i386/getcpuclockid.c
	(pthread_getcpuclockid): Correct test for ourselves.
2000-05-05  Andreas Jaeger  <aj@suse.de>

	* sysdeps/unix/sysv/linux/i386/getcpuclockid.c
	(pthread_getcpuclockid): Correct test for ourselves.
-rw-r--r--linuxthreads/ChangeLog5
-rw-r--r--linuxthreads/sysdeps/unix/sysv/linux/i386/getcpuclockid.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog
index b4f33434b1..5c1c1e1298 100644
--- a/linuxthreads/ChangeLog
+++ b/linuxthreads/ChangeLog
@@ -1,3 +1,8 @@
+2000-05-05  Andreas Jaeger  <aj@suse.de>
+
+	* sysdeps/unix/sysv/linux/i386/getcpuclockid.c
+	(pthread_getcpuclockid): Correct test for ourselves.
+
 2000-05-05  Ulrich Drepper  <drepper@redhat.com>
 
 	* internals.h (struct _pthread_descr_struct): Reorganization.
diff --git a/linuxthreads/sysdeps/unix/sysv/linux/i386/getcpuclockid.c b/linuxthreads/sysdeps/unix/sysv/linux/i386/getcpuclockid.c
index 90c08d55a8..b1a96705ac 100644
--- a/linuxthreads/sysdeps/unix/sysv/linux/i386/getcpuclockid.c
+++ b/linuxthreads/sysdeps/unix/sysv/linux/i386/getcpuclockid.c
@@ -27,7 +27,7 @@ int
 pthread_getcpuclockid (pthread_t thread_id, clockid_t *clock_id)
 {
   /* We don't allow any process ID but our own.  */
-  if (thread_handle (thread_id) != thread_self ())
+  if (thread_handle (thread_id)->h_descr != thread_self ())
     return EPERM;
 
   /* Store the number.  */