posix: rename priority in sched_param struct

Priority member in the sched_param struct should be named
sched_priority.

Fixes #13470

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2019-02-18 14:58:10 -05:00
commit 04743c9a79
7 changed files with 23 additions and 22 deletions

View file

@ -21,7 +21,7 @@ extern "C" {
#endif /* SCHED_RR */
struct sched_param {
int priority;
int sched_priority;
};
/**