MCPcopy Create free account
hub / github.com/F-Stack/f-stack / audit_arg_exit

Function audit_arg_exit

freebsd/security/audit/audit_arg.c:85–97  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85void
86audit_arg_exit(int status, int retval)
87{
88 struct kaudit_record *ar;
89
90 ar = currecord();
91 if (ar == NULL)
92 return;
93
94 ar->k_ar.ar_arg_exitstatus = status;
95 ar->k_ar.ar_arg_exitretval = retval;
96 ARG_SET_VALID(ar, ARG_EXIT);
97}
98
99void
100audit_arg_len(int len)

Callers

nothing calls this directly

Calls 1

currecordFunction · 0.85

Tested by

no test coverage detected