Cygwin: sigproc.cc: add comment

This commit is contained in:
Ken Brown 2020-08-29 05:59:56 -04:00
parent 6af1524aaa
commit 0416f68de1
1 changed files with 5 additions and 1 deletions

View File

@ -44,7 +44,11 @@ char NO_COPY myself_nowait_dummy[1] = {'0'};
#define Static static NO_COPY
/* All my children info. Avoid expensive constructor ops at DLL startup */
/* All my children info. Avoid expensive constructor ops at DLL
startup.
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;