mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
linux(4): Change prctl syscall definition to match Linux actual one.
Otherwise argX conversion leads to an unexpected behaviour. MFC after: 2 weeks
This commit is contained in:
parent
5eec19c8eb
commit
039e98e60c
2 changed files with 8 additions and 8 deletions
|
|
@ -912,10 +912,10 @@
|
||||||
172 AUE_PRCTL STD {
|
172 AUE_PRCTL STD {
|
||||||
int linux_prctl(
|
int linux_prctl(
|
||||||
l_int option,
|
l_int option,
|
||||||
l_int arg2,
|
l_uintptr_t arg2,
|
||||||
l_int arg3,
|
l_ulntptr_t arg3,
|
||||||
l_int arg4,
|
l_uintptr_t arg4,
|
||||||
l_int arg5
|
l_uintptr_t arg5
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
173 AUE_NULL STD {
|
173 AUE_NULL STD {
|
||||||
|
|
|
||||||
|
|
@ -937,10 +937,10 @@
|
||||||
172 AUE_PRCTL STD {
|
172 AUE_PRCTL STD {
|
||||||
int linux_prctl(
|
int linux_prctl(
|
||||||
l_int option,
|
l_int option,
|
||||||
l_int arg2,
|
l_uintptr_t arg2,
|
||||||
l_int arg3,
|
l_ulntptr_t arg3,
|
||||||
l_int arg4,
|
l_uintptr_t arg4,
|
||||||
l_int arg5
|
l_uintptr_t arg5
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
173 AUE_NULL STD {
|
173 AUE_NULL STD {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue