diff options
author | EXetoC <exetoc@gmail.com> | 2014-05-04 22:48:53 +0200 |
---|---|---|
committer | EXetoC <exetoc@gmail.com> | 2014-05-04 22:48:53 +0200 |
commit | 0a0b74bc24f08c0c14712b2e445dfda11787f202 (patch) | |
tree | 53978ae42648d79f47768cc9a9b1914103d4bedb /lib/pure | |
parent | 8d19b099595561d42bf1206c5488cfeaa08ebadb (diff) | |
download | Nim-0a0b74bc24f08c0c14712b2e445dfda11787f202.tar.gz |
asmNoStackFrame -> stackTrace:off
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/osproc.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim index bab26bb45..c6281675e 100644 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -800,8 +800,8 @@ elif not defined(useNimRtl): proc startProcessAfterFork(data: ptr TStartProcessData) = # Warning: no GC here! - # Or anythink that touches global structures - all called nimrod procs - # must be marked with asmNoStackFrame. Inspect C code after making changes. + # Or anything that touches global structures - all called nimrod procs + # must be marked with stackTrace:off. Inspect C code after making changes. if not data.optionPoParentStreams: discard close(data.pStdin[writeIdx]) if dup2(data.pStdin[readIdx], readIdx) < 0: |