Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: nanonext
Title: NNG (Nanomsg Next Gen) Lightweight Messaging Library
Version: 1.7.0.9003
Version: 1.7.0.9004
Authors@R: c(
person("Charlie", "Gao", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-0750-061X")),
Expand Down
7 changes: 0 additions & 7 deletions src/aio.c
Original file line number Diff line number Diff line change
Expand Up @@ -456,13 +456,6 @@ SEXP rnng_aio_stop(SEXP x) {
if (NANO_PTR_CHECK(coreaio, nano_AioSymbol)) break;
nano_aio *aiop = (nano_aio *) NANO_PTR(coreaio);
nng_aio_stop(aiop->aio);
// See #194, this is to reset the R interrupts state after an interrupt
// requested by `stop_request()` has already triggered
#ifdef _WIN32
UserBreak = 0;
#else
R_interrupts_pending = 0;
#endif
break;
case VECSXP: ;
const R_xlen_t xlen = Rf_xlength(x);
Expand Down
Loading