linux(4): Modify ioprio syscalls to match Linux

MFC after:		1 month
This commit is contained in:
Dmitry Chagin
2023-08-04 16:03:55 +03:00
parent f0ab805200
commit 1c83154e49
4 changed files with 44 additions and 16 deletions
+11 -4
View File
@@ -1465,11 +1465,18 @@
250 AUE_NULL STD { 250 AUE_NULL STD {
int linux_keyctl(void); int linux_keyctl(void);
} }
251 AUE_NULL STD { 251 AUE_SETPRIORITY STD {
int linux_ioprio_set(void); int linux_ioprio_set(
l_int which,
l_int who,
l_int ioprio
);
} }
252 AUE_NULL STD { 252 AUE_GETPRIORITY STD {
int linux_ioprio_get(void); int linux_ioprio_get(
l_int which,
l_int who
);
} }
253 AUE_NULL STD { 253 AUE_NULL STD {
int linux_inotify_init(void); int linux_inotify_init(void);
+11 -4
View File
@@ -1577,11 +1577,18 @@
int linux_keyctl(void); int linux_keyctl(void);
} }
; Linux 2.6.13: ; Linux 2.6.13:
289 AUE_NULL STD { 289 AUE_SETPRIORITY STD {
int linux_ioprio_set(void); int linux_ioprio_set(
l_int which,
l_int who,
l_int ioprio
);
} }
290 AUE_NULL STD { 290 AUE_GETPRIORITY STD {
int linux_ioprio_get(void); int linux_ioprio_get(
l_int which,
l_int who
);
} }
291 AUE_NULL STD { 291 AUE_NULL STD {
int linux_inotify_init(void); int linux_inotify_init(void);
+11 -4
View File
@@ -187,11 +187,18 @@
l_ulong arg l_ulong arg
); );
} }
30 AUE_NULL STD { 30 AUE_SETPRIORITY STD {
int linux_ioprio_set(void); int linux_ioprio_set(
l_int which,
l_int who,
l_int ioprio
);
} }
31 AUE_NULL STD { 31 AUE_GETPRIORITY STD {
int linux_ioprio_get(void); int linux_ioprio_get(
l_int which,
l_int who
);
} }
32 AUE_FLOCK NOPROTO { 32 AUE_FLOCK NOPROTO {
int flock( int flock(
+11 -4
View File
@@ -1594,11 +1594,18 @@
int linux_keyctl(void); int linux_keyctl(void);
} }
; Linux 2.6.13: ; Linux 2.6.13:
289 AUE_NULL STD { 289 AUE_SETPRIORITY STD {
int linux_ioprio_set(void); int linux_ioprio_set(
l_int which,
l_int who,
l_int ioprio
);
} }
290 AUE_NULL STD { 290 AUE_GETPRIORITY STD {
int linux_ioprio_get(void); int linux_ioprio_get(
l_int which,
l_int who
);
} }
291 AUE_NULL STD { 291 AUE_NULL STD {
int linux_inotify_init(void); int linux_inotify_init(void);