summary refs log tree commit diff
path: root/rvnit.c
diff options
context:
space:
mode:
Diffstat (limited to 'rvnit.c')
-rw-r--r--rvnit.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/rvnit.c b/rvnit.c
index e13867f..729d831 100644
--- a/rvnit.c
+++ b/rvnit.c
@@ -4,7 +4,6 @@
 #include <sys/wait.h>
 #include <sys/socket.h>
 #include <sys/un.h>
-//#include <sys/stat.h>
 
 #include <ctype.h>
 #include <dirent.h>
@@ -279,8 +278,6 @@ logger_loop(void* ignored)
 {
 	(void)ignored;
 
-//	sigaction(SIGUSR2, &(struct sigaction){.sa_handler=on_sigusr2}, 0);
-
 	while (1) {
 		struct pollfd fds[MAX_SV];
 		nfds_t nfds = 0;
@@ -297,7 +294,6 @@ logger_loop(void* ignored)
 			}
 		}
 
-//		printf("waiting for %d logs\n", (int)nfds);
 		int n = poll(fds, nfds, -1);
 		if (n < 0)
 			continue;