We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ada9ec commit 000e78cCopy full SHA for 000e78c
mmtk/src/api.rs
@@ -612,7 +612,7 @@ pub extern "C" fn mmtk_is_pointer_pinned(addr: Address) -> bool {
612
613
if crate::object_model::is_addr_in_immixspace(addr) {
614
handle_potential_internal_pointer!(memory_manager::is_pinned, addr)
615
- } else if !mmtk_object_is_managed_by_mmtk(addr.as_usize()) {
+ } else if mmtk_object_is_managed_by_mmtk(addr.as_usize()) {
616
debug!(
617
"Object is not in Immix space. MMTk will not move the object. We assume it is pinned."
618
);
0 commit comments