| 804 | } |
| 805 | |
| 806 | void |
| 807 | thread_cow_free(struct thread *td) |
| 808 | { |
| 809 | |
| 810 | if (td->td_realucred != NULL) |
| 811 | crcowfree(td); |
| 812 | if (td->td_limit != NULL) |
| 813 | lim_free(td->td_limit); |
| 814 | } |
| 815 | |
| 816 | void |
| 817 | thread_cow_update(struct thread *td) |
no test coverage detected