File tree 9 files changed +3637
-3627
lines changed
9 files changed +3637
-3627
lines changed Original file line number Diff line number Diff line change @@ -142,9 +142,9 @@ MANIFEST=\
142
142
\
143
143
src\gc\gc.d \
144
144
src\gc\os.d \
145
- src\gc\gcbits .d \
146
- src\gc\gcstats .d \
147
- src\gc\gcx .d \
145
+ src\gc\bits .d \
146
+ src\gc\stats .d \
147
+ src\gc\proxy .d \
148
148
\
149
149
src\gcstub\gc.d \
150
150
\
Original file line number Diff line number Diff line change 59
59
\
60
60
src\gc\gc.d \
61
61
src\gc\os.d \
62
- src\gc\gcbits .d \
63
- src\gc\gcstats .d \
64
- src\gc\gcx .d \
62
+ src\gc\bits .d \
63
+ src\gc\stats .d \
64
+ src\gc\proxy .d \
65
65
\
66
66
src\rt\aApply.d \
67
67
src\rt\aApplyR.d \
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Contains a bitfield used by the GC.
3
3
*
4
- * Copyright: Copyright Digital Mars 2005 - 2009 .
4
+ * Copyright: Copyright Digital Mars 2005 - 2013 .
5
5
* License: <a href =" http://www.boost.org/LICENSE_1_0.txt" >Boost License 1.0</a>.
6
6
* Authors: Walter Bright, David Friedman, Sean Kelly
7
7
*/
8
8
9
- /* Copyright Digital Mars 2005 - 2009 .
9
+ /* Copyright Digital Mars 2005 - 2013 .
10
10
* Distributed under the Boost Software License, Version 1.0.
11
11
* (See accompanying file LICENSE or copy at
12
12
* http://www.boost.org/LICENSE_1_0.txt)
13
13
*/
14
- module gc.gcbits ;
14
+ module gc.bits ;
15
15
16
16
17
- private
18
- {
19
- import core.bitop ;
20
- import core.stdc.string ;
21
- import core.stdc.stdlib ;
22
- extern (C ) void onOutOfMemoryError();
23
- }
17
+ import core.bitop ;
18
+ import core.stdc.string ;
19
+ import core.stdc.stdlib ;
20
+
21
+
22
+ private extern (C) void onOutOfMemoryError();
24
23
25
24
26
25
version (DigitalMars )
You can’t perform that action at this time.
0 commit comments