timespec.h 419 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2019 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_SYS_TIMESPEC_H_
  7. #define ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_SYS_TIMESPEC_H_
  8. #include <sys/_timespec.h>
  9. struct itimerspec {
  10. struct timespec it_interval; /* Timer interval */
  11. struct timespec it_value; /* Timer expiration */
  12. };
  13. #endif /* ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_SYS_TIMESPEC_H_ */