forked from GitHub/bdwgc-rust
efcfa202fad14108c3fc80c022b2036d69316258
5c70f7c to 8202876 (#557)
Bumps [vendor/bdwgc](https://github.com/bdwgc/bdwgc) from `5c70f7c` to `8202876`. <details> <summary>Commits</summary> <ul> <li><a href="82028767b4"><code>8202876</code></a> Move free lists initialization code out of GC_init_thread_local</li> <li><a href="58792803b6"><code>5879280</code></a> Use compiler TLS for msys2/mingw gcc-4.9 and clang-8 (or later)</li> <li><a href="593710f55f"><code>593710f</code></a> Use compiler TLS on Cygwin if clang-8 or later</li> <li><a href="933ca901fc"><code>933ca90</code></a> GH Actions: Test with -D DARWIN_PARSE_STACK on macOS/arm64</li> <li><a href="79f5fa8741"><code>79f5fa8</code></a> Support threads bounds detection by stack walking on Darwin/arm64</li> <li><a href="f9188d7798"><code>f9188d7</code></a> Replace DARWIN_DONT_PARSE_STACK to opposite DARWIN_PARSE_STACK macro</li> <li><a href="ec43144ad4"><code>ec43144</code></a> Move define DARWIN_DONT_PARSE_STACK from configure to gcconfig.h for XLC</li> <li><a href="49045ad244"><code>49045ad</code></a> Remove unneeded non-empty ASM_CPP_OPTIONS for Darwin XLC</li> <li><a href="b73696ff75"><code>b73696f</code></a> Use word type for address values in Darwin GC_FindTopOfStack</li> <li><a href="89256b2fae"><code>89256b2</code></a> Remove dead code in GC_FindTopOfStack for Darwin/arm</li> <li>Additional commits viewable in <a href="5c70f7cac7...82028767b4">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 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-rust
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%