| 1260 | } |
| 1261 | |
| 1262 | int |
| 1263 | is_fpu_kern_thread(u_int flags) |
| 1264 | { |
| 1265 | |
| 1266 | if ((curthread->td_pflags & TDP_KTHREAD) == 0) |
| 1267 | return (0); |
| 1268 | return ((curpcb->pcb_flags & PCB_KERNFPU_THR) != 0); |
| 1269 | } |
| 1270 | |
| 1271 | /* |
| 1272 | * FPU save area alloc/free/init utility routines |
no outgoing calls
no test coverage detected