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
e='Blame the previous revision' href='/acidbong/suckless/dwm/blame/dwm.1?id=c39df91ab9826ef134bc1484b0d19186790132f3'>^
901b3ed ^
1076f2b

901b3ed ^
0c3544d ^
2b35fae ^

a3e3f0b ^

2b35fae ^
3e06ede ^
6f20315 ^

292ccc4 ^
d4b7a9a ^
7ab8c87 ^
1836b67 ^

7ab8c87 ^
1836b67 ^

7ab8c87 ^
2b35fae ^
72655f0 ^
df74b26 ^


72655f0 ^
df74b26 ^
7ab8c87 ^
72655f0 ^
df74b26 ^
7ab8c87 ^
3af6434 ^
df74b26 ^
7ab8c87 ^
df74b26 ^
72655f0 ^
7ab8c87 ^
72655f0 ^
6499fc4 ^
7ab8c87 ^
6499fc4 ^
9066ee2 ^
7ab8c87 ^
9066ee2 ^
bab575c ^
1549faf ^
7ab8c87 ^

1549faf ^
bab575c ^
df74b26 ^
7ab8c87 ^

df74b26 ^
45aea23 ^
7ab8c87 ^
45aea23 ^
df74b26 ^
7ab8c87 ^
1549faf ^
bab575c ^
df74b26 ^
7ab8c87 ^

1549faf ^
bab575c ^
7ab8c87 ^
daae3bb ^
bab575c ^
3e06ede ^
7ab8c87 ^

4bb89e2 ^
df74b26 ^
7ab8c87 ^
2b35fae ^
0c3544d ^
0e5c819 ^
7ab8c87 ^
0e5c819 ^
4bd0d33 ^
7ab8c87 ^
4bd0d33 ^
0e5c819 ^
7ab8c87 ^
0c3544d ^
7ab8c87 ^
dc5c070 ^
4bb89e2 ^
60b3dce ^
7ab8c87 ^

4bb89e2 ^
7ab8c87 ^
5ef6ef1 ^

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