diff options
author | Andreas Schwab <schwab@redhat.com> | 2011-10-27 16:52:22 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@redhat.com> | 2011-10-27 17:20:14 +0200 |
commit | 3871f58f065dac3917eb18220a479e9591769c8c (patch) | |
tree | 44e025a15a6972cdf70070b6fcd04bf9330b8884 /nptl/semaphore.h | |
parent | 21b64b153631b762fba3489caf04e14c93c8d009 (diff) | |
download | glibc-3871f58f065dac3917eb18220a479e9591769c8c.tar.gz glibc-3871f58f065dac3917eb18220a479e9591769c8c.tar.xz glibc-3871f58f065dac3917eb18220a479e9591769c8c.zip |
Don't mark memory synchronisation functions as leaf
Diffstat (limited to 'nptl/semaphore.h')
-rw-r--r-- | nptl/semaphore.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nptl/semaphore.h b/nptl/semaphore.h index 4f13725b32..11caf664ab 100644 --- a/nptl/semaphore.h +++ b/nptl/semaphore.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003, 2011 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 @@ -64,10 +64,10 @@ extern int sem_timedwait (sem_t *__restrict __sem, #endif /* Test whether SEM is posted. */ -extern int sem_trywait (sem_t *__sem) __THROW; +extern int sem_trywait (sem_t *__sem) __THROWNL; /* Post SEM. */ -extern int sem_post (sem_t *__sem) __THROW; +extern int sem_post (sem_t *__sem) __THROWNL; /* Get current value of SEM and store it in *SVAL. */ extern int sem_getvalue (sem_t *__restrict __sem, int *__restrict __sval) |