Changeset 3621 in MondoRescue for branches/3.3/mindi-busybox/procps/renice.c


Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/procps/renice.c

    r3232 r3621  
    2121
    2222//usage:#define renice_trivial_usage
    23 //usage:       "{{-n INCREMENT} | PRIORITY} [[-p | -g | -u] ID...]"
     23//usage:       "[-n] PRIORITY [[-p | -g | -u] ID...]..."
    2424//usage:#define renice_full_usage "\n\n"
    25 //usage:       "Change scheduling priority for a running process\n"
    26 //usage:     "\n    -n  Adjust current nice value (smaller is faster)"
    27 //usage:     "\n    -p  Process id(s) (default)"
    28 //usage:     "\n    -g  Process group id(s)"
    29 //usage:     "\n    -u  Process user name(s) and/or id(s)"
     25//usage:       "Change scheduling priority of a running process\n"
     26//usage:     "\n    -n  Add PRIORITY to current nice value"
     27//usage:     "\n        Without -n, nice value is set to PRIORITY"
     28//usage:     "\n    -p  Process ids (default)"
     29//usage:     "\n    -g  Process group ids"
     30//usage:     "\n    -u  Process user names"
    3031
    3132#include "libbb.h"
Note: See TracChangeset for help on using the changeset viewer.