diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-11-12 13:41:14 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-11-12 13:41:14 +0000 |
commit | 0e54a7250fe6b03f07217beb8280d1be1951f4d8 (patch) | |
tree | 57f417b645863740dbb9385a3108ee3db82ee3a4 /nptl/pthread_condattr_setclock.c | |
parent | 3cac8b757eb2ec67023b9d5de3653f80ef0572dd (diff) | |
download | glibc-0e54a7250fe6b03f07217beb8280d1be1951f4d8.tar.gz glibc-0e54a7250fe6b03f07217beb8280d1be1951f4d8.tar.xz glibc-0e54a7250fe6b03f07217beb8280d1be1951f4d8.zip |
[BZ #7009] cvs/fedora-glibc-20081112T2008
Diffstat (limited to 'nptl/pthread_condattr_setclock.c')
-rw-r--r-- | nptl/pthread_condattr_setclock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/pthread_condattr_setclock.c b/nptl/pthread_condattr_setclock.c index 9c03bce9fc..5c54f764e6 100644 --- a/nptl/pthread_condattr_setclock.c +++ b/nptl/pthread_condattr_setclock.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc. +/* Copyright (C) 2003, 2004, 2007, 2008 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2003. @@ -66,7 +66,7 @@ pthread_condattr_setclock (attr, clock_id) int *valuep = &((struct pthread_condattr *) attr)->value; - *valuep = ((*valuep & ~(1 << (COND_NWAITERS_SHIFT + 1)) & ~1) + *valuep = ((*valuep & ~(((1 << COND_NWAITERS_SHIFT) - 1) << 1)) | (clock_id << 1)); return 0; |