error[E0425]: cannot find function `int3` in module `x86_64::instructions::interrupts` --> src/lib.rs:55:39 | 55 | x86_64::instructions::interrupts::int3(); | ^^^^ not found in `x86_64::instructions::interrupts`
I am using x86_64 v0.1.0. I looked in both x86_64 and x86 crates.io documentation. There is no such function as int3() in them. May be they stopped support in the newer versions?
Philipp Oppermann•
Sorry, I completely forgot to push my latest x86_64 updates to crates.io. It's in x86_64 0.1.2 now, so it should work after a `cargo update`.
Rajivteja Nagipogu•
Thanks. That solved it.
Anonym•
“Handling Exceptions with Naked Functions” : link 404'd
error[E0425]: cannot find function `int3` in module `x86_64::instructions::interrupts`
--> src/lib.rs:55:39
|
55 | x86_64::instructions::interrupts::int3();
| ^^^^ not found in `x86_64::instructions::interrupts`
I am using x86_64 v0.1.0. I looked in both x86_64 and x86 crates.io documentation. There is no such function as int3() in them. May be they stopped support in the newer versions?
Sorry, I completely forgot to push my latest x86_64 updates to crates.io. It's in x86_64 0.1.2 now, so it should work after a `cargo update`.
Thanks. That solved it.