• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "time32.h"
2 #include <time.h>
3 #include <aio.h>
4 
__aio_suspend_time32(const struct aiocb * const cbs[],int cnt,const struct timespec32 * ts32)5 int __aio_suspend_time32(const struct aiocb *const cbs[], int cnt, const struct timespec32 *ts32)
6 {
7 	return aio_suspend(cbs, cnt, ts32 ? (&(struct timespec){
8 		.tv_sec = ts32->tv_sec, .tv_nsec = ts32->tv_nsec}) : 0);
9 }
10 
11 weak_alias(aio_suspend, aio_suspend64);
12