Changeset 4055:00addfba7e7f in roaraudio for roard/signals.c


Ignore:
Timestamp:
07/15/10 15:19:40 (14 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

adding some more ROAR_INFO()s

File:
1 edited

Legend:

Unmodified
Added
Removed
  • roard/signals.c

    r3811 r4055  
    3131 
    3232void on_sig_int (int signum) { 
    33  ROAR_DBG("got SIGINT"); 
     33 ROAR_INFO("got SIGINT", ROAR_DBG_INFO_NOTICE); 
    3434 
    3535 // TODO: implement some kind of termonate/force depending on how many ^Cs we get 
     
    3838 
    3939void on_sig_term (int signum) { 
    40  ROAR_DBG("got SIGTERM (or called by SIGINT handler)"); 
     40 ROAR_INFO("got SIGTERM (or called by SIGINT handler)", ROAR_DBG_INFO_NOTICE); 
    4141 
    4242 alive = 0; 
     
    4545 
    4646void on_sig_chld (int signum) { 
    47  ROAR_DBG("got SIGCHLD"); 
     47 ROAR_INFO("got SIGCHLD", ROAR_DBG_INFO_NOTICE); 
    4848 
    4949 wait(NULL); 
     
    5353 
    5454void on_sig_usr1 (int signum) { 
    55  ROAR_DBG("got SIGUSR1"); 
     55 ROAR_INFO("got SIGUSR1", ROAR_DBG_INFO_NOTICE); 
    5656 
    5757 cleanup_listen_socket(1); 
Note: See TracChangeset for help on using the changeset viewer.