//////////////////////// \brief WaitForKernelObject (object) Wait on one KernelObject \param object Object to wait on \return negative error code on failure ////////////////////////
| 16 | /// \return negative error code on failure |
| 17 | ///////////////////////////// |
| 18 | inline long WaitForKernelObject(const handle_t& obj){ |
| 19 | return syscall(SYS_KERNELOBJECT_WAIT_ONE, obj); |
| 20 | } |
| 21 | |
| 22 | ///////////////////////////// |
| 23 | /// \brief WaitForKernelObject (objects, count) |