diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2007-02-07 17:22:40 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2007-02-07 17:22:40 +0000 |
commit | 59e3b6ca7dc10603d1e692928a236fe5a0523200 (patch) | |
tree | 17949dbe48d690e650c7b3cefa903f711e49477d /winsup/cygwin/include/semaphore.h | |
parent | 0e37a2e6e5f9bd3922f050da2a09b0e9d1dc5afd (diff) | |
download | cygnal-59e3b6ca7dc10603d1e692928a236fe5a0523200.tar.gz cygnal-59e3b6ca7dc10603d1e692928a236fe5a0523200.tar.bz2 cygnal-59e3b6ca7dc10603d1e692928a236fe5a0523200.zip |
* cygmalloc.h (MALLOC_FAILURE_ACTION): Define empty.
* cygwin.din (posix_madvise): Export.
(posix_memalign): Export.
* fhandler.cc (fhandler_base::fpathconf): Return useful values in
_PC_VDISABLE, _PC_SYNC_IO and _PC_SYMLINK_MAX cases.
* malloc_wrapper.cc (malloc): Set errno here since it's not set in
dlmalloc.c anymore.
(realloc): Ditto.
(calloc): Ditto.
(memalign): Ditto.
(valloc): Ditto.
(posix_memalign): New function.
* mmap.cc (posix_madvise): New function.
* sysconf.cc (get_open_max): New function.
(get_page_size): Ditto.
(get_nproc_values): Ditto.
(get_avphys): Ditto.
(sc_type): New type.
(sca): New array to map _SC_xxx options to sysconf return values.
(sysconf): Reimplement using sca array.
* include/limits.h: Add all missing values as defined by SUSv3.
* include/pthread.h (PTHREAD_DESTRUCTOR_ITERATIONS): Move definition
to sys/limits.h.
(PTHREAD_KEYS_MAX): Ditto.
* include/semaphore.h (SEM_VALUE_MAX): Ditto.
* include/cygwin/stdlib.h (posix_memalign): Declare.
* include/cygwin/version.h: Bump API minor number.
* include/sys/mman.h: Add posix_madvise flags.
(posix_madvise): Declare.
* include/sys/termios.h (_POSIX_VDISABLE): Move definition to
sys/limits.h.
Diffstat (limited to 'winsup/cygwin/include/semaphore.h')
-rw-r--r-- | winsup/cygwin/include/semaphore.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/winsup/cygwin/include/semaphore.h b/winsup/cygwin/include/semaphore.h index 96f7c6f88..0f13c85e8 100644 --- a/winsup/cygwin/include/semaphore.h +++ b/winsup/cygwin/include/semaphore.h @@ -1,6 +1,6 @@ /* semaphore.h: POSIX semaphore interface - Copyright 2001, 2003 Red Hat, Inc. + Copyright 2001, 2003, 2007 Red Hat, Inc. Written by Robert Collins <rbtcollins@hotmail.com> @@ -25,7 +25,6 @@ extern "C" #endif #define SEM_FAILED 0 -#define SEM_VALUE_MAX 1147483648 /* Semaphores */ int sem_init (sem_t * sem, int pshared, unsigned int value); |