1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +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

@ -71,7 +71,11 @@
# define CLONE_IO 0x80000000 /* Clone I/O context. */
#endif
#include <bits/types/struct_sched_param.h>
/* Data structure to describe a process' schedulability. */
struct sched_param
{
int sched_priority;
};
__BEGIN_DECLS