From 8e58acb9447a5afb4d0730305b5244b737caf160 Mon Sep 17 00:00:00 2001 From: Ken Brown Date: Sat, 29 Aug 2020 05:59:56 -0400 Subject: [PATCH] Cygwin: sigproc.cc: add comment --- winsup/cygwin/sigproc.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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;