diff options
author | Christopher Faylor <me@cgf.cx> | 2000-05-15 03:42:27 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-05-15 03:42:27 +0000 |
commit | 66aea0c52eb2c0a87ac838b557224102ae1521cc (patch) | |
tree | a76474a3b91df45124ef47588dedb5e11aaa4087 /winsup/cygwin | |
parent | a0c36771204b2fc40c259a04129255fd1d6fa36c (diff) | |
download | cygnal-66aea0c52eb2c0a87ac838b557224102ae1521cc.tar.gz cygnal-66aea0c52eb2c0a87ac838b557224102ae1521cc.tar.bz2 cygnal-66aea0c52eb2c0a87ac838b557224102ae1521cc.zip |
* shared.h: Bump PROC_MAGIC.
* include/cygwin/version.h: Bump API minor to accomodate two recent exports.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r-- | winsup/cygwin/ChangeLog | 6 | ||||
-rw-r--r-- | winsup/cygwin/include/cygwin/version.h | 3 | ||||
-rw-r--r-- | winsup/cygwin/shared.h | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 2cafc2841..792c7759d 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,9 @@ +Sun May 14 23:41:24 2000 Christopher Faylor <cgf@cygnus.com> + + * shared.h: Bump PROC_MAGIC. + * include/cygwin/version.h: Bump API minor to accomodate two recent + exports. + 2000-05-13 Mumit Khan <khan@xraylith.wisc.edu> * include/cygwin/socket.h (AF_INET6): Use same value as winsock2. diff --git a/winsup/cygwin/include/cygwin/version.h b/winsup/cygwin/include/cygwin/version.h index 549cff122..6df763358 100644 --- a/winsup/cygwin/include/cygwin/version.h +++ b/winsup/cygwin/include/cygwin/version.h @@ -95,10 +95,11 @@ details. */ 17: Export fast math stuff 18: Stop exporting _strace_wm 19: Export fchown, lchown, lacl + 20: regsub, inet_network */ #define CYGWIN_VERSION_API_MAJOR 0 -#define CYGWIN_VERSION_API_MINOR 19 +#define CYGWIN_VERSION_API_MINOR 20 /* There is also a compatibity version number associated with the shared memory regions. It is incremented when incompatible diff --git a/winsup/cygwin/shared.h b/winsup/cygwin/shared.h index 8eb552a24..d4f9c5bfb 100644 --- a/winsup/cygwin/shared.h +++ b/winsup/cygwin/shared.h @@ -187,7 +187,7 @@ pinfo *__stdcall procinfo (int n); enum { - PROC_MAGIC = 0xaf06f000, + PROC_MAGIC = 0xaf07f000, PROC_FORK = PROC_MAGIC + 1, PROC_EXEC = PROC_MAGIC + 2, PROC_SPAWN = PROC_MAGIC + 3, |