Updated Pygments issues (markdown)
This commit is contained in:
parent
cbf094c0be
commit
429328ab49
|
@ -19,4 +19,16 @@ proc suspend(p: Process) =
|
|||
if kill(p.id, SIGSTOP) != 0'i32: raiseOsError(osLastError())
|
||||
```
|
||||
|
||||
```nimrod
|
||||
proc terminate(p: Process) =
|
||||
if kill(p.id, SIGTERM) != 0'i32:
|
||||
raiseOsError(osLastError())
|
||||
|
||||
proc kill(p: Process) =
|
||||
if kill(p.id, SIGKILL) != 0'i32:
|
||||
raiseOsError(osLastError())
|
||||
```
|
||||
|
||||
`'i32` and after should not be red.
|
||||
|
||||
See also https://github.com/nim-lang/Nim/blob/2297a1aa6048fcbcffca4e2c2e4ede275261e83d/lib/pure/osproc.nim
|
Loading…
Reference in New Issue