| 113 | } |
| 114 | |
| 115 | struct savefpu * |
| 116 | get_pcb_user_save_pcb(struct pcb *pcb) |
| 117 | { |
| 118 | struct thread *td; |
| 119 | |
| 120 | td = __containerof(pcb, struct thread, td_md.md_pcb); |
| 121 | return (get_pcb_user_save_td(td)); |
| 122 | } |
| 123 | |
| 124 | void * |
| 125 | alloc_fpusave(int flags) |
no test coverage detected