diff options
| author | root <root> | 2007-11-03 22:10:39 +0000 | 
|---|---|---|
| committer | root <root> | 2007-11-03 22:10:39 +0000 | 
| commit | 36ed1953891a670e15f5e113491596630f21676c (patch) | |
| tree | 4d90c5d579adec56ab460557ee52e0505b869d20 /ev.c | |
| parent | 228b0b302ab0857b23efad5a8b2429de2c0ccc00 (diff) | |
*** empty log message ***
Diffstat (limited to 'ev.c')
| -rw-r--r-- | ev.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| @@ -489,6 +489,7 @@ siginit (EV_P)    ev_io_set (&sigev, sigpipe [0], EV_READ);    ev_io_start (&sigev); +  ev_unref (EV_A); /* child watcher should not keep loop alive */  }  /*****************************************************************************/ @@ -641,6 +642,7 @@ ev_init (EV_P_ int methods)            ev_signal_init (&childev, childcb, SIGCHLD);            ev_set_priority (&childev, EV_MAXPRI);            ev_signal_start (EV_A_ &childev); +          ev_unref (EV_A); /* child watcher should not keep loop alive */  #endif          }      } @@ -913,7 +915,6 @@ ev_loop (EV_P_ int flags)          queue_events (EV_A_ (W *)checks, checkcnt, EV_CHECK);        call_pending (EV_A); -      printf ("activecnt %d\n", activecnt);//D      }    while (activecnt && !loop_done); | 
