Diff for /libaitsched/example/test.c between versions 1.4.4.1 and 1.4.4.2

version 1.4.4.1, 2012/05/10 14:23:32 version 1.4.4.2, 2012/05/10 15:30:18
Line 1 Line 1
 #include <stdio.h>  #include <stdio.h>
 #include <unistd.h>  #include <unistd.h>
 #include <fcntl.h>  #include <fcntl.h>
   #include <signal.h>
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/stat.h>  #include <sys/stat.h>
 #include <sys/socket.h>  #include <sys/socket.h>
Line 46  void *once(sched_task_t *arg) Line 47  void *once(sched_task_t *arg)
         return NULL;          return NULL;
 }  }
   
   void sig(int s)
   {
           switch (s) {
                   case SIGTERM:
                           Kill++;
                           break;
           }
   }
   
 int  int
 main(int argc, char **argv)  main(int argc, char **argv)
 {  {
Line 54  main(int argc, char **argv) Line 64  main(int argc, char **argv)
         struct sockaddr_in sin;          struct sockaddr_in sin;
         struct timespec ts = { 20, 0 };          struct timespec ts = { 20, 0 };
         struct timespec p = { 0, 10000000 };          struct timespec p = { 0, 10000000 };
           struct sigaction sa;
   
           sa.sa_handler = sig;
           sigemptyset(&sa.sa_mask);
           sigaction(SIGTERM, &sa, NULL);
   
         f = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);          f = socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
         if (f == -1)          if (f == -1)

Removed from v.1.4.4.1  
changed lines
  Added in v.1.4.4.2


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