-
Notifications
You must be signed in to change notification settings - Fork 0
/
cpumon.c
767 lines (727 loc) · 21.7 KB
/
cpumon.c
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
/*
Build with "gcc -O3 cpumon.c -s -Wall -Wpedantic -Wextra -o cpumon -lpthread"
Usage: cpumon [<time in seconds=[5;60]>]
*/
#include <errno.h>
#include <ctype.h>
#include <fcntl.h>
#include <libgen.h>
#include <limits.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <glob.h>
#include <sys/types.h>
// Cloned from util-linux
static inline int char_to_val(int c)
{
int cl;
cl = tolower(c);
if (c >= '0' && c <= '9')
return c - '0';
else if (cl >= 'a' && cl <= 'f')
return cl + (10 - 'a');
else
return -1;
}
// Adapted from "int cpumask_parse(const char *str, cpu_set_t *set, size_t setsize)" in util-linux
static int count_cpumask_threads(const char *str)
{
int len = strlen(str);
if (str[len - 1] == '\n')
--len;
const char *ptr = str + len - 1;
if (len > 1 && !memcmp(str, "0x", 2L))
str += 2;
unsigned threads = 0;
while (ptr >= str) {
if (*ptr == ',')
ptr--;
const char val = char_to_val(*ptr);
if (val == (char) -1)
return 0;
if (val & 1)
++threads;
if (val & 2)
++threads;
if (val & 4)
++threads;
if (val & 8)
++threads;
ptr--;
}
return threads;
}
static unsigned get_local_capacity(const char* const thread_siblings_path)
{
FILE* const thread_siblings = fopen(thread_siblings_path, "r");
if (thread_siblings == NULL)
{
fprintf(stderr, "Failed to open \"%s\", errno=%d\n", thread_siblings_path, errno);
return 0;
}
const int CPUSET_LEN = 2048 * 7;
char buffer[CPUSET_LEN];
if (fgets(buffer, CPUSET_LEN, thread_siblings) == 0)
{
fprintf(stderr, "Failed to read \"%s\", errno=%d\n", thread_siblings_path, errno);
fclose(thread_siblings);
return 0;
}
fclose(thread_siblings);
unsigned threads = count_cpumask_threads(buffer);
unsigned capacity = 0;
if (threads > 0)
{
capacity += 100;
--threads;
}
capacity -= threads * ((100 - /* HT scale */ 26) / 2);
return capacity;
}
static unsigned get_capacity()
{
glob_t result;
if (glob("/sys/devices/system/cpu/cpu[0-9]*/topology/thread_siblings", GLOB_NOSORT, NULL, &result) != 0)
{
fprintf(stderr, "Failed to get processor topology, errno=%d\n", errno);
return 0;
}
unsigned capacity = 0;
for (size_t i = 0;i != result.gl_pathc;++i)
{
const unsigned local_capacity = get_local_capacity(result.gl_pathv[i]);
capacity += local_capacity;
}
globfree(&result);
return capacity;
}
static unsigned get_local_frequency(const char* const cur_freq_path)
{
FILE* const cur_freq = fopen(cur_freq_path, "r");
if (cur_freq == NULL)
{
fprintf(stderr, "Failed to open \"%s\", errno=%d\n", cur_freq_path, errno);
return 0;
}
unsigned frequency;
if (fscanf(cur_freq, "%u", &frequency) != 1)
{
fprintf(stderr, "Failed to read \"%s\", errno=%d\n", cur_freq_path, errno);
fclose(cur_freq);
return 0;
}
fclose(cur_freq);
return frequency;
}
static unsigned get_frequency()
{
glob_t result;
if (glob("/sys/devices/system/cpu/cpu[0-9]*/cpufreq/scaling_cur_freq", GLOB_NOSORT, NULL, &result) != 0)
{
fprintf(stderr, "Failed to get processor frequency, errno=%d\n", errno);
return 0;
}
unsigned frequency = 0;
unsigned count = 0;
for (size_t i = 0;i != result.gl_pathc;++i)
{
const unsigned local_frequency = get_local_frequency(result.gl_pathv[i]);
frequency += local_frequency;
if (local_frequency != 0)
++count;
}
globfree(&result);
if (frequency == 0)
return 0;
frequency = (frequency + count - 1) / count;
return frequency;
}
static unsigned get_frequency_limit()
{
glob_t result;
if (glob("/sys/devices/system/cpu/cpu[0-9]*/cpufreq/scaling_max_freq", GLOB_NOSORT, NULL, &result) != 0)
return 0;
unsigned frequency = 0;
unsigned count = 0;
for (size_t i = 0;i != result.gl_pathc;++i)
{
const unsigned local_frequency = get_local_frequency(result.gl_pathv[i]);
frequency += local_frequency;
if (local_frequency != 0)
++count;
}
globfree(&result);
if (frequency == 0)
return 0;
frequency = (frequency + count - 1) / count;
return frequency;
}
// Matches PID_MAX_LIMIT for now
#define PID_MAX 4 * 1024 * 1024
// We probably won't hit this
#define NR_CPUS 2048
struct procinfo {
unsigned time;
unsigned diff;
const char* name;
};
static struct procinfo g_procs[PID_MAX];
static pid_t g_used_pids[PID_MAX];
static unsigned g_used_pids_count;
static unsigned long long g_cpu_subscription[NR_CPUS];
static unsigned short g_cpu_max_index;
static const unsigned MIN_TIME = 1800;
static const unsigned MIN_USED_TIME = 32;
static int read_name(const pid_t pid, char* const stat_path)
{
if (g_procs[pid].name != NULL)
return 0;
char buffer[PATH_MAX + 1];
const char* const stat_dir = dirname(stat_path);
strncpy(buffer, stat_dir, PATH_MAX);
strncat(buffer, "/cmdline", PATH_MAX);
buffer[PATH_MAX] = '\0';
const int cmdline = open(buffer, O_RDONLY);
ssize_t bytes;
if (cmdline >= 0)
{
bytes = read(cmdline, buffer, PATH_MAX);
close(cmdline);
if (bytes > 0)
{
char* ptr;
for (;;)
{
ptr = memchr(buffer, '\0', bytes - 1);
if (ptr == NULL)
{
break;
}
*ptr = ' ';
}
}
else
{
bytes = 0;
}
}
else
{
bytes = 0;
}
if (bytes == 0)
{
strncpy(buffer, stat_dir, PATH_MAX);
strncat(buffer, "/comm", PATH_MAX);
buffer[PATH_MAX] = '\0';
const int comm = open(buffer, O_RDONLY);
if (comm >= 0)
{
bytes = read(comm, buffer, PATH_MAX);
close(comm);
if (bytes > 0)
{
char* ptr;
for (;;)
{
ptr = memchr(buffer, '\0', bytes - 1);
if (ptr == NULL)
{
break;
}
*ptr = ' ';
}
if (buffer[bytes - 1] == '\n')
{
--bytes;
}
if (bytes < PATH_MAX)
{
buffer[bytes++] = '*';
}
}
else
{
bytes = 0;
}
}
}
buffer[bytes] = '\0';
g_procs[pid].name = strdup(buffer);
return 1;
}
static int get_local_time(char* const stat_path)
{
FILE* const time = fopen(stat_path, "r");
if (time == NULL)
return 0;
pid_t pid;
unsigned long utime, stime;
if (fscanf(time, "%d (%*[^)]) %*c %*d %*d %*d %*d %*d %*u %*u %*u %*u %*u %lu %lu", &pid, &utime, &stime) != 3)
{
rewind(time);
if (fscanf(time, "%d %*s %*c %*d %*d %*d %*d %*d %*u %*u %*u %*u %*u %lu %lu", &pid, &utime, &stime) != 3)
{
if (errno == ESRCH)
{
fclose(time);
return 0;
}
fprintf(stderr, "Failed to read \"%s\", errno=%d\n", stat_path, errno);
fclose(time);
return -1;
}
}
fclose(time);
if (pid >= PID_MAX)
{
fprintf(stderr, "PID %d is too large\n", pid);
return -1;
}
const unsigned total_time = utime + stime;
if (total_time == 0)
return 0;
unsigned last_total_time = g_procs[pid].time;
g_procs[pid].time = total_time;
if (last_total_time != 0)
{
unsigned delta = g_procs[pid].diff + (total_time - last_total_time);
if (delta >= MIN_USED_TIME)
{
if (read_name(pid, stat_path) != 0)
{
if (g_used_pids_count < PID_MAX)
{
g_used_pids[g_used_pids_count++] = pid;
}
else
{
fputs("Used pids table overflow", stderr);
return -1;
}
}
}
g_procs[pid].diff = delta;
return delta;
}
return 0;
}
static int get_used_time()
{
glob_t result;
if (glob("/proc/[0-9]*/stat", GLOB_NOSORT, NULL, &result) != 0)
{
fprintf(stderr, "Failed to get process list, errno=%d\n", errno);
return -1;
}
for (size_t i = 0;i != result.gl_pathc;++i)
{
int local_time = get_local_time(result.gl_pathv[i]);
if (local_time < 0)
{
globfree(&result);
return -1;
}
}
globfree(&result);
return 0;
}
static int diff_comparer(const void* const a, const void* const b)
{
return g_procs[*(const int* const)b].diff - g_procs[*(const int* const)a].diff;
}
static void dump_top(const unsigned clock_scale)
{
if (g_used_pids_count == 0)
return;
qsort(g_used_pids, g_used_pids_count, sizeof(pid_t), &diff_comparer);
const unsigned TOP_N = 5;
unsigned pids_count = g_used_pids_count;
if (pids_count > TOP_N)
pids_count = TOP_N;
for (unsigned i = 0;i < pids_count;i++)
{
const pid_t pid = g_used_pids[i];
const unsigned delta = g_procs[pid].diff;
const unsigned usage = (delta + clock_scale - 1) / clock_scale;
if (usage > 0)
{
const char* name = g_procs[pid].name;
if (name == NULL)
name = "";
printf("- system.cpu.used_by \"%u %d \\\"", usage, pid);
for (;;)
{
char chr = *name++;
if (chr == '\0')
break;
if (chr == '\n')
{
puts("\\n");
continue;
}
if (chr == '"')
putchar('\\');
putchar(chr);
}
puts("\\\"\"");
}
}
}
static const int TIME_S = 60;
static int update_schedstat(FILE* const schedstat)
{
for (;;)
{
const int SCHEDSTAT_LINE_LEN = 1024;
char buffer[SCHEDSTAT_LINE_LEN];
if (fgets(buffer, SCHEDSTAT_LINE_LEN, schedstat) == NULL)
{
if (errno == 0)
{
break;
}
fprintf(stderr, "Failed to read /proc/schedstat, errno=%d\n", errno);
return -1;
}
unsigned short cpu;
unsigned long long run_time;
unsigned long long wait_time;
if (sscanf(buffer, "cpu%hu %*u %*u %*u %*u %*u %*u %llu %llu %*u\n", &cpu, &run_time, &wait_time) != 3)
{
continue;
}
if (cpu >= NR_CPUS)
{
fprintf(stderr, "Invalid CPU index %hu\n", cpu);
return -1;
}
g_cpu_subscription[cpu] = run_time + wait_time - g_cpu_subscription[cpu];
if (g_cpu_max_index < cpu)
{
g_cpu_max_index = cpu;
}
}
return 0;
}
static int handle_subscription_loadavg(const int time_s)
{
struct timespec end;
if (clock_gettime(CLOCK_MONOTONIC_COARSE, &end) != 0)
{
fprintf(stderr, "Failed to get start time for subscription, errno=%d\n", errno);
return -1;
}
const useconds_t INTERVAL_MS = 17;
unsigned long long runnable_sum = 0;
unsigned runnable_ratio = 0;
const unsigned capacity = get_capacity();
if (capacity == 0)
return -1;
struct timespec last = end;
end.tv_sec += time_s;
end.tv_nsec -= INTERVAL_MS * 1000000;
for (unsigned step = 0;;step++)
{
FILE *loadavg = fopen("/proc/loadavg", "r");
if (loadavg == NULL)
{
fprintf(stderr, "Failed to open /proc/loadavg, errno=%d\n", errno);
return -1;
}
int runnable;
if (fscanf(loadavg, "%*f %*f %*f %d", &runnable) != 1)
{
fprintf(stderr, "Failed to read /proc/loadavg, errno=%d\n", errno);
fclose(loadavg);
return -1;
}
fclose(loadavg);
if (runnable == 0)
{
fputs("Unexpected zero runnable queue", stderr);
return -1;
}
runnable_sum += runnable - 1;
runnable_ratio++;
struct timespec now;
if (clock_gettime(CLOCK_MONOTONIC_COARSE, &now) != 0)
{
fprintf(stderr, "Failed to get current time (now) for subscription, errno=%d\n", errno);
return -1;
}
long long remaining = ((long long)(now.tv_sec - end.tv_sec)) * 1000000 + (now.tv_nsec - end.tv_nsec) / 1000;
if (remaining >= 0)
break;
long long diff = INTERVAL_MS * 1000 - ((long long)(now.tv_sec - last.tv_sec)) * 1000000 - (now.tv_nsec - last.tv_nsec) / 1000;
if (diff > 0)
{
usleep(diff);
if (clock_gettime(CLOCK_MONOTONIC_COARSE, &last) != 0)
{
fprintf(stderr, "Failed to get current time (last) for subscription, errno=%d\n", errno);
return -1;
}
}
else
{
last = now;
}
}
if (runnable_ratio != 0)
{
const unsigned subscription = ((runnable_sum * 10000 + runnable_ratio - 1) / runnable_ratio + capacity - 1) / capacity;
printf("- system.cpu.subscription %u\n", subscription);
}
return 0;
}
static int handle_frequency(const int time_s)
{
struct timespec end;
if (clock_gettime(CLOCK_MONOTONIC_COARSE, &end) != 0)
{
fprintf(stderr, "Failed to get start time for frequency, errno=%d\n", errno);
return -1;
}
const useconds_t INTERVAL_MS = 1337;
const unsigned frequency_limit = get_frequency_limit();
if (frequency_limit != 0)
printf("- system.cpu.frequency_limit %u\n", frequency_limit);
unsigned long long frequency_sum = 0;
unsigned frequency_ratio = 0;
struct timespec last = end;
end.tv_sec += time_s;
end.tv_nsec -= INTERVAL_MS * 1000000;
for (unsigned step = 0;;step++)
{
if (frequency_limit != 0)
{
const unsigned frequency = get_frequency();
if (frequency == 0)
{
return -1;
}
frequency_sum += frequency;
frequency_ratio++;
}
struct timespec now;
if (clock_gettime(CLOCK_MONOTONIC_COARSE, &now) != 0)
{
fprintf(stderr, "Failed to get current time (now) for frequency, errno=%d\n", errno);
return -1;
}
const long long remaining = ((long long)(now.tv_sec - end.tv_sec)) * 1000000 + (now.tv_nsec - end.tv_nsec) / 1000;
if (remaining >= 0)
break;
const long long diff = INTERVAL_MS * 1000 - ((long long)(now.tv_sec - last.tv_sec)) * 1000000 - (now.tv_nsec - last.tv_nsec) / 1000;
if (diff > 0)
{
usleep(diff);
if (clock_gettime(CLOCK_MONOTONIC_COARSE, &last) != 0)
{
fprintf(stderr, "Failed to get current time (last) for frequency, errno=%d\n", errno);
return -1;
}
}
else
{
last = now;
}
}
if (frequency_ratio != 0)
{
const unsigned frequency = (frequency_sum + frequency_ratio - 1) / frequency_ratio;
printf("- system.cpu.frequency %u\n", frequency);
const unsigned frequency_scale = ((frequency_sum * 100 + frequency_ratio - 1) / frequency_ratio + frequency_limit - 1) / frequency_limit;
printf("- system.cpu.frequency_scale %u\n", frequency_scale);
}
return 0;
}
static int handle_used_time(const int time_s)
{
struct timespec end;
if (clock_gettime(CLOCK_MONOTONIC_COARSE, &end) != 0)
{
fprintf(stderr, "Failed to get start time for used time, errno=%d\n", errno);
return -1;
}
const useconds_t INTERVAL_MS = MIN_TIME / 2;
struct timespec last = end;
end.tv_sec += time_s;
end.tv_nsec -= INTERVAL_MS * 1000000;
for (unsigned step = 0;;step++)
{
if (get_used_time() < 0)
{
return -1;
}
struct timespec now;
if (clock_gettime(CLOCK_MONOTONIC_COARSE, &now) != 0)
{
fprintf(stderr, "Failed to get time (now) for used time, errno=%d\n", errno);
return -1;
}
const long long remaining = ((long long)(now.tv_sec - end.tv_sec)) * 1000000 + (now.tv_nsec - end.tv_nsec) / 1000;
if (remaining >= 0)
break;
const long long diff = INTERVAL_MS * 1000 - ((long long)(now.tv_sec - last.tv_sec)) * 1000000 - (now.tv_nsec - last.tv_nsec) / 1000;
if (diff > 0)
{
usleep(diff);
if (clock_gettime(CLOCK_MONOTONIC_COARSE, &last) != 0)
{
fprintf(stderr, "Failed to get current time (last) for used time, errno=%d\n", errno);
return -1;
}
}
else
{
last = now;
}
}
if (get_used_time() < 0)
{
return -1;
}
return 0;
}
static int handle_subscription(const int time_s)
{
FILE *schedstat = fopen("/proc/schedstat", "r");
if (schedstat == NULL)
{
if (errno == ENOENT)
{
return handle_subscription_loadavg(time_s);
}
fprintf(stderr, "Failed to open /proc/schedstat, errno=%d\n", errno);
return -1;
}
if (update_schedstat(schedstat) != 0)
{
fclose(schedstat);
return -1;
}
const unsigned long long interval = 1000000ULL * time_s;
usleep(interval);
g_cpu_max_index = 0; // If CPU count is down we should not take into account old CPUs
rewind(schedstat);
if (update_schedstat(schedstat) != 0)
{
fclose(schedstat);
return -1;
}
fclose(schedstat);
const unsigned cpus = g_cpu_max_index + 1;
unsigned total_capacity = 0;
unsigned long long total_cpu_subscription = 0;
for (unsigned short cpu = 0;cpu < cpus;++cpu)
{
char path[PATH_MAX + 1];
if (snprintf(path, PATH_MAX + 1, "/sys/devices/system/cpu/cpu%hu/topology/thread_siblings", cpu) <= 0)
{
fprintf(stderr, "Failed to generate cpu%hu topology path, errno=%d\n", cpu, errno);
return -1;
}
const unsigned cpu_capacity = get_local_capacity(path);
if (cpu_capacity == 0)
{
fprintf(stderr, "Failed to get cpu%hu capacity, errno=%d\n", cpu, errno);
return -1;
}
total_capacity += cpu_capacity;
const unsigned long long cpu_subscription = g_cpu_subscription[cpu];
total_cpu_subscription += cpu_subscription;
const unsigned long long scale = interval * cpu_capacity * 1000;
const unsigned subscription = (cpu_subscription * 100 * 100 + scale - 1) / scale;
printf("- system.cpu%hu.subscription %u\n", cpu, subscription);
}
const unsigned long long total_scale = interval * total_capacity * 1000;
const unsigned total_subscription = (total_cpu_subscription * 100 * 100 + total_scale - 1) / total_scale;
printf("- system.cpu.subscription %u\n", total_subscription);
return 0;
}
static void* subscription_routine(void* time_s)
{
return (void*)(long)handle_subscription(*((const int*)time_s));
}
static void* frequency_routine(void* time_s)
{
return (void*)(long)handle_frequency(*((const int*)time_s));
}
static void* used_time_routine(void* time_s)
{
return (void*)(long)handle_used_time(*((const int*)time_s));;
}
int main(int argc, char* argv[])
{
int time_s = TIME_S;
if (argc == 2 && argv[1] != NULL)
{
time_s = atoi(argv[1]);
if (time_s < 5 || time_s > TIME_S)
{
fprintf(stderr, "The specified time %d is out of range\n", time_s);
return -1;
}
}
// Start threads and join them
pthread_t subscription_thread;
if (pthread_create(&subscription_thread, NULL, subscription_routine, &time_s) != 0)
{
fprintf(stderr, "Failed to create subscription monitoring thread, errno=%d", errno);
return -1;
}
pthread_t frequency_thread;
if (pthread_create(&frequency_thread, NULL, frequency_routine, &time_s))
{
fprintf(stderr, "Failed to create frequency monitoring thread, errno=%d", errno);
return -1;
}
pthread_t used_time_thread;
if (pthread_create(&used_time_thread, NULL, used_time_routine, &time_s))
{
fprintf(stderr, "Failed to create used time monitoring thread, errno=%d", errno);
return -1;
}
void* subscription_result;
if (pthread_join(subscription_thread, &subscription_result) != 0)
{
fprintf(stderr, "Failed to join subscription monitoring thread, errno=%d", errno);
return -1;
}
const int subscription_result_code = (int)(long)subscription_result;
if (subscription_result_code != 0)
{
return subscription_result_code;
}
void* frequency_result;
if (pthread_join(frequency_thread, &frequency_result) != 0)
{
fprintf(stderr, "Failed to join frequency monitoring thread, errno=%d", errno);
return -1;
}
const int frequency_result_code = (int)(long)frequency_result;
if (frequency_result_code != 0)
{
return frequency_result_code;
}
void* used_time_result;
if (pthread_join(used_time_thread, &used_time_result) != 0)
{
fprintf(stderr, "Failed to join used time monitoring thread, errno=%d", errno);
return -1;
}
const int used_time_result_code = (int)(long)used_time_result;
if (used_time_result_code != 0)
{
return used_time_result_code;
}
const unsigned clock_scale = sysconf(_SC_CLK_TCK) * time_s / 100;
dump_top(clock_scale);
return 0;
}