mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 18:38:33 +00:00
chore: various op cleanup (#12329)
This commit is contained in:
parent
d67e858506
commit
77a00ce1fb
26 changed files with 131 additions and 185 deletions
|
@ -224,7 +224,7 @@ pub fn op_signal_unbind(
|
|||
#[cfg(not(unix))]
|
||||
pub fn op_signal_bind(
|
||||
_state: &mut OpState,
|
||||
_args: (),
|
||||
_: (),
|
||||
_: (),
|
||||
) -> Result<(), AnyError> {
|
||||
Err(generic_error("not implemented"))
|
||||
|
@ -233,7 +233,7 @@ pub fn op_signal_bind(
|
|||
#[cfg(not(unix))]
|
||||
fn op_signal_unbind(
|
||||
_state: &mut OpState,
|
||||
_args: (),
|
||||
_: (),
|
||||
_: (),
|
||||
) -> Result<(), AnyError> {
|
||||
Err(generic_error("not implemented"))
|
||||
|
@ -242,7 +242,7 @@ fn op_signal_unbind(
|
|||
#[cfg(not(unix))]
|
||||
async fn op_signal_poll(
|
||||
_state: Rc<RefCell<OpState>>,
|
||||
_args: (),
|
||||
_: (),
|
||||
_: (),
|
||||
) -> Result<(), AnyError> {
|
||||
Err(generic_error("not implemented"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue