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>2020-08-29 12:59:56 +0300
committerKen Brown <kbrown@cornell.edu>2020-08-30 16:33:30 +0300
commit0416f68de186f3f24b1f8319e0781e6c5ae0ba53 (patch)
treee6c07f2c3b7972a1362cb6c94dd41b028dadd728 /winsup/cygwin/sigproc.cc
parent6af1524aaa285b3a003384cf13f8430c7ecf8e86 (diff)
Cygwin: sigproc.cc: add comment
Diffstat (limited to 'winsup/cygwin/sigproc.cc')
-rw-r--r--winsup/cygwin/sigproc.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc
index 2a9734f00..47352c213 100644
--- a/winsup/cygwin/sigproc.cc
+++ b/winsup/cygwin/sigproc.cc
@@ -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;