summary refs log tree commit diff stats
path: root/lib/core/locks.nim
Commit message (Expand)AuthorAgeFilesLines
* Use ``when insideRLocksModule`` instead of ``when compiles``Anatoly Galiulin2016-03-311-0/+1
* Fix ``XDeclaredButNotUsed`` warning when locks or rlocks module is usedAnatoly Galiulin2016-03-311-1/+1
* Documentation for `withLock`.Dominik Picheta2016-03-231-0/+2
* Rename locks.lock tmplt to withLock and change body to untyped.Dominik Picheta2016-03-231-1/+1
* Implement a `lock` template in `locks` module.Dominik Picheta2016-03-181-0/+8
* Merge branch 'more_concurrency' into develAraq2015-06-301-2/+1
|\
| * get rid of deprecated effectsAraq2015-05-131-18/+6
* | lib/core - Dropped 'T' from typespdw2015-06-041-12/+14
* | get rid of deprecated effectsAraq2015-05-281-18/+6
|/
* Fix typosFederico Ceratto2015-02-151-1/+1
* deprecated old locking effectsAraq2014-12-081-9/+12
* Remove runtime deadlock prevention as deadlock detection at compile-time is a...def2014-11-111-106/+2
* Fix compile because of case sensitivitydef2014-11-081-1/+1
* make tests greenAraq2014-08-311-9/+11
* Nimrod renamed to NimAraq2014-08-281-4/+4
* case consistency improvementsAraq2014-01-111-25/+25
* 'assert' hides EAssertionFailsure; stdlib makes use of 'tags'Araq2012-11-181-3/+10
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* fixed some recently introduced compilation errors in the standard libraryZahary Karadjov2011-12-131-1/+1
* new actors implementation for nimrod; compiler's generics still not up for th...Araq2011-08-291-2/+3
* locks now in their own core moduleAraq2011-08-201-0/+158
v>
de495ae ^



0248339 ^
de495ae ^



0248339 ^
de495ae ^














e27165c ^





















de495ae ^


























222a11a ^
de495ae ^
















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167