fn main() {
let val = 0;
unsafe { foo(&val) }
}
extern "C" {
pub fn foo(val: *const u32);
}
Implementation in C:
void foo(unsigned* val) { *val=1; }
Of course, I should pass val: *mut u32
, but what happens in the case that I pass an immutable reference? What compiler rules apply? Does val
remain unchanged even though I'm passing a pointer to the local variable?
I'd say undefined behavior:
And this might include:
val
after the FFI-call it might ignore the writes you did (e.g. cached the value in a register or due to constant propagation)