This repository was archived by the owner on Oct 12, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +5
-35
lines changed Expand file tree Collapse file tree 6 files changed +5
-35
lines changed 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 - 2013 .
4
+ * Copyright: D Language Foundation 2005 - 2021 .
5
5
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
6
6
* Authors: Walter Bright, David Friedman, Sean Kelly
7
7
*/
8
-
9
- /* Copyright Digital Mars 2005 - 2013.
10
- * Distributed under the Boost Software License, Version 1.0.
11
- * (See accompanying file LICENSE or copy at
12
- * http://www.boost.org/LICENSE_1_0.txt)
13
- */
14
8
module core.internal.gc.bits ;
15
9
16
10
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Contains the garbage collector implementation.
3
3
*
4
- * Copyright: Copyright Digital Mars 2001 - 2016 .
4
+ * Copyright: D Language Foundation 2001 - 2021 .
5
5
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
6
6
* Authors: Walter Bright, David Friedman, Sean Kelly
7
7
*/
8
-
9
- /* Copyright Digital Mars 2005 - 2016.
10
- * Distributed under the Boost Software License, Version 1.0.
11
- * (See accompanying file LICENSE or copy at
12
- * http://www.boost.org/LICENSE_1_0.txt)
13
- */
14
8
module core.internal.gc.impl.conservative.gc ;
15
9
16
10
// D Programming Language Garbage Collector implementation
Original file line number Diff line number Diff line change 17
17
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
18
18
* Authors: Sean Kelly
19
19
*/
20
-
21
- /* Copyright Sean Kelly 2005 - 2016.
22
- * Distributed under the Boost Software License, Version 1.0.
23
- * (See accompanying file LICENSE or copy at
24
- * http://www.boost.org/LICENSE_1_0.txt)
25
- */
26
20
module core.internal.gc.impl.manual.gc ;
27
21
28
22
import core.gc.gcinterface ;
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Contains OS-level routines needed by the garbage collector.
3
3
*
4
- * Copyright: Copyright Digital Mars 2005 - 2013 .
4
+ * Copyright: D Language Foundation 2005 - 2021 .
5
5
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
6
6
* Authors: Walter Bright, David Friedman, Sean Kelly, Leandro Lucarella
7
7
*/
8
-
9
- /* Copyright Digital Mars 2005 - 2013.
10
- * Distributed under the Boost Software License, Version 1.0.
11
- * (See accompanying file LICENSE or copy at
12
- * http://www.boost.org/LICENSE_1_0.txt)
13
- */
14
8
module core.internal.gc.os ;
15
9
16
10
Original file line number Diff line number Diff line change 1
1
/**
2
2
* A sorted array to quickly lookup pools.
3
3
*
4
- * Copyright: Copyright Digital Mars 2001 -.
4
+ * Copyright: D Language Foundation 2001 - 2021
5
5
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
6
6
* Authors: Walter Bright, David Friedman, Sean Kelly, Martin Nowak
7
7
*/
Original file line number Diff line number Diff line change 1
1
/**
2
2
* Contains the external GC interface.
3
3
*
4
- * Copyright: Copyright Digital Mars 2005 - 2016 .
4
+ * Copyright: D Language Foundation 2005 - 2021 .
5
5
* License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
6
6
* Authors: Walter Bright, Sean Kelly
7
7
*/
8
-
9
- /* Copyright Digital Mars 2005 - 2016.
10
- * Distributed under the Boost Software License, Version 1.0.
11
- * (See accompanying file LICENSE or copy at
12
- * http://www.boost.org/LICENSE_1_0.txt)
13
- */
14
8
module core.internal.gc.proxy ;
15
9
16
10
import core.internal.gc.impl.proto.gc ;
You can’t perform that action at this time.
0 commit comments