Skip to content

Commit

Permalink
linuxulator: Enable separate linux_read and linux_readv in syscalls.m…
Browse files Browse the repository at this point in the history
…aster to handle user pointer
  • Loading branch information
w4123 committed Oct 29, 2024
1 parent 09f0392 commit 7e029e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sys/arm64/linux/syscalls.master
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,8 @@
l_int whence
);
}
63 AUE_NULL NOPROTO {
int read(
63 AUE_NULL STD {
int linux_read(
int fd,
char *buf,
l_size_t nbyte
Expand All @@ -395,8 +395,8 @@
l_size_t nbyte
);
}
65 AUE_READV NOPROTO {
int readv(
65 AUE_READV STD {
int linux_readv(
int fd,
struct iovec *iovp,
u_int iovcnt
Expand Down

0 comments on commit 7e029e4

Please sign in to comment.