Searched refs:tidptr (Results 1 – 3 of 3) sorted by relevance
/openbsd/sys/kern/ |
H A D | kern_fork.c | 539 thread_fork(struct proc *curp, void *stack, void *tcb, pid_t *tidptr, in thread_fork() argument 606 if (tidptr != NULL) { in thread_fork() 607 if (copyout(&tid, tidptr, sizeof(tid))) in thread_fork()
|
/openbsd/gnu/llvm/compiler-rt/include/sanitizer/ |
H A D | linux_syscall_hooks.h | 362 #define __sanitizer_syscall_pre_set_tid_address(tidptr) \ argument 363 __sanitizer_syscall_pre_impl_set_tid_address((long)(tidptr)) 364 #define __sanitizer_syscall_post_set_tid_address(res, tidptr) \ argument 365 __sanitizer_syscall_post_impl_set_tid_address(res, (long)(tidptr)) 2220 void __sanitizer_syscall_pre_impl_set_tid_address(long tidptr); 2221 void __sanitizer_syscall_post_impl_set_tid_address(long res, long tidptr);
|
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_syscalls.inc | 716 PRE_SYSCALL(set_tid_address)(void *tidptr) {} 718 POST_SYSCALL(set_tid_address)(long res, void *tidptr) { 720 if (tidptr) 721 POST_WRITE(tidptr, sizeof(int));
|