diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-04-27 19:25:35 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2005-04-27 19:25:35 +0000 |
commit | 4653df411da208e245013f5e9a5895683a75012c (patch) | |
tree | c7760da57819cc4c357ca6de98dd6fee14c15ca6 /linuxthreads/sysdeps/pthread/getcpuclockid.c | |
parent | 27bf484e98363620e1618827cbe8f206a4c9687a (diff) | |
download | glibc-4653df411da208e245013f5e9a5895683a75012c.tar glibc-4653df411da208e245013f5e9a5895683a75012c.tar.gz glibc-4653df411da208e245013f5e9a5895683a75012c.tar.bz2 glibc-4653df411da208e245013f5e9a5895683a75012c.zip |
Updated to fedora-glibc-20050427T1912
Diffstat (limited to 'linuxthreads/sysdeps/pthread/getcpuclockid.c')
-rw-r--r-- | linuxthreads/sysdeps/pthread/getcpuclockid.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/linuxthreads/sysdeps/pthread/getcpuclockid.c b/linuxthreads/sysdeps/pthread/getcpuclockid.c index 117c22dd37..1c64e6c2be 100644 --- a/linuxthreads/sysdeps/pthread/getcpuclockid.c +++ b/linuxthreads/sysdeps/pthread/getcpuclockid.c @@ -1,5 +1,5 @@ /* pthread_getcpuclockid -- Get POSIX clockid_t for a pthread_t. Linux version - Copyright (C) 2000, 2001, 2004 Free Software Foundation, Inc. + Copyright (C) 2000, 2001, 2004, 2005 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 @@ -22,8 +22,9 @@ #include <sys/time.h> #include <time.h> #include <internals.h> -#include "kernel-features.h" -#include "posix-cpu-timers.h" +#include <spinlock.h> +#include <kernel-features.h> +#include <kernel-posix-cpu-timers.h> #if !(__ASSUME_POSIX_CPU_TIMERS > 0) @@ -58,12 +59,12 @@ pthread_getcpuclockid (pthread_t thread_id, clockid_t *clock_id) # if !(__ASSUME_POSIX_CPU_TIMERS > 0) # if !(__ASSUME_POSIX_TIMERS > 0) if (__libc_missing_posix_timers && !__libc_missing_posix_cpu_timers) - __libc_missing_cpu_posix_timers = 1; + __libc_missing_posix_cpu_timers = 1; # endif if (!__libc_missing_posix_cpu_timers) { INTERNAL_SYSCALL_DECL (err); - int r = INTERNAL_SYSCALL (clock_getres, err, 2, tidclock, NULL); + int r = INTERNAL_SYSCALL (clock_getres, err, 2, pidclock, NULL); if (!INTERNAL_SYSCALL_ERROR_P (r, err)) # endif { |