makes koch.nim sem'check with --newruntime

This commit is contained in:
Araq
2019-04-06 19:13:10 +02:00
parent f1ee36692a
commit 9f5d9d1993
3 changed files with 12 additions and 6 deletions

View File

@@ -57,8 +57,8 @@ type
id: Handle
else:
inHandle, outHandle, errHandle: FileHandle
inStream, outStream, errStream: Stream
id: Pid
inStream, outStream, errStream: owned(Stream)
exitStatus: cint
exitFlag: bool
options: set[ProcessOption]
@@ -724,15 +724,21 @@ when defined(Windows) and not defined(useNimRtl):
proc inputStream(p: Process): Stream =
streamAccess(p)
result = newFileHandleStream(p.inHandle)
if p.inStream == nil:
p.inStream = newFileHandleStream(p.inHandle)
result = p.inStream
proc outputStream(p: Process): Stream =
streamAccess(p)
result = newFileHandleStream(p.outHandle)
if p.outStream == nil:
p.outStream = newFileHandleStream(p.outHandle)
result = p.outStream
proc errorStream(p: Process): Stream =
streamAccess(p)
result = newFileHandleStream(p.errHandle)
if p.errStream == nil:
p.errStream = newFileHandleStream(p.errHandle)
result = p.errStream
proc execCmd(command: string): int =
var

View File

@@ -276,7 +276,7 @@ proc newStringTable*(keyValuePairs: varargs[string],
inc(i, 2)
proc newStringTable*(keyValuePairs: varargs[tuple[key, val: string]],
mode: StringTableMode = modeCaseSensitive): StringTableRef {.
mode: StringTableMode = modeCaseSensitive): owned(StringTableRef) {.
rtlFunc, extern: "nst$1WithTableConstr".} =
## Creates a new string table with given `(key, value)` tuple pairs.
##