mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 11:42:33 +00:00
19 lines
386 B
Nim
19 lines
386 B
Nim
#
|
|
#
|
|
# 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)
|