Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-04-04 18:37:45 +0400
committerChristopher Faylor <me@cgf.cx>2001-04-04 18:37:45 +0400
commit0403bb7415e34ac8d73fb896afb8f61fd33748f0 (patch)
treeb2b952574f86178340129e22bdad77079ccd7567
parent16740220a22d09a1c63714d93f1efc5fbe3927f3 (diff)
* child_info.h: Bump magic number for fork/exec/spawn.
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/child_info.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 6fb025095..a89f1f4d6 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+Wed Apr 4 10:37:44 2001 Christopher Faylor <cgf@cygnus.com>
+
+ * child_info.h: Bump magic number for fork/exec/spawn.
+
Tue Apr 3 20:06:00 2001 Corinna Vinschen <corinna@vinschen.de>
* errno.cc (errmap): Map ERROR_FILE_INVALID to ENXIO.
diff --git a/winsup/cygwin/child_info.h b/winsup/cygwin/child_info.h
index 19a59e163..8297576ab 100644
--- a/winsup/cygwin/child_info.h
+++ b/winsup/cygwin/child_info.h
@@ -12,7 +12,7 @@ details. */
enum
{
- PROC_MAGIC = 0xaf0df000,
+ PROC_MAGIC = 0xaf0ef000,
PROC_FORK = PROC_MAGIC + 1,
PROC_EXEC = PROC_MAGIC + 2,
PROC_SPAWN = PROC_MAGIC + 3,