libtool accommodation: kill, skill, snice
This commit is contained in:
parent
ab27c0050c
commit
f9ae59f5df
15
skill.c
15
skill.c
@ -46,8 +46,7 @@ static int saved_argc;
|
|||||||
|
|
||||||
static int sig_or_pri;
|
static int sig_or_pri;
|
||||||
|
|
||||||
static int program;
|
static int program = -1;
|
||||||
#define PROG_GARBAGE 0 /* keep this 0 */
|
|
||||||
#define PROG_KILL 1
|
#define PROG_KILL 1
|
||||||
#define PROG_SKILL 2
|
#define PROG_SKILL 2
|
||||||
/* #define PROG_NICE 3 */ /* easy, but the old one isn't broken */
|
/* #define PROG_NICE 3 */ /* easy, but the old one isn't broken */
|
||||||
@ -558,17 +557,13 @@ int main(int argc, const char *argv[]){
|
|||||||
tmpstr=strrchr(*argv,'/');
|
tmpstr=strrchr(*argv,'/');
|
||||||
if(tmpstr) tmpstr++;
|
if(tmpstr) tmpstr++;
|
||||||
if(!tmpstr) tmpstr=*argv;
|
if(!tmpstr) tmpstr=*argv;
|
||||||
program = PROG_GARBAGE;
|
if(strstr(tmpstr,"kill")) program = PROG_KILL;
|
||||||
if(*tmpstr=='s'){
|
if(strstr(tmpstr,"skill")) program = PROG_SKILL;
|
||||||
setpriority(PRIO_PROCESS,my_pid,-20);
|
if(strstr(tmpstr,"snice")) program = PROG_SNICE;
|
||||||
if(!strcmp(tmpstr,"snice")) program = PROG_SNICE;
|
|
||||||
if(!strcmp(tmpstr,"skill")) program = PROG_SKILL;
|
|
||||||
}else{
|
|
||||||
if(!strcmp(tmpstr,"kill")) program = PROG_KILL;
|
|
||||||
}
|
|
||||||
switch(program){
|
switch(program){
|
||||||
case PROG_SNICE:
|
case PROG_SNICE:
|
||||||
case PROG_SKILL:
|
case PROG_SKILL:
|
||||||
|
setpriority(PRIO_PROCESS,my_pid,-20);
|
||||||
skillsnice_parse(argc, argv);
|
skillsnice_parse(argc, argv);
|
||||||
/* show_lists(); */
|
/* show_lists(); */
|
||||||
iterate(); /* this is it, go get them */
|
iterate(); /* this is it, go get them */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user