forked from GitHub/bdwgc-rust
a1b73588ec17d3fa18445cbc8ab1e75a64ffcd60
0b71b72 to 6dcc828 (#400)
Bumps [vendor/bdwgc](https://github.com/ivmai/bdwgc) from `0b71b72` to `6dcc828`. <details> <summary>Commits</summary> <ul> <li><a href="6dcc828d2a"><code>6dcc828</code></a> Fix assertion violation about GC_mark_lock_holder in fork_child_proc</li> <li><a href="43f024a939"><code>43f024a</code></a> Avoid code duplication in HEURISTIC1/STACK_GRAN dummy macros definition</li> <li><a href="70d3ae2c7a"><code>70d3ae2</code></a> Rename static GC_*_main_stack_base functions to os_main_stackbottom</li> <li><a href="40f6575cb2"><code>40f6575</code></a> Fix a typo in comment of HP/UX GC_get_register_stack_base</li> <li><a href="fea5c52203"><code>fea5c52</code></a> Fix 'None of HEURISTIC* and *STACKBOTTOM defined' error for Haiku</li> <li><a href="8ce8ad414e"><code>8ce8ad4</code></a> Force use of spin locks to improve performance on Haiku</li> <li><a href="30b68326e8"><code>30b6832</code></a> Do not search for data start using GC_find_limit on Haiku</li> <li><a href="8f813cef5e"><code>8f813ce</code></a> Fix missing underscore in 'Atomic_ops' name in configure and README</li> <li><a href="a6f4cb0588"><code>a6f4cb0</code></a> Fix all broken URLs in documentation (as of Nov 2024)</li> <li><a href="2628bdb0aa"><code>2628bdb</code></a> Remove 'zig nightly version' requirement from README</li> <li>See full diff in <a href="0b71b72d1f...6dcc828d2a">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bdwgc-alloc
GlobalAlloc implementation for bdwgc, the conservative garbage collector.
This crate is for use cases in which developers need to integrate bdwgc into their programs written in Rust (e.g. writing a runtime library in Rust for their own programming language whose GC is done by bdwgc.)
Usage
See examples directory.
By default bdwgc is built with autotools. To build with cmake, enable the cmake feature:
cargo build --no-default-features --features cmake
License
Languages
Rust
81.8%
Nix
15.5%
Shell
2.7%