Home
last modified time | relevance | path

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

/f-stack/freebsd/security/audit/
H A Daudit.c607 KASSERT((td->td_pflags & TDP_AUDITREC) == 0, in audit_syscall_enter()
698 td->td_pflags |= TDP_AUDITREC; in audit_syscall_enter()
731 td->td_pflags &= ~TDP_AUDITREC; in audit_syscall_exit()
786 KASSERT((td->td_pflags & TDP_AUDITREC) == 0, in audit_thread_free()
H A Daudit.h157 #define AUDITING_TD(td) (__predict_false((td)->td_pflags & TDP_AUDITREC))
H A Daudit_syscalls.c104 td->td_pflags |= TDP_AUDITREC; in sys_audit()
/f-stack/freebsd/sys/
H A Dproc.h515 #define TDP_AUDITREC 0x01000000 /* Audit record pending on thread */ macro