diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-01-22 10:43:39 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-01-22 10:43:39 +0000 |
commit | 89f7e8d1d3a52ac824cfc10fdaaa213f43b4c121 (patch) | |
tree | 77bc3f5967d4e4b3d71bf10a8db1b2b179fbbfc4 /winsup/cygwin/include | |
parent | 13afd798c32c94b45f06603bb420bcb1823c5c96 (diff) | |
download | cygnal-89f7e8d1d3a52ac824cfc10fdaaa213f43b4c121.tar.gz cygnal-89f7e8d1d3a52ac824cfc10fdaaa213f43b4c121.tar.bz2 cygnal-89f7e8d1d3a52ac824cfc10fdaaa213f43b4c121.zip |
* cygwin.din: Export nanosleep().
* signal.cc (nanosleep): New function.
(sleep): Move old functionality to nanosleep(). Call nanosleep().
(usleep): Remove old functionality. Call nanosleep().
* include/cygwin/version.h: Bump API minor number.
Diffstat (limited to 'winsup/cygwin/include')
-rw-r--r-- | winsup/cygwin/include/cygwin/version.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h index 1b370fa5f..1a10b7be9 100644 --- a/winsup/cygwin/include/cygwin/version.h +++ b/winsup/cygwin/include/cygwin/version.h @@ -169,12 +169,13 @@ details. */ 69: Export strtof 70: Export asprintf, _asprintf_r, vasprintf, _vasprintf_r 71: Export strerror_r + 72: Export nanosleep */ /* Note that we forgot to bump the api for ualarm, strtoll, strtoull */ #define CYGWIN_VERSION_API_MAJOR 0 -#define CYGWIN_VERSION_API_MINOR 71 +#define CYGWIN_VERSION_API_MINOR 72 /* There is also a compatibity version number associated with the shared memory regions. It is incremented when incompatible |