Browse Source

fix: tpws exit on pm-suspend

pull/5/head
bolvan 8 years ago
parent
commit
a5ff626123
  1. BIN
      binaries/armhf/tpws
  2. BIN
      binaries/mips32r1-lsb/tpws
  3. BIN
      binaries/mips32r1-msb/tpws
  4. BIN
      binaries/x86_64/tpws
  5. 1
      tpws/tpws.c

BIN
binaries/armhf/tpws

Binary file not shown.

BIN
binaries/mips32r1-lsb/tpws

Binary file not shown.

BIN
binaries/mips32r1-msb/tpws

Binary file not shown.

BIN
binaries/x86_64/tpws

Binary file not shown.

1
tpws/tpws.c

@ -323,6 +323,7 @@ int event_loop(int listen_fd) {
while (1) {
if ((num_events = epoll_wait(efd, events, MAX_EPOLL_EVENTS, -1)) == -1) {
if (errno==EINTR) continue; // system call was interrupted
perror("epoll_wait");
retval = -1;
break;

Loading…
Cancel
Save