summary refs log tree commit diff stats
path: root/lib/locks.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/locks.nim')
-rw-r--r--lib/locks.nim18
1 files changed, 0 insertions, 18 deletions
diff --git a/lib/locks.nim b/lib/locks.nim
deleted file mode 100644
index 89d26dfca..000000000
--- a/lib/locks.nim
+++ /dev/null
@@ -1,18 +0,0 @@
-#
-#
-#            Nimrod's Runtime Library
-#        (c) Copyright 2008 Andreas Rumpf
-#
-#    See the file "copying.txt", included in this
-#    distribution, for details about the copyright.
-#
-
-# Simple platform dependant lock implementation
-
-type
-  TSimpleLock = pointer
-
-proc initLock(s: TSimpleLock)
-proc deinitLock(s: TSimpleLock)
-proc lock(s: TSimpleLock)
-proc unlock(s: TSimpleLock)