Skip to content

Commit

Permalink
bug fix for exit read
Browse files Browse the repository at this point in the history
  • Loading branch information
SeeFlowerX committed Feb 6, 2024
1 parent 80a09c0 commit 5fbaa14
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 @@ -467,7 +467,7 @@ func (this *SyscallConfig) UpdateSyscallPoint(uprobe_point *UprobeArgs) bool {
if uprobe_point.ExitRead {
b_p.SetPointType(EBPF_SYS_ALL)
} else {
b_p.SetPointType(EBPF_SYS_EXIT)
b_p.SetPointType(EBPF_SYS_ENTER)
}
b_point_args = append(b_point_args, b_p)
}
Expand Down

0 comments on commit 5fbaa14

Please sign in to comment.