diff options
Diffstat (limited to 'rt')
-rw-r--r-- | rt/aio.h | 2 | ||||
-rw-r--r-- | rt/aio_misc.c | 6 | ||||
-rw-r--r-- | rt/librt.map | 4 |
3 files changed, 6 insertions, 6 deletions
@@ -179,7 +179,7 @@ extern int lio_listio64 __P ((int __mode, struct aiocb64 *__const __list[], extern int aio_error __P ((__const struct aiocb *__aiocbp)); #else extern int aio_error __P ((__const struct aiocb *__aiocbp)) - __asm__ ("aio_error64");; + __asm__ ("aio_error64"); #endif #ifdef __USE_LARGEFILE64 extern int aio_error64 __P ((__const struct aiocb64 *__aiocbp)); diff --git a/rt/aio_misc.c b/rt/aio_misc.c index 6ea30c2158..cdfb63d28c 100644 --- a/rt/aio_misc.c +++ b/rt/aio_misc.c @@ -144,7 +144,7 @@ get_elem (void) void -__aio_free_req (struct requestlist *elem) +__aio_free_request (struct requestlist *elem) { elem->running = no; elem->next_prio = freelist; @@ -375,7 +375,7 @@ __aio_enqueue_request (aiocb_union *aiocbp, int operation) else { /* Something went wrong. */ - __aio_free_req (newp); + __aio_free_request (newp); newp = NULL; } @@ -486,7 +486,7 @@ handle_fildes_io (void *arg) } /* Free the old element. */ - __aio_free_req (runp); + __aio_free_request (runp); runp = freelist; if (runp != NULL) diff --git a/rt/librt.map b/rt/librt.map index 375a02877e..13381ec800 100644 --- a/rt/librt.map +++ b/rt/librt.map @@ -3,8 +3,8 @@ GLIBC_2.1 { # AIO functions. aio_cancel; aio_cancel64; aio_error; aio_error64; aio_fsync; aio_fsync64; - aio_read; aio_read64; aio_return; aio_return64; aio_suspend; aio_suspend64; - aio_write; aio_write64; lio_listio; lio_listio64; + aio_init; aio_read; aio_read64; aio_return; aio_return64; aio_suspend; + aio_suspend64; aio_write; aio_write64; lio_listio; lio_listio64; local: *; |