| 83 | } |
| 84 | |
| 85 | void |
| 86 | audit_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 | |
| 99 | void |
| 100 | audit_arg_len(int len) |
nothing calls this directly
no test coverage detected