Skip to content

Commit 711c94c

Browse files
committed
Started working on async/await support in plugins
1 parent 9d44988 commit 711c94c

17 files changed

Lines changed: 1605 additions & 137 deletions

File tree

patches/osproc.nim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ type
5757
## work in progress!
5858
poDontInheritHandles ## Windows: Don't inherit handles in the child process
5959

60-
ProcessObj = object of RootObj
60+
ProcessObj* = object of RootObj
6161
when defined(windows):
6262
fProcessHandle: Handle
6363
fThreadHandle: Handle
@@ -66,7 +66,7 @@ type
6666
else:
6767
inHandle, outHandle, errHandle: FileHandle
6868
id: Pid
69-
inStream, outStream, errStream: owned(Stream)
69+
inStream*, outStream*, errStream*: owned(Stream)
7070
exitStatus: cint
7171
exitFlag: bool
7272
options: set[ProcessOption]

0 commit comments

Comments
 (0)