Skip to content

Commit 6e5e955

Browse files
committed
Merge pull request #500 from leandro-lucarella-sociomantic/cdgc
gc: Some small cleanups and file renaming
2 parents 4eca448 + 5d427c7 commit 6e5e955

File tree

9 files changed

+3637
-3627
lines changed

9 files changed

+3637
-3627
lines changed

mak/MANIFEST

+3-3
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ MANIFEST=\
142142
\
143143
src\gc\gc.d \
144144
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 \
148148
\
149149
src\gcstub\gc.d \
150150
\

mak/SRCS

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ SRCS=\
5959
\
6060
src\gc\gc.d \
6161
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 \
6565
\
6666
src\rt\aApply.d \
6767
src\rt\aApplyR.d \

src/gc/gcbits.d src/gc/bits.d

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,25 @@
11
/**
22
* Contains a bitfield used by the GC.
33
*
4-
* Copyright: Copyright Digital Mars 2005 - 2009.
4+
* Copyright: Copyright Digital Mars 2005 - 2013.
55
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
66
* Authors: Walter Bright, David Friedman, Sean Kelly
77
*/
88

9-
/* Copyright Digital Mars 2005 - 2009.
9+
/* Copyright Digital Mars 2005 - 2013.
1010
* Distributed under the Boost Software License, Version 1.0.
1111
* (See accompanying file LICENSE or copy at
1212
* http://www.boost.org/LICENSE_1_0.txt)
1313
*/
14-
module gc.gcbits;
14+
module gc.bits;
1515

1616

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();
2423

2524

2625
version (DigitalMars)

0 commit comments

Comments
 (0)