summary refs log tree commit diff stats
path: root/lib/system
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2010-12-07 20:43:58 +0100
committerAraq <rumpf_a@web.de>2010-12-07 20:43:58 +0100
commite7fe8edab39884f59d685d2608f8bd944cad27e6 (patch)
treebd724b3dbbf04498c6cd81e47ad843d4dec74adc /lib/system
parent902bf05879a89f7c296992da648eef9d1ea598d3 (diff)
downloadNim-e7fe8edab39884f59d685d2608f8bd944cad27e6.tar.gz
added strutils.align
Diffstat (limited to 'lib/system')
-rwxr-xr-xlib/system/systhread.nim20
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(