am 4c8caf0a: Merge "<sched.h> should offer both __sched_priority and sched_priority."

* commit '4c8caf0ad39768e614fb4c1f5ef415aab223adb2':
  <sched.h> should offer both __sched_priority and sched_priority.
This commit is contained in:
Elliott Hughes 2014-01-07 18:45:48 -08:00 committed by Android Git Automerger
commit eac00eb72b

View File

@ -39,8 +39,9 @@ __BEGIN_DECLS
#define SCHED_OTHER SCHED_NORMAL
struct sched_param {
int sched_priority;
int __sched_priority;
};
#define sched_priority __sched_priority
extern int sched_setscheduler(pid_t, int, const struct sched_param*);
extern int sched_getscheduler(pid_t);