1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00

Revert "Fix sched_param"

This reverts commit 783c482030 which
accidentaly flew out.
This commit is contained in:
Samuel Thibault
2018-04-19 00:09:58 +02:00
parent 3dc0814cba
commit c15f10ee78
9 changed files with 17 additions and 66 deletions

View File

@@ -29,6 +29,10 @@
#define SCHED_FIFO 1
#define SCHED_RR 2
#include <bits/types/struct_sched_param.h>
/* Data structure to describe a process' schedulability. */
struct sched_param
{
int sched_priority;
};
#endif /* bits/sched.h */