diff options
author | Araq <rumpf_a@web.de> | 2010-12-07 20:43:58 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2010-12-07 20:43:58 +0100 |
commit | e7fe8edab39884f59d685d2608f8bd944cad27e6 (patch) | |
tree | bd724b3dbbf04498c6cd81e47ad843d4dec74adc /lib/system | |
parent | 902bf05879a89f7c296992da648eef9d1ea598d3 (diff) | |
download | Nim-e7fe8edab39884f59d685d2608f8bd944cad27e6.tar.gz |
added strutils.align
Diffstat (limited to 'lib/system')
-rwxr-xr-x | lib/system/systhread.nim | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/system/systhread.nim b/lib/system/systhread.nim index 70447f288..a124fa92f 100755 --- a/lib/system/systhread.nim +++ b/lib/system/systhread.nim @@ -88,19 +88,19 @@ type TLock* = TSysLock TThreadFunc* = proc (closure: pointer) {.cdecl.} -DWORD WINAPI SuspendThread( - __in HANDLE hThread -); -DWORD WINAPI ResumeThread( - __in HANDLE hThread -); -DWORD WINAPI ThreadProc( - __in LPVOID lpParameter -); +#DWORD WINAPI SuspendThread( +# __in HANDLE hThread +#); +#DWORD WINAPI ResumeThread( +# __in HANDLE hThread +#); +#DWORD WINAPI ThreadProc( +# __in LPVOID lpParameter +#); proc createThread*(t: var TThread, fn: TThreadFunc, closure: pointer) = when defined(windows): - + nil else: nil #pthread_create( |