immediately create listener thread on process creation
[ust.git] / libustcomm / ustcomm.c
index 6044c271fa7101d585261d44b1c24f401dfd2ef4..1b6843bf7d4879df38a57c946bd095d5cfd29f22 100644 (file)
@@ -67,22 +67,11 @@ char *strdup_malloc(const char *s)
 
 static int signal_process(pid_t pid)
 {
-       int result;
-
-       result = kill(pid, UST_SIGNAL);
-       if(result == -1) {
-               PERROR("kill");
-               return -1;
-       }
-
-       /* FIXME: should wait in a better way */
-       //sleep(1);
-
        return 0;
 }
 
 int pid_is_online(pid_t pid) {
-       return kill(pid, UST_SIGNAL) != -1;
+       return 1;
 }
 
 static int send_message_fd(int fd, const char *msg)
This page took 0.038631 seconds and 4 git commands to generate.