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.
This commit is contained in:
Andreas Jaeger 2000-05-05 21:32:19 +00:00
parent fda4deac43
commit b19b73833a
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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. */