/* * Copyright (c) 2004, Bull SA. All rights reserved. * Created by: Laurent.Vivier@bull.net * This file is licensed under the GPL license. For the full content * of this license, see the COPYING file at the top level of this * source tree. */ /* * assertion: * * aio_read() shall read aio_nbytes from the files aio_fildes into the * buffer aio_buf. * * method: * * - write 1024 bytes into a file * - read 256 bytes using aio_read */ #define _XOPEN_SOURCE 600 #include #include #include #include #include #include #include "posixtest.h" #define TNAME "aio_read/1-1.c" int main() { char tmpfname[256]; #define WBUF_SIZE 1024 char buf[WBUF_SIZE]; #define RBUF_SIZE 256 char check[RBUF_SIZE]; int fd; int i; int err; int ret; struct aiocb aiocb; #if _POSIX_ASYNCHRONOUS_IO != 200112L exit(PTS_UNSUPPORTED); #endif snprintf(tmpfname, sizeof(tmpfname), "/tmp/pts_aio_read_1_1_%d", getpid()); unlink(tmpfname); fd = open(tmpfname, O_CREAT | O_RDWR | O_EXCL, S_IRUSR | S_IWUSR); if (fd == -1) { printf(TNAME " Error at open(): %s\n", strerror(errno)); exit(PTS_UNRESOLVED); } unlink(tmpfname); for (i=0; i