search for: rhodo

Displaying 2 results from an estimated 2 matches for "rhodo".

Did you mean: rhod
2009 Jun 17
1
wrong results when apply+sum with missing values (NA)
Hi all, I can't compute the sum by columns to a matrix using apply() when I've got missing values (either 0 or NA)... I've got this matrix: >nafam Micro Flavo Helio Pseud Rhodo Bdello Chloro Syntro Verruco Prochloro SAR11 I 1 1 1 NA NA 1 3 NA 1 6 1 VII NA 1 2 1 NA 2 16 1 NA 12 35 XI NA NA NA NA 1 NA 2 NA 1 17 94 and want to count the tota...
2002 Sep 05
7
sshd and SIGKILL
On command: #kill -9 `cat /var/run/sshd.pid` sshd leave pid file ! sshd.c code: =============== .... /* * Arrange to restart on SIGHUP. The handler needs * listen_sock. */ signal(SIGHUP, sighup_handler); signal(SIGTERM, sigterm_handler); signal(SIGQUIT, sigterm_handler); .... =============== Missing line is : signal(SIGKILL, sigterm_handler);