Updated Pygments issues (markdown)
This commit is contained in:
parent
429328ab49
commit
33f75d952d
|
@ -20,11 +20,11 @@ proc suspend(p: Process) =
|
||||||
```
|
```
|
||||||
|
|
||||||
```nimrod
|
```nimrod
|
||||||
proc terminate(p: Process) =
|
proc terminate(p: Process) =
|
||||||
if kill(p.id, SIGTERM) != 0'i32:
|
if kill(p.id, SIGTERM) != 0'i32:
|
||||||
raiseOsError(osLastError())
|
raiseOsError(osLastError())
|
||||||
|
|
||||||
proc kill(p: Process) =
|
proc kill(p: Process) =
|
||||||
if kill(p.id, SIGKILL) != 0'i32:
|
if kill(p.id, SIGKILL) != 0'i32:
|
||||||
raiseOsError(osLastError())
|
raiseOsError(osLastError())
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue