diff options
author | EXetoC <exetoc@gmail.com> | 2014-05-04 16:07:37 +0200 |
---|---|---|
committer | EXetoC <exetoc@gmail.com> | 2014-05-04 16:07:37 +0200 |
commit | 8d19b099595561d42bf1206c5488cfeaa08ebadb (patch) | |
tree | afb294e6479570a2dcd5305ace99a15b08af1381 /lib | |
parent | 05712fe8053420ecf481757e529a7ef2f32fb75c (diff) | |
download | Nim-8d19b099595561d42bf1206c5488cfeaa08ebadb.tar.gz |
noStackFrame -> asmNoStackFrame
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/osproc.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim index 6e250f9d5..bab26bb45 100644 --- a/lib/pure/osproc.nim +++ b/lib/pure/osproc.nim @@ -801,7 +801,7 @@ 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 noStackFrame. Inspect C code after making changes. + # must be marked with asmNoStackFrame. Inspect C code after making changes. if not data.optionPoParentStreams: discard close(data.pStdin[writeIdx]) if dup2(data.pStdin[readIdx], readIdx) < 0: |