| 2847 | } |
| 2848 | |
| 2849 | static long |
| 2850 | aiocb32_fetch_error(struct aiocb *ujob) |
| 2851 | { |
| 2852 | struct aiocb32 *ujob32; |
| 2853 | |
| 2854 | ujob32 = (struct aiocb32 *)ujob; |
| 2855 | return (fuword32(&ujob32->_aiocb_private.error)); |
| 2856 | } |
| 2857 | |
| 2858 | static int |
| 2859 | aiocb32_store_status(struct aiocb *ujob, long status) |
nothing calls this directly
no test coverage detected