blob: 5520220b3115d884d86a68cb633fd00def21c7eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/* vi: set sw=4 ts=4: */
/*
* Utility routines.
*
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
*
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
*/
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <stdlib.h>
#include "libbb.h"
/* find_pid_by_name()
*
* Modified by Vladimir Oleynik for use with libbb/procps.c
* This finds the pid of the specified process.
* Currently, it's implemented by rummaging through
* the proc filesystem.
*
* Returns a list of all matching PIDs
* It is the caller's duty to free the returned pidlist.
*/
long* find_pid_by_name( const char* pidName)
{
long* pidList;
int i=0;
procps_status_t * p;
pidList = xmalloc(sizeof(long));
while ((p = procps_scan(0)) != 0)
{
if (strncmp(p->short_cmd, pidName, COMM_LEN-1) == 0) {
pidList=xrealloc( pidList, sizeof(long) * (i+2));
pidList[i++]=p->pid;
}
}
pidList[i] = i==0 ? -1 : 0;
return pidList;
}
long *pidlist_reverse(long *pidList)
{
int i=0;
while (pidList[i] > 0 && ++i);
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;
}
|