diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2016-07-06 19:12:59 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2016-07-06 19:12:59 +0200 |
commit | 8cff1569fc5816a8b38ad47834cebd109dad1cce (patch) | |
tree | 21c796f2b7ae3f98222dd8bdc480fdf46a9d87c6 /winsup | |
parent | 28d393c001975a62af6952a1f516d37a1413ce34 (diff) | |
download | newlib-8cff1569fc5816a8b38ad47834cebd109dad1cce.zip newlib-8cff1569fc5816a8b38ad47834cebd109dad1cce.tar.gz newlib-8cff1569fc5816a8b38ad47834cebd109dad1cce.tar.bz2 |
strace: Make sure strace timer isn't copied to child process
At fork time the .data and .bss segments of the Cygwin DLL are copied
over to the child process. This also copies the strace timer since
it's in the .bss segment so far. Fix that by moving the strace timer
out into the .data_cygwin_nocopy segment.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup')
-rw-r--r-- | winsup/cygwin/strace.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/strace.cc b/winsup/cygwin/strace.cc index a05a4e0..1e7ab04 100644 --- a/winsup/cygwin/strace.cc +++ b/winsup/cygwin/strace.cc @@ -82,7 +82,7 @@ strace::dll_info () int strace::microseconds () { - static hires_ns now; + static hires_ns now NO_COPY; return (int) now.usecs (); } |