Skip to content

Commit

Permalink
global hook
Browse files Browse the repository at this point in the history
  • Loading branch information
rise0chen committed Nov 27, 2024
1 parent 55a5d7e commit 09dfc9b
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/state/raw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -388,11 +388,6 @@ impl RawLua {

unsafe extern "C-unwind" fn hook_proc(state: *mut ffi::lua_State, ar: *mut ffi::lua_Debug) {
let extra = ExtraData::get(state);
if (*extra).hook_thread != state {
// Hook was destined for a different thread, ignore
ffi::lua_sethook(state, None, 0, 0);
return;
}
let result = callback_error_ext(state, extra, move |extra, _| {
let hook_cb = (*extra).hook_callback.clone();
let hook_cb = mlua_expect!(hook_cb, "no hook callback set in hook_proc");
Expand Down

0 comments on commit 09dfc9b

Please sign in to comment.