Diff for /libaitsched/example/test_brut.c between versions 1.2 and 1.4

version 1.2, 2013/08/26 18:48:23 version 1.4, 2014/06/05 22:37:29
Line 4 Line 4
 #include <fcntl.h>  #include <fcntl.h>
 #include <signal.h>  #include <signal.h>
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/event.h>  
 #include <sys/stat.h>  #include <sys/stat.h>
 #include <sys/signal.h>  #include <sys/signal.h>
 #include <netinet/in.h>  #include <netinet/in.h>
Line 124  void *thr4kill(sched_task_t *arg) Line 123  void *thr4kill(sched_task_t *arg)
         read(0, blah, sizeof blah);          read(0, blah, sizeof blah);
         if (arg)          if (arg)
                 printf("never see!!! (%lx):: %s (%d == %d)\n", arg ? TASK_VAL(arg) : 0,                   printf("never see!!! (%lx):: %s (%d == %d)\n", arg ? TASK_VAL(arg) : 0, 
                                (char*) arg ? TASK_ARG(arg) : NULL, arg ? TASK_TYPE(arg) : -1, taskTHREAD);                                arg ? (char*) TASK_ARG(arg) : NULL, 
                                 arg ? TASK_TYPE(arg) : -1, taskTHREAD);
         taskExit(arg, 0);          taskExit(arg, 0);
 }  }
   

Removed from v.1.2  
changed lines
  Added in v.1.4


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>