hilink_open_timer_adapter.h 445 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) Huawei Technologies Co., Ltd. 2019-2021. All rights reserved.
  3. * Description: 系统适配层定时器接口(需设备厂商实现)
  4. */
  5. #ifndef HILINK_OPEN_TIMER_ADAPTER_H
  6. #define HILINK_OPEN_TIMER_ADAPTER_H
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. /*
  11. * 将进程休眠milliSecond指定的时间
  12. * milliSecond为休眠的毫秒数
  13. * 返回 0表示成功,其他表示返回失败
  14. */
  15. int HILINK_MilliSleep(unsigned long milliSecond);
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif