summaryrefslogtreecommitdiffstats
path: root/sys/amd64/linux32
diff options
context:
space:
mode:
authordchagin <dchagin@FreeBSD.org>2016-05-21 08:01:14 +0000
committerdchagin <dchagin@FreeBSD.org>2016-05-21 08:01:14 +0000
commit4f09fcdf950067fbab212b8d79a9353092a88c13 (patch)
tree8d78b4a77d0e93027de7c0ad65c3bee61ea0c6bf /sys/amd64/linux32
parent4e1ba42e3dd20b6d2041570f6fa86db235291db2 (diff)
downloadFreeBSD-src-4f09fcdf950067fbab212b8d79a9353092a88c13.zip
FreeBSD-src-4f09fcdf950067fbab212b8d79a9353092a88c13.tar.gz
Correct an argument param of linux_sched_* system calls as a struct l_sched_param
does not defined due to it's nature. MFC after: 1 week
Diffstat (limited to 'sys/amd64/linux32')
-rw-r--r--sys/amd64/linux32/syscalls.master6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/amd64/linux32/syscalls.master b/sys/amd64/linux32/syscalls.master
index e40247e..79cd2c8 100644
--- a/sys/amd64/linux32/syscalls.master
+++ b/sys/amd64/linux32/syscalls.master
@@ -268,12 +268,12 @@
152 AUE_MLOCKALL NOPROTO { int mlockall(int how); }
153 AUE_MUNLOCKALL NOPROTO { int munlockall(void); }
154 AUE_SCHED_SETPARAM STD { int linux_sched_setparam(l_pid_t pid, \
- struct l_sched_param *param); }
+ struct sched_param *param); }
155 AUE_SCHED_GETPARAM STD { int linux_sched_getparam(l_pid_t pid, \
- struct l_sched_param *param); }
+ struct sched_param *param); }
156 AUE_SCHED_SETSCHEDULER STD { int linux_sched_setscheduler( \
l_pid_t pid, l_int policy, \
- struct l_sched_param *param); }
+ struct sched_param *param); }
157 AUE_SCHED_GETSCHEDULER STD { int linux_sched_getscheduler( \
l_pid_t pid); }
158 AUE_NULL NOPROTO { int sched_yield(void); }
OpenPOWER on IntegriCloud