- commentary typo fix
This commit is contained in:
parent
665eaff3b1
commit
4acb1b0793
@ -88,7 +88,7 @@ pid_t* FAST_FUNC find_pid_by_name(const char *procName)
|
|||||||
if (comm_match(p, procName)
|
if (comm_match(p, procName)
|
||||||
/* or we require argv0 to match (essential for matching reexeced /proc/self/exe)*/
|
/* or we require argv0 to match (essential for matching reexeced /proc/self/exe)*/
|
||||||
|| (p->argv0 && strcmp(bb_basename(p->argv0), procName) == 0)
|
|| (p->argv0 && strcmp(bb_basename(p->argv0), procName) == 0)
|
||||||
/* TOOD: we can also try /proc/NUM/exe link, do we want that? */
|
/* TODO: we can also try /proc/NUM/exe link, do we want that? */
|
||||||
) {
|
) {
|
||||||
pidList = xrealloc_vector(pidList, 2, i);
|
pidList = xrealloc_vector(pidList, 2, i);
|
||||||
pidList[i++] = p->pid;
|
pidList[i++] = p->pid;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user