mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-27 05:10:43 +00:00
make required changes to sys/netbsd
This commit is contained in:
parent
a734d2a6d9
commit
b91ea9289b
@ -201,17 +201,18 @@ posix_spawn_file_actions {
|
||||
fae ptr[in, posix_spawn_file_actions_entry]
|
||||
}
|
||||
|
||||
posix_spawn_file_actions_entry {
|
||||
fae_action int32
|
||||
fae_filedes int32
|
||||
fae_data fae_data_t
|
||||
}
|
||||
|
||||
fae_data_t [
|
||||
open open_t
|
||||
dup2 dup2_t
|
||||
posix_spawn_file_actions_entry [
|
||||
open posix_spawn_file_actions_entry_t[FAE_OPEN, fd, open_t]
|
||||
dup posix_spawn_file_actions_entry_t[FAE_DUP2, fd, dup2_t]
|
||||
close posix_spawn_file_actions_entry_t[FAE_CLOSE, fd, void]
|
||||
]
|
||||
|
||||
type posix_spawn_file_actions_entry_t[ACTION, FILEDES, DATA] {
|
||||
fae_action const[ACTION, int32]
|
||||
fae_filedes FILEDES
|
||||
fae_data DATA
|
||||
}
|
||||
|
||||
open_t {
|
||||
path ptr[in, string]
|
||||
oflag int32
|
||||
|
Loading…
Reference in New Issue
Block a user