forked from GitHub/bdwgc-rust
1516e2ef074f2a23b5b737ff06aa9f208624e78b
8915b63 to 9885233 (#355)
Bumps [vendor/bdwgc](https://github.com/ivmai/bdwgc) from `8915b63` to `9885233`. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ivmai/bdwgc/commit/98852332d32c5d2d50dfbc4cd5172431112e0516"><code>9885233</code></a> Fix 'scope of source var can be reduced' cppcheck warning in dbg_mlc.c</li> <li><a href="https://github.com/ivmai/bdwgc/commit/f985d639aac63980078fce3ab23013f4bfdc7eb0"><code>f985d63</code></a> Eliminate 'different const qualifiers' MSVC warnings in GC_noop1_ptr calls</li> <li><a href="https://github.com/ivmai/bdwgc/commit/85d103cfe7ac7a0d634030613f26379a415532f6"><code>85d103c</code></a> Remove no longer needed no-volatile cast in GC_get_next_stack</li> <li><a href="https://github.com/ivmai/bdwgc/commit/60400890d45053a3957ae2f54f4b73db79a1880c"><code>6040089</code></a> Define CAST_THRU_UINTPTR and CAST_AWAY_VOLATILE_PVOID internal macros</li> <li><a href="https://github.com/ivmai/bdwgc/commit/cab22162e2aa65c60de43a0035f143e8b7d221d9"><code>cab2216</code></a> Fix a typo in comment of GC_register_data_segments</li> <li><a href="https://github.com/ivmai/bdwgc/commit/b9ad46f61c766c1a34ab1dc613e33897a6559153"><code>b9ad46f</code></a> Define GC_CAST_AWAY_CONST_PVOID() public macro</li> <li><a href="https://github.com/ivmai/bdwgc/commit/f68db211d8eb42b9b822911462c3e89765ddd2a1"><code>f68db21</code></a> Define GC_uintptr_t unconditionally in gc.h</li> <li><a href="https://github.com/ivmai/bdwgc/commit/db759a51afdee415dc43b15138c14adef0938224"><code>db759a5</code></a> Eliminate 'cast signed to bigger unsigned' CSA warnings in GC_find_limit</li> <li><a href="https://github.com/ivmai/bdwgc/commit/636a478d5e148fe8c35092ae25a909851135cfc5"><code>636a478</code></a> Define COVERT_DATAFLOW_P() internal macro</li> <li><a href="https://github.com/ivmai/bdwgc/commit/f9b4b19078f1dacf4f724f3b20ab60188e3f04f9"><code>f9b4b19</code></a> Define GC_noop1_ptr API function</li> <li>See full diff in <a href="https://github.com/ivmai/bdwgc/compare/8915b63d987f6034fa53d42c3a2d8a2b978f0614...98852332d32c5d2d50dfbc4cd5172431112e0516">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%