Home
last modified time | relevance | path

Searched refs:TDP_NERRNO (Results 1 – 4 of 4) sorted by relevance

/f-stack/freebsd/kern/
H A Dsubr_syscall.c140 KASSERT((td->td_pflags & TDP_NERRNO) == 0, in syscallenter()
163 if (__predict_false((td->td_pflags & TDP_NERRNO) != 0)) in syscallenter()
164 td->td_pflags &= ~TDP_NERRNO; in syscallenter()
191 if (__predict_false((td->td_pflags & TDP_NERRNO) != 0)) in syscallenter()
192 td->td_pflags &= ~TDP_NERRNO; in syscallenter()
H A Dsys_generic.c1994 td->td_pflags |= TDP_NERRNO; in kern_posix_error()
H A Dkern_sig.c1577 td->td_pflags |= TDP_NERRNO; in kern_sigsuspend()
/f-stack/freebsd/sys/
H A Dproc.h518 #define TDP_NERRNO 0x08000000 /* Last errno is already in td_errno */ macro