drivers/timers_unix/timers_unix.c
changeset 663 70fc3603e36f
parent 631 08b6b903f84a
child 793 72e9e1064432
equal deleted inserted replaced
662:aad111ad0018 663:70fc3603e36f
    99  * @param port
    99  * @param port
   100  */
   100  */
   101 void* unixtimer_canReceiveLoop(void* port)
   101 void* unixtimer_canReceiveLoop(void* port)
   102 {
   102 {
   103     /*get signal*/
   103     /*get signal*/
   104     if(signal(SIGTERM, canReceiveLoop_signal) == SIG_ERR) {
   104   	//  if(signal(SIGTERM, canReceiveLoop_signal) == SIG_ERR) {
   105 		perror("signal()");
   105 	//		perror("signal()");
   106 	}
   106 	//}
   107     unixtimer_ReceiveLoop_task_proc((CAN_PORT)port);
   107     unixtimer_ReceiveLoop_task_proc((CAN_PORT)port);
   108 
   108 
   109     return NULL;
   109     return NULL;
   110 }
   110 }
   111 
   111