mirror of
https://github.com/bdwgc/bdwgc-rust.git
synced 2026-08-22 04:06:24 -06:00
702d3c24e57ff7cd4ba7622cd89275dae7e5ea98
b1fe062 to 8915b63 (#354)
Bumps [vendor/bdwgc](https://github.com/ivmai/bdwgc) from `b1fe062` to `8915b63`. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ivmai/bdwgc/commit/8915b63d987f6034fa53d42c3a2d8a2b978f0614"><code>8915b63</code></a> Redirect malloc_size() and _msize() in leak_detector.h</li> <li><a href="https://github.com/ivmai/bdwgc/commit/b54d7cc6b594ca9ecf2e0f48847bc15065f18efd"><code>b54d7cc</code></a> Redirect malloc_usable_size() in leak_detector.h</li> <li><a href="https://github.com/ivmai/bdwgc/commit/4ed9df221ccdebb10933720cddeb0ce7561cc48d"><code>4ed9df2</code></a> Allow GC_size() argument to be null</li> <li><a href="https://github.com/ivmai/bdwgc/commit/24f41b1f3e968d56d00d49ddc3228d593be1be39"><code>24f41b1</code></a> Update AUTHORS file (add Fabian Ruffy)</li> <li><a href="https://github.com/ivmai/bdwgc/commit/6e110ee3d17b68a5db435c291b41ab8eed2eba6a"><code>6e110ee</code></a> Allow to omit operator new/delete definitions in gc_cpp</li> <li><a href="https://github.com/ivmai/bdwgc/commit/5bcff50b0a6518b12af08524952c928679fb224a"><code>5bcff50</code></a> Fix potential GC_add_roots_inner call with an overflowed pointer (Win32)</li> <li><a href="https://github.com/ivmai/bdwgc/commit/e8fa865a997c5b48cf5da353175867b1cf995a7a"><code>e8fa865</code></a> Fix GC_is_visible for case of arg pointing exactly to object upper bound</li> <li><a href="https://github.com/ivmai/bdwgc/commit/82f1e57614cb60fb49c3b7c6f15afa99bcfbd97b"><code>82f1e57</code></a> Fix null pointer dereference in GC_is_visible if type_descr is null</li> <li><a href="https://github.com/ivmai/bdwgc/commit/375fb68d1ab3b01afdf50b69d6e72e098db9a0d5"><code>375fb68</code></a> Fix potential address overflow in GC_add_to_heap</li> <li><a href="https://github.com/ivmai/bdwgc/commit/0d1f3f8be39a95d4a81463b3b3aca6966c58309d"><code>0d1f3f8</code></a> Prevent GC_noop_sink from scanning by the collector</li> <li>Additional commits viewable in <a href="https://github.com/ivmai/bdwgc/compare/b1fe06200d716cd63d3ec321654fb4d03d610240...8915b63d987f6034fa53d42c3a2d8a2b978f0614">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%