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

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

Completed in 117 milliseconds