Home
last modified time | relevance | path

Searched refs:statln (Results 1 – 1 of 1) sorted by relevance

/linux-6.12.1/tools/perf/util/
Dnamespaces.c66 char *statln = NULL; in nsinfo__get_nspid() local
74 while (getline(&statln, &linesz, f) != -1) { in nsinfo__get_nspid()
76 if (strstr(statln, "Tgid:") != NULL) { in nsinfo__get_nspid()
77 *tgid = (pid_t)strtol(strrchr(statln, '\t'), NULL, 10); in nsinfo__get_nspid()
81 if (strstr(statln, "NStgid:") != NULL) { in nsinfo__get_nspid()
82 nspid = strrchr(statln, '\t'); in nsinfo__get_nspid()
88 *in_pidns = (statln + sizeof("NStgid:") - 1) != nspid; in nsinfo__get_nspid()
94 free(statln); in nsinfo__get_nspid()