sleep.h 299 B

12345678910111213141516
  1. #pragma once
  2. #include <common/glib.h>
  3. #include <process/ptrace.h>
  4. #include <common/time.h>
  5. /**
  6. * @brief 休眠指定时间
  7. *
  8. * @param rqtp 指定休眠的时间
  9. * @param rmtp 返回的剩余休眠时间
  10. * @return int
  11. */
  12. int nanosleep(const struct timespec *rqtp, struct timespec *rmtp);