Lines Matching defs:proc
41 char path[] = "/proc/self/ns/time_for_children";
73 FILE *proc;
75 proc = fopen("/proc/uptime", "r");
76 if (proc == NULL) {
77 pr_perror("Unable to open /proc/uptime");
81 if (fscanf(proc, "%lu.%02lu", &up_sec, &up_nsec) != 2) {
86 pr_err("failed to parse /proc/uptime");
89 fclose(proc);
116 pr_fail("uptime in /proc/uptime: old %ld, new %ld [%ld]",
122 ksft_test_result_pass("Passed for /proc/uptime\n");