Revert "perf(core): preserve ops between snapshots (#18080)" (#18267)

This reverts commit 4b6305f4f2.
This commit is contained in:
Bartek Iwańczuk 2023-03-18 10:59:51 -04:00 committed by GitHub
parent 8af0c83519
commit d11e89127d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
54 changed files with 125 additions and 278 deletions

View file

@ -31,10 +31,7 @@ use tokio::signal::windows::CtrlC;
deno_core::extension!(
deno_signal,
ops = [op_signal_bind, op_signal_unbind, op_signal_poll],
customizer = |ext: &mut deno_core::ExtensionBuilder| {
ext.force_op_registration();
},
ops = [op_signal_bind, op_signal_unbind, op_signal_poll]
);
#[cfg(unix)]