forked from GitHub/bdwgc-rust
c6b5715ab1d2cbe59c76e975bb28e7dec48e4f0b
6992ccf to 09fc015 (#359)
Bumps [vendor/bdwgc](https://github.com/ivmai/bdwgc) from `6992ccf` to `09fc015`. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ivmai/bdwgc/commit/09fc015b78756cd114488fabe9be3d57ba53f444"><code>09fc015</code></a> Change type of GC_add_trace_entry arg1/2 to ptr_t</li> <li><a href="https://github.com/ivmai/bdwgc/commit/bcaee63134467d0bdba11d702373da6f66c55845"><code>bcaee63</code></a> Fix GC_print_trace_inner to print the last element of the circular buffer</li> <li><a href="https://github.com/ivmai/bdwgc/commit/caf5ea08b50358234d3e060e837cc9a03a947fee"><code>caf5ea0</code></a> Change type of client_data of GC_apply_to_all_blocks from word to pointer</li> <li><a href="https://github.com/ivmai/bdwgc/commit/106ef71f23ff97c44d20bab735239a0e185beefd"><code>106ef71</code></a> Change type of client_data of GC_iterate_free_hblks from word to a pointer</li> <li><a href="https://github.com/ivmai/bdwgc/commit/0a69e9e425579eb6349a8721753f841eea0c139a"><code>0a69e9e</code></a> Workaround 'h can be declared as pointer to const' cppcheck FPs</li> <li><a href="https://github.com/ivmai/bdwgc/commit/7f9ac5638eacdfb22c3132be0ce619d3d5e39a14"><code>7f9ac56</code></a> Fix indent of a closing curly braces in GC_apply_to_all_blocks</li> <li><a href="https://github.com/ivmai/bdwgc/commit/eb200e153b86bbf12afa9b249bd684a9ef229b77"><code>eb200e1</code></a> Eliminate 'signed/unsigned comparison' gcc warning in GC_is_visible</li> <li><a href="https://github.com/ivmai/bdwgc/commit/bea4e1e7d9d10ba52d0a8a6b8ae052e5bec8c4a4"><code>bea4e1e</code></a> Change type of len argument of GC_is_black_listed from GC_word to size_t</li> <li>See full diff in <a href="https://github.com/ivmai/bdwgc/compare/6992ccfd01fc3d04a6ad891b5fc7ac54fe3c66f4...09fc015b78756cd114488fabe9be3d57ba53f444">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%