2001-03-17 04:17:14 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Utility routines.
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-03-17 04:17:14 +05:30
|
|
|
*
|
2005-10-06 17:40:48 +05:30
|
|
|
* Licensed under the GPL v2, see the file LICENSE in this tarball.
|
2001-03-17 04:17:14 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "libbb.h"
|
|
|
|
|
|
|
|
/* find_pid_by_name()
|
2004-03-15 13:59:22 +05:30
|
|
|
*
|
2002-10-22 17:51:15 +05:30
|
|
|
* Modified by Vladimir Oleynik for use with libbb/procps.c
|
2001-03-17 04:17:14 +05:30
|
|
|
* This finds the pid of the specified process.
|
2004-03-15 13:59:22 +05:30
|
|
|
* Currently, it's implemented by rummaging through
|
2001-03-17 04:17:14 +05:30
|
|
|
* the proc filesystem.
|
|
|
|
*
|
|
|
|
* Returns a list of all matching PIDs
|
2005-10-06 17:40:48 +05:30
|
|
|
* It is the caller's duty to free the returned pidlist.
|
2001-03-17 04:17:14 +05:30
|
|
|
*/
|
2002-10-22 17:51:15 +05:30
|
|
|
extern long* find_pid_by_name( const char* pidName)
|
2001-03-17 04:17:14 +05:30
|
|
|
{
|
2002-10-22 17:51:15 +05:30
|
|
|
long* pidList;
|
2001-03-17 04:17:14 +05:30
|
|
|
int i=0;
|
2002-10-22 17:51:15 +05:30
|
|
|
procps_status_t * p;
|
2001-03-17 04:17:14 +05:30
|
|
|
|
2002-10-22 17:51:15 +05:30
|
|
|
pidList = xmalloc(sizeof(long));
|
2005-10-06 17:40:48 +05:30
|
|
|
while ((p = procps_scan(0)) != 0)
|
2005-05-03 11:55:50 +05:30
|
|
|
{
|
2003-08-06 13:52:10 +05:30
|
|
|
if (strncmp(p->short_cmd, pidName, COMM_LEN-1) == 0) {
|
2001-12-06 20:22:32 +05:30
|
|
|
pidList=xrealloc( pidList, sizeof(long) * (i+2));
|
2002-10-22 17:51:15 +05:30
|
|
|
pidList[i++]=p->pid;
|
2001-03-17 04:17:14 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-22 17:51:15 +05:30
|
|
|
pidList[i] = i==0 ? -1 : 0;
|
2001-03-17 04:17:14 +05:30
|
|
|
return pidList;
|
|
|
|
}
|
|
|
|
|
2005-10-06 17:40:48 +05:30
|
|
|
extern long *pidlist_reverse(long *pidList)
|
|
|
|
{
|
|
|
|
int i=0;
|
2005-10-07 21:14:37 +05:30
|
|
|
while (pidList[i] > 0 && ++i);
|
2005-10-06 17:40:48 +05:30
|
|
|
if ( i-- > 0) {
|
|
|
|
long k;
|
|
|
|
int j;
|
|
|
|
for (j = 0; i > j; i--, j++) {
|
|
|
|
k = pidList[i];
|
|
|
|
pidList[i] = pidList[j];
|
|
|
|
pidList[j] = k;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return pidList;
|
|
|
|
}
|
|
|
|
|
2001-03-17 04:17:14 +05:30
|
|
|
/* END CODE */
|
|
|
|
/*
|
|
|
|
Local Variables:
|
|
|
|
c-file-style: "linux"
|
|
|
|
c-basic-offset: 4
|
|
|
|
tab-width: 4
|
|
|
|
End:
|
|
|
|
*/
|