sched_getcpu: input and sample outputs

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2020-04-17 05:00:04 +00:00
parent 1300b25e29
commit cc78fe7d81
2 changed files with 25 additions and 1 deletions

View File

@@ -12,7 +12,7 @@
void* main_thread(void *arg) {
(void)arg;
printf("sched_getcpu = %d\n", sched_getcpu());
printf("%d\n", sched_getcpu());
return NULL;
}