Skip to content

Commit

Permalink
bug fix for %read
Browse files Browse the repository at this point in the history
  • Loading branch information
SeeFlowerX committed Feb 26, 2024
1 parent 520517a commit 9c1d51a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion user/config/config_module.go
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ func (this *SyscallConfig) Parse_SyscallNames(text string) []string {
syscall_items = append(syscall_items, []string{"recvfrom", "recvmsg", "recvmmsg"}...)
case "%read":
syscall_items = append(syscall_items, []string{"read", "readv"}...)
syscall_items = append(syscall_items, []string{"pread64", "preadv", "pread2"}...)
syscall_items = append(syscall_items, []string{"pread64", "preadv", "preadv2"}...)
case "%write":
syscall_items = append(syscall_items, []string{"write", "writev"}...)
syscall_items = append(syscall_items, []string{"pwrite64", "pwritev", "pwritev2"}...)
Expand Down

0 comments on commit 9c1d51a

Please sign in to comment.