Skip to content
Closed
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.9000
Version: 1.7.0.9001
Authors@R: c(
person("Charlie", "Gao", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-0750-061X")),
Expand Down
1 change: 0 additions & 1 deletion src/aio.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ static void raio_complete_interrupt(void *arg) {
#ifdef _WIN32
UserBreak = 1;
#else
R_interrupts_pending = 1;
kill(getpid(), SIGINT);
#endif
}
Expand Down
2 changes: 0 additions & 2 deletions src/nanonext.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,6 @@ typedef struct nano_handle_s {
#if defined(NANONEXT_SIGNALS)
#ifdef _WIN32
#include <Rembedded.h>
#else
extern int R_interrupts_pending;
#endif
#endif

Expand Down
2 changes: 0 additions & 2 deletions src/sync.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,6 @@ void pipe_cb_signal(nng_pipe p, nng_pipe_ev ev, void *arg) {
#ifdef _WIN32
raise(sig);
#else
if (sig == SIGINT)
R_interrupts_pending = 1;
kill(getpid(), sig);
#endif

Expand Down
Loading