diff options
author | Jakob Kaivo <jkk@ung.org> | 2023-11-14 12:12:10 -0500 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2023-11-14 12:12:10 -0500 |
commit | 920746cbb5d18d8aef284d3fe71a57cd52509117 (patch) | |
tree | 11b4436a58c077f36b1236f0c702af00c763e3f6 /src/aio | |
parent | f23336fbc3148105c42eebfa44a22d1164828108 (diff) |
disable all functions; will strategically reenable them as tested
Diffstat (limited to 'src/aio')
-rw-r--r-- | src/aio/aio_cancel.c | 5 | ||||
-rw-r--r-- | src/aio/aio_error.c | 5 | ||||
-rw-r--r-- | src/aio/aio_fsync.c | 5 | ||||
-rw-r--r-- | src/aio/aio_read.c | 5 | ||||
-rw-r--r-- | src/aio/aio_return.c | 5 | ||||
-rw-r--r-- | src/aio/aio_suspend.c | 5 | ||||
-rw-r--r-- | src/aio/aio_write.c | 5 | ||||
-rw-r--r-- | src/aio/lio_listio.c | 5 | ||||
-rw-r--r-- | src/aio/struct_aiocb.c | 5 |
9 files changed, 45 insertions, 0 deletions
diff --git a/src/aio/aio_cancel.c b/src/aio/aio_cancel.c index faddae7f..f4a93619 100644 --- a/src/aio/aio_cancel.c +++ b/src/aio/aio_cancel.c @@ -1,3 +1,5 @@ +#if 0 + #include <aio.h> int aio_cancel(int fildes, struct aiocb *aiocbp) @@ -9,3 +11,6 @@ int aio_cancel(int fildes, struct aiocb *aiocbp) POSIX(199309) LINK(rt) */ + + +#endif diff --git a/src/aio/aio_error.c b/src/aio/aio_error.c index c291543c..f59163a4 100644 --- a/src/aio/aio_error.c +++ b/src/aio/aio_error.c @@ -1,3 +1,5 @@ +#if 0 + #include <aio.h> int aio_error(const struct aiocb * aiocbp) @@ -9,3 +11,6 @@ int aio_error(const struct aiocb * aiocbp) POSIX(199309) LINK(rt) */ + + +#endif diff --git a/src/aio/aio_fsync.c b/src/aio/aio_fsync.c index 126512f0..ff3dc710 100644 --- a/src/aio/aio_fsync.c +++ b/src/aio/aio_fsync.c @@ -1,3 +1,5 @@ +#if 0 + #include <aio.h> int aio_fsync(int op, struct aiocb * aiocbp) @@ -9,3 +11,6 @@ int aio_fsync(int op, struct aiocb * aiocbp) POSIX(199309) LINK(rt) */ + + +#endif diff --git a/src/aio/aio_read.c b/src/aio/aio_read.c index c9d6c898..50eaf248 100644 --- a/src/aio/aio_read.c +++ b/src/aio/aio_read.c @@ -1,3 +1,5 @@ +#if 0 + #include <aio.h> int aio_read(struct aiocb * aiocbp) @@ -8,3 +10,6 @@ int aio_read(struct aiocb * aiocbp) POSIX(199309) LINK(rt) */ + + +#endif diff --git a/src/aio/aio_return.c b/src/aio/aio_return.c index 7a98ed0a..b77e0f36 100644 --- a/src/aio/aio_return.c +++ b/src/aio/aio_return.c @@ -1,3 +1,5 @@ +#if 0 + #include <aio.h> ssize_t aio_return(struct aiocb *aiocbp) @@ -9,3 +11,6 @@ ssize_t aio_return(struct aiocb *aiocbp) POSIX(199309) LINK(rt) */ + + +#endif diff --git a/src/aio/aio_suspend.c b/src/aio/aio_suspend.c index 714d029a..e3a3a426 100644 --- a/src/aio/aio_suspend.c +++ b/src/aio/aio_suspend.c @@ -1,3 +1,5 @@ +#if 0 + #include <aio.h> int aio_suspend(const struct aiocb * const list[], int nent, const struct timespec * timeout) @@ -9,3 +11,6 @@ int aio_suspend(const struct aiocb * const list[], int nent, const struct timesp POSIX(199309) LINK(rt) */ + + +#endif diff --git a/src/aio/aio_write.c b/src/aio/aio_write.c index 4c08312d..2812f201 100644 --- a/src/aio/aio_write.c +++ b/src/aio/aio_write.c @@ -1,3 +1,5 @@ +#if 0 + #include <aio.h> int aio_write(struct aiocb * aiocbp) @@ -9,3 +11,6 @@ int aio_write(struct aiocb * aiocbp) POSIX(199309) LINK(rt) */ + + +#endif diff --git a/src/aio/lio_listio.c b/src/aio/lio_listio.c index d5178956..64a6b27d 100644 --- a/src/aio/lio_listio.c +++ b/src/aio/lio_listio.c @@ -1,3 +1,5 @@ +#if 0 + #include <aio.h> int lio_listio(int mode, struct aiocb * const list[restrict], int nent, struct sigevent * restrict sig) @@ -9,3 +11,6 @@ int lio_listio(int mode, struct aiocb * const list[restrict], int nent, struct s POSIX(199309) LINK(rt) */ + + +#endif diff --git a/src/aio/struct_aiocb.c b/src/aio/struct_aiocb.c index 177d8ffa..801074e2 100644 --- a/src/aio/struct_aiocb.c +++ b/src/aio/struct_aiocb.c @@ -1,3 +1,5 @@ +#if 0 + #include <aio.h> struct aiocb { @@ -13,3 +15,6 @@ struct aiocb { /* POSIX(199309) */ + + +#endif |