diff options
author | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-04-22 13:28:26 +0000 |
---|---|---|
committer | Evgeniy Stepanov <eugeni.stepanov@gmail.com> | 2013-04-22 13:28:26 +0000 |
commit | 1a2262e1c9a2c83bec7521f14181d087c3465988 (patch) | |
tree | e688d1a2ef7d8583bc7628f473255679eec78bb6 /compiler-rt/include/sanitizer/linux_syscall_hooks.h | |
parent | f80f9513ce4b03ed5ff412559b1dff049f8e3ff8 (diff) | |
download | bcm5719-llvm-1a2262e1c9a2c83bec7521f14181d087c3465988.tar.gz bcm5719-llvm-1a2262e1c9a2c83bec7521f14181d087c3465988.zip |
[sanitizer] Fix lint.
llvm-svn: 180012
Diffstat (limited to 'compiler-rt/include/sanitizer/linux_syscall_hooks.h')
-rw-r--r-- | compiler-rt/include/sanitizer/linux_syscall_hooks.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/compiler-rt/include/sanitizer/linux_syscall_hooks.h b/compiler-rt/include/sanitizer/linux_syscall_hooks.h index 5b0e5ecfb8e..894d5c2bebf 100644 --- a/compiler-rt/include/sanitizer/linux_syscall_hooks.h +++ b/compiler-rt/include/sanitizer/linux_syscall_hooks.h @@ -29,15 +29,19 @@ void __sanitizer_syscall_pre_rt_sigpending(void *p, size_t s); void __sanitizer_syscall_pre_getdents(int fd, void *dirp, int count); void __sanitizer_syscall_pre_getdents64(int fd, void *dirp, int count); void __sanitizer_syscall_pre_recvmsg(int sockfd, void *msg, int flags); -void __sanitizer_syscall_pre_wait4(int pid, int* status, int options, void* r); +void __sanitizer_syscall_pre_wait4(int pid, int *status, int options, void *r); void __sanitizer_syscall_pre_waitpid(int pid, int *status, int options); void __sanitizer_syscall_post_rt_sigpending(long res, void *p, size_t s); void __sanitizer_syscall_post_getdents(long res, int fd, void *dirp, int count); -void __sanitizer_syscall_post_getdents64(long res, int fd, void *dirp, int count); -void __sanitizer_syscall_post_recvmsg(long res, int sockfd, void *msg, int flags); -void __sanitizer_syscall_post_wait4(long res, int pid, int* status, int options, void* r); -void __sanitizer_syscall_post_waitpid(long res, int pid, int *status, int options); +void __sanitizer_syscall_post_getdents64(long res, int fd, void *dirp, + int count); +void __sanitizer_syscall_post_recvmsg(long res, int sockfd, void *msg, + int flags); +void __sanitizer_syscall_post_wait4(long res, int pid, int *status, int options, + void *r); +void __sanitizer_syscall_post_waitpid(long res, int pid, int *status, + int options); // And now a few syscalls we don't handle yet. |