aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/cygtls.h
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/cygtls.h')
-rw-r--r--winsup/cygwin/cygtls.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/winsup/cygwin/cygtls.h b/winsup/cygwin/cygtls.h
index deff108..38fe531 100644
--- a/winsup/cygwin/cygtls.h
+++ b/winsup/cygwin/cygtls.h
@@ -73,7 +73,7 @@ struct _local_storage
char strerror_buf[20];
/* sysloc.cc */
- char *process_ident;
+ char *process_ident; // note: malloced
int process_logopt;
int process_facility;
int process_logmask;
@@ -86,10 +86,10 @@ struct _local_storage
char username[UNLEN + 1];
/* net.cc */
- char *ntoa_buf;
- struct protoent *protoent_buf;
- struct servent *servent_buf;
- struct hostent *hostent_buf;
+ char *ntoa_buf; // note: malloced
+ struct protoent *protoent_buf; // note: malloced
+ struct servent *servent_buf; // note: malloced
+ struct hostent *hostent_buf; // note: malloced
char signamebuf[sizeof ("Unknown signal 4294967295 ")];
};