libc: add sched.h and signal.h headers

This commit is contained in:
2026-05-30 10:04:46 +01:00
parent da7b60ca53
commit 0f0cc44f7c
2 changed files with 71 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#ifndef SCHED_H_
#define SCHED_H_
#include <time.h>
struct sched_param {
int sched_priority;
int sched_ss_low_priority;
struct timespec sched_ss_repl_period;
struct timespec sched_ss_init_budget;
int sched_ss_max_repl;
};
#endif