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:
authorKen Brown <kbrown@cornell.edu>2022-05-24 21:26:33 +0300
committerKen Brown <kbrown@cornell.edu>2022-05-30 00:54:32 +0300
commite1ce752a1dec6134d6a05d54fc7ba6d9177513c5 (patch)
tree8c505dee6d2f0b9382733bef59f5ebe7677c658a /winsup/cygwin/sigproc.cc
parentb1e304cbd310a6bf36356ccb87aba24f03881885 (diff)
Cygwin: remove miscellaneous 32-bit code
Diffstat (limited to 'winsup/cygwin/sigproc.cc')
-rw-r--r--winsup/cygwin/sigproc.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc
index 0d9da237c..0ccbc5046 100644
--- a/winsup/cygwin/sigproc.cc
+++ b/winsup/cygwin/sigproc.cc
@@ -50,13 +50,8 @@ char NO_COPY myself_nowait_dummy[1] = {'0'};
This class can allocate memory. But there's no need to free it
because only one instance of the class is created per process. */
class child_procs {
-#ifdef __i386__
- static const int _NPROCS = 256;
- static const int _NPROCS_2 = 1023;
-#else
static const int _NPROCS = 1024;
static const int _NPROCS_2 = 4095;
-#endif
int _count;
uint8_t _procs[_NPROCS * sizeof (pinfo)] __attribute__ ((__aligned__));
pinfo *_procs_2;