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:
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/pinfo.h8
2 files changed, 11 insertions, 2 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index f1c058220..1d3e2b9fb 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2011-05-24 Corinna Vinschen <corinna@vinschen.de>
+
+ * pinfo.h (struct _pinfo): Reduce size of progname array slightly.
+ Explain why.
+
2011-05-23 Eric Blake <eblake@redhat.com>
* errno.cc (strerror): Print unknown errno as int.
diff --git a/winsup/cygwin/pinfo.h b/winsup/cygwin/pinfo.h
index ed8a4aecf..72dc52237 100644
--- a/winsup/cygwin/pinfo.h
+++ b/winsup/cygwin/pinfo.h
@@ -64,8 +64,12 @@ public:
signals. */
DWORD dwProcessId;
- /* Used to spawn a child for fork(), among other things. */
- WCHAR progname[NT_MAX_PATH];
+ /* Used to spawn a child for fork(), among other things. The other
+ members of _pinfo take only a bit over 200 bytes. So cut off a
+ couple of bytes from progname to allow the _pinfo structure not
+ to exceed 64K. Otherwise it blocks another 64K block of VM for
+ the process. */
+ WCHAR progname[NT_MAX_PATH - 512];
/* User information.
The information is derived from the GetUserName system call,