summary refs log tree commit diff stats
path: root/lib/system/syslocks.nim
Commit message (Expand)AuthorAgeFilesLines
* removes deprecated T/P typesAraq2018-11-161-2/+0
* Fixup #5804 (#5837)Yuriy Glukhov2017-05-181-3/+9
* Fixed syslocks for ios (#5804)Yuriy Glukhov2017-05-121-22/+88
* Linux abi take 3 (#5692)Jacek Sieka2017-04-121-0/+9
* support for the Genode OS framework (#5560)Emery Hemingway2017-03-311-0/+22
* Fixed stacktrace errorYuriy Glukhov2016-04-261-0/+2
* Use ``when insideRLocksModule`` instead of ``when compiles``Anatoly Galiulin2016-03-311-2/+2
* Fix ``XDeclaredButNotUsed`` warning when locks or rlocks module is usedAnatoly Galiulin2016-03-311-19/+16
* Make windows locks do not use dyncallcheatfate2016-03-311-12/+14
* GCs support ForeignCellsAndreas Rumpf2016-03-051-0/+4
* Fixed includes for pthread types.Yuriy Glukhov2016-03-041-5/+7
* Added rlocks module to documentation and news.txtAnatoly Galiulin2016-02-181-1/+1
* Added reentrant locks module to stdlibAnatoly Galiulin2016-02-171-1/+13
* lib: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-10/+10
* lib/system/g-w - Dropped 'T' from typespdw2015-06-041-29/+31
* Winlean and threads case sensitivity fixes.Dominik Picheta2014-08-301-1/+1
* the big renamefest: first stepsAraq2014-08-221-1/+1
* New concurrency model: next stepsAraq2014-04-191-6/+6
* case consistency improvementsAraq2014-01-111-0/+3
* case consistency part 1Araq2013-12-271-27/+27
* fixed a long standing xml parser bug; html parser bugfixes + speed improvementsAraq2013-06-271-1/+1
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* year 2012 for most copyright headersAraq2012-01-021-1/+1
* preparations for 0.8.12Araq2011-07-101-1/+1
* bugfix: 'set' overloadable; further steps for multi threading supportAraq2011-07-081-0/+101
on' href='/akkartik/mu/blame/build3?h=main&id=7e977235d4bd341b1d5d5e125affb0646199f16c'>^
34514ae8 ^
c912b731 ^



5763322b ^



c912b731 ^
5763322b ^
c912b731 ^
53172ce1 ^
c912b731 ^





5763322b ^
c912b731 ^




































6b1bd1ff ^
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200