sync: s/read()/lxc_read_nointr()/g

parent 8c7b916d
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
#include "sync.h" #include "sync.h"
#include "log.h" #include "log.h"
#include "start.h" #include "start.h"
#include "utils.h"
lxc_log_define(sync, lxc); lxc_log_define(sync, lxc);
...@@ -39,7 +40,7 @@ static int __sync_wait(int fd, int sequence) ...@@ -39,7 +40,7 @@ static int __sync_wait(int fd, int sequence)
int sync = -1; int sync = -1;
ssize_t ret; ssize_t ret;
ret = read(fd, &sync, sizeof(sync)); ret = lxc_read_nointr(fd, &sync, sizeof(sync));
if (ret < 0) { if (ret < 0) {
SYSERROR("Sync wait failure"); SYSERROR("Sync wait failure");
return -1; return -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment