Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/miscutils/timeout.c

    r2725 r3232  
    2828 * rewrite  14-11-2008 vda
    2929 */
     30
     31//usage:#define timeout_trivial_usage
     32//usage:       "[-t SECS] [-s SIG] PROG ARGS"
     33//usage:#define timeout_full_usage "\n\n"
     34//usage:       "Runs PROG. Sends SIG to it if it is not gone in SECS seconds.\n"
     35//usage:       "Defaults: SECS: 10, SIG: TERM."
    3036
    3137#include "libbb.h"
     
    8490        /* Here we are grandchild. Sleep, then kill grandparent */
    8591 grandchild:
    86         /* Just sleep(NUGE_NUM); kill(parent) may kill wrong process! */
     92        /* Just sleep(HUGE_NUM); kill(parent) may kill wrong process! */
    8793        while (1) {
    8894            sleep(1);
Note: See TracChangeset for help on using the changeset viewer.