make travis green

This commit is contained in:
Araq
2019-02-06 17:42:38 +01:00
parent 035134de42
commit e457ccc7e1
2 changed files with 2 additions and 2 deletions

View File

@@ -126,7 +126,7 @@ proc startCmd*(command: string, options: set[ProcessOption] = {
## Deprecated - use `startProcess` directly.
result = startProcess(command=command, options=options + {poEvalCommand})
proc close*(p: Process) {.rtl, extern: "nosp$1", tags: [].}
proc close*(p: Process) {.rtl, extern: "nosp$1", tags: [WriteIOEffect].}
## When the process has finished executing, cleanup related handles.
##
## **Warning:** If the process has not finished executing, this will forcibly

View File

@@ -46,7 +46,7 @@ type
## accessible so that a stream implementation
## can override them.
closeImpl*: proc (s: Stream)
{.nimcall, raises: [Exception, IOError, OSError], tags: [ReadIOEffect, WriteIOEffect], gcsafe.}
{.nimcall, raises: [Exception, IOError, OSError], tags: [WriteIOEffect], gcsafe.}
atEndImpl*: proc (s: Stream): bool
{.nimcall, raises: [Defect, IOError, OSError], tags: [], gcsafe.}
setPositionImpl*: proc (s: Stream, pos: int)