projects
/
collectd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f3f3b71
)
Handled interrupted socket reads
author
Andrew Bays
<abays@redhat.com>
Fri, 19 Oct 2018 14:05:44 +0000
(10:05 -0400)
committer
Andrew Bays
<andrew.bays@gmail.com>
Thu, 5 Sep 2019 13:21:22 +0000
(09:21 -0400)
src/connectivity.c
patch
|
blob
|
history
diff --git
a/src/connectivity.c
b/src/connectivity.c
index
ec2f7e3
..
c470c99
100644
(file)
--- a/
src/connectivity.c
+++ b/
src/connectivity.c
@@
-558,6
+558,12
@@
static int read_event(int nl, int (*msg_handler)(struct nlmsghdr *)) {
continue;
}
+ if (errno == EINTR)
+ {
+ // Interrupt, so just return
+ return 0;
+ }
+
/* Anything else is an error */
ERROR("connectivity plugin: read_event: Error recv: %d", status);
return status;