summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/perprocess.h
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2013-04-23 09:44:36 +0000
committerCorinna Vinschen <corinna@vinschen.de>2013-04-23 09:44:36 +0000
commit61522196c71593da09572fce9af9e0d7dad61bc3 (patch)
tree9bf74facd67974fa2f780d6ce68b14eb7a94e371 /winsup/cygwin/perprocess.h
parent1875ee55d31d3673059373c8f9837bf98f93c713 (diff)
downloadcygnal-61522196c71593da09572fce9af9e0d7dad61bc3.tar.gz
cygnal-61522196c71593da09572fce9af9e0d7dad61bc3.tar.bz2
cygnal-61522196c71593da09572fce9af9e0d7dad61bc3.zip
* Merge in cygwin-64bit-branch.
Diffstat (limited to 'winsup/cygwin/perprocess.h')
-rw-r--r--winsup/cygwin/perprocess.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/perprocess.h b/winsup/cygwin/perprocess.h
index c0a555983..13cf17716 100644
--- a/winsup/cygwin/perprocess.h
+++ b/winsup/cygwin/perprocess.h
@@ -1,6 +1,6 @@
/* per_process.h: main Cygwin header file.
- Copyright 2000, 2001 Red Hat, Inc.
+ Copyright 2000, 2001, 2013 Red Hat, Inc.
This file is part of Cygwin.
@@ -21,7 +21,11 @@ extern struct per_process __cygwin_user_data;
/* We use the following to test that sizeof hasn't changed. When adding
or deleting members, insert fillers or use the reserved entries.
Do not change this value. */
+#ifdef __x86_64__
+#define SIZEOF_PER_PROCESS (41 * 8)
+#else
#define SIZEOF_PER_PROCESS (42 * 4)
+#endif
#ifdef __cplusplus
}