* child_info.h (CURR_CHILD_INFO_MAGIC): Update.

(class child_info_fork): Drop extraneous semicolon.
This commit is contained in:
Corinna Vinschen 2013-02-08 20:15:05 +00:00
parent be071de851
commit 064e3a9115
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2013-02-08 Corinna Vinschen <corinna@vinschen.de>
* child_info.h (CURR_CHILD_INFO_MAGIC): Update.
(class child_info_fork): Drop extraneous semicolon.
2013-02-04 Corinna Vinschen <corinna@vinschen.de> 2013-02-04 Corinna Vinschen <corinna@vinschen.de>
* fhandler_socket.cc (fhandler_socket::bind): Fix error code for * fhandler_socket.cc (fhandler_socket::bind): Fix error code for

View File

@ -1,7 +1,7 @@
/* child_info.h: shared child info for cygwin /* child_info.h: shared child info for cygwin
Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009, 2011, 2012 Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009, 2011, 2012,
Red Hat, Inc. 2013 Red Hat, Inc.
This file is part of Cygwin. This file is part of Cygwin.
@ -35,7 +35,7 @@ enum child_status
#define EXEC_MAGIC_SIZE sizeof(child_info) #define EXEC_MAGIC_SIZE sizeof(child_info)
/* Change this value if you get a message indicating that it is out-of-sync. */ /* Change this value if you get a message indicating that it is out-of-sync. */
#define CURR_CHILD_INFO_MAGIC 0xb7de78e6U #define CURR_CHILD_INFO_MAGIC 0xe399543U
#define NPROCS 256 #define NPROCS 256
@ -106,7 +106,7 @@ public:
// user stack // user stack
char filler[4]; char filler[4];
child_info_fork (); child_info_fork ();
void __reg1 handle_fork ();; void __reg1 handle_fork ();
bool abort (const char *fmt = NULL, ...); bool abort (const char *fmt = NULL, ...);
void alloc_stack (); void alloc_stack ();
void alloc_stack_hard_way (volatile char *); void alloc_stack_hard_way (volatile char *);