| 123 | } |
| 124 | |
| 125 | void |
| 126 | audit_arg_atfd2(int atfd) |
| 127 | { |
| 128 | struct kaudit_record *ar; |
| 129 | |
| 130 | ar = currecord(); |
| 131 | if (ar == NULL) |
| 132 | return; |
| 133 | |
| 134 | ar->k_ar.ar_arg_atfd2 = atfd; |
| 135 | ARG_SET_VALID(ar, ARG_ATFD2); |
| 136 | } |
| 137 | |
| 138 | void |
| 139 | audit_arg_fd(int fd) |
nothing calls this directly
no test coverage detected