aio_suspend_time32.c 275 B

123456789
  1. #include "time32.h"
  2. #include <time.h>
  3. #include <aio.h>
  4. int __aio_suspend_time32(const struct aiocb *const cbs[], int cnt, const struct timespec32 *ts32)
  5. {
  6. return aio_suspend(cbs, cnt, ts32 ? (&(struct timespec){
  7. .tv_sec = ts32->tv_sec, .tv_nsec = ts32->tv_nsec}) : 0);
  8. }