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
@ -912,10 +912,10 @@
|
||||
172 AUE_PRCTL STD {
|
||||
int linux_prctl(
|
||||
l_int option,
|
||||
l_int arg2,
|
||||
l_int arg3,
|
||||
l_int arg4,
|
||||
l_int arg5
|
||||
l_uintptr_t arg2,
|
||||
l_ulntptr_t arg3,
|
||||
l_uintptr_t arg4,
|
||||
l_uintptr_t arg5
|
||||
);
|
||||
}
|
||||
173 AUE_NULL STD {
|
||||
|
@ -937,10 +937,10 @@
|
||||
172 AUE_PRCTL STD {
|
||||
int linux_prctl(
|
||||
l_int option,
|
||||
l_int arg2,
|
||||
l_int arg3,
|
||||
l_int arg4,
|
||||
l_int arg5
|
||||
l_uintptr_t arg2,
|
||||
l_ulntptr_t arg3,
|
||||
l_uintptr_t arg4,
|
||||
l_uintptr_t arg5
|
||||
);
|
||||
}
|
||||
173 AUE_NULL STD {
|
||||
|
Loading…
Reference in New Issue
Block a user