mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
2004-03-17 Roland McGrath <roland@redhat.com>
* sysdeps/unix/sysv/linux/timer_create.c (timer_create): Pass missing first argument to clock_getres so we ever enable kernel timers.
This commit is contained in:
parent
2d9b02a408
commit
766e042d53
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 2003 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 2003,2004 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
|
||||
|
||||
@ -134,7 +134,8 @@ timer_create (clock_id, evp, timerid)
|
||||
INTERNAL_SYSCALL_DECL (err);
|
||||
struct timespec ts;
|
||||
int res;
|
||||
res = INTERNAL_SYSCALL (clock_getres, err, 1, &ts);
|
||||
res = INTERNAL_SYSCALL (clock_getres, err, 2,
|
||||
CLOCK_REALTIME, &ts);
|
||||
__no_posix_timers = (INTERNAL_SYSCALL_ERROR_P (res, err)
|
||||
? -1 : 1);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user