mirror of
https://github.com/bdwgc/bdwgc-rust.git
synced 2026-08-22 12:16:24 -06:00
bf5f0a24a76681f86b9f959e669d05c9432a78c5
f791770 to 26a0222 (#341)
Bumps [vendor/bdwgc](https://github.com/ivmai/bdwgc) from `f791770` to `26a0222`. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ivmai/bdwgc/commit/26a0222e4df2ea4aa6169fef789573a24d0c0525"><code>26a0222</code></a> GH Actions: Remove workaround for illegal instruction in GC_clear_stack</li> <li><a href="https://github.com/ivmai/bdwgc/commit/ad8dcedc72cb63a52538b923f4ba68394c42d68c"><code>ad8dced</code></a> Prevent redirected malloc call from a garbage collection routine</li> <li><a href="https://github.com/ivmai/bdwgc/commit/83c77815893d233cc72779c2352caa299d387064"><code>83c7781</code></a> Add assertion that GC_high_water is initialized in GC_clear_stack</li> <li><a href="https://github.com/ivmai/bdwgc/commit/723972b27b1d9a6809e4ce641026a1556147ce48"><code>723972b</code></a> Reformat code of GC_save_callers()</li> <li><a href="https://github.com/ivmai/bdwgc/commit/fad4a8a58c0b364c70454c4fdeef739627cd0ee5"><code>fad4a8a</code></a> Refine comment about call stack saving and gcc option for i686 in os_dep.c</li> <li><a href="https://github.com/ivmai/bdwgc/commit/c2497befb7ffff024a8d81c305d1d330fe052bb6"><code>c2497be</code></a> Update information and better describe call stack saving support</li> <li><a href="https://github.com/ivmai/bdwgc/commit/b13efe52cf1ac25f990d31d92ca515f7df334090"><code>b13efe5</code></a> Better document and simplify define CAN_SAVE_CALL_ARGS in gcconfig.h</li> <li><a href="https://github.com/ivmai/bdwgc/commit/f090b0438e082d2d822c5021aaaf63e1657c4797"><code>f090b04</code></a> Uniformly name Linux/i686 and Linux/x86_64 in documentation</li> <li><a href="https://github.com/ivmai/bdwgc/commit/ddd44801e4653b2686b29c6fd5b8f5d7dc28970b"><code>ddd4480</code></a> Disable backtrace saving at garbage collections if DONT_SAVE_TO_LAST_STACK</li> <li><a href="https://github.com/ivmai/bdwgc/commit/5468658935b4060398e4813723b716bca05511a3"><code>5468658</code></a> Call GC_free_profiler_hook() in GC_disclaim_and_reclaim</li> <li>See full diff in <a href="https://github.com/ivmai/bdwgc/compare/f791770d6062b38e9bd9908fd61630962a31c132...26a0222e4df2ea4aa6169fef789573a24d0c0525">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
96.8%
Shell
3.2%