summaryrefslogtreecommitdiff
path: root/rt
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-10-30 18:18:59 +0000
committerUlrich Drepper <drepper@redhat.com>1998-10-30 18:18:59 +0000
commit00995ca9efcd48dd26b810e787ddfe701c23eb41 (patch)
tree33ed26b25e4fcc56df4a97a9e5cca11e6ca572bd /rt
parente980ca92297b87f132315afe36cc530edb20c7e0 (diff)
Update.
1998-10-30 18:11 Ulrich Drepper <drepper@cygnus.com> * iconv/gconv_conf.c (__gconv_read_conf): Don't define as internal_function since it is called through a pointer. * iconv/gconv_db.c (free_derivation): Likewise. * iconv/gconv_int.h: Adjust prototype od __gconv_read_conf. * posix/wordexp.c: Add internal_function to parse_backtick definition. * rt/aio_misc.c: Add internal_function to __aio_free_request, __aio_find_req, __aio_find_req_fd, and __aio_enqueue_request definitions. * rt/aio_notify.c: Add internal_function to __aio_notify_only and __aio_notify definitions. * wcsmbsload.c: Add internal_function to __wcsmbs_load_conv definition.
Diffstat (limited to 'rt')
-rw-r--r--rt/aio_misc.c4
-rw-r--r--rt/aio_notify.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/rt/aio_misc.c b/rt/aio_misc.c
index 1688a15432..742a8abaf1 100644
--- a/rt/aio_misc.c
+++ b/rt/aio_misc.c
@@ -144,6 +144,7 @@ get_elem (void)
void
+internal_function
__aio_free_request (struct requestlist *elem)
{
elem->running = no;
@@ -153,6 +154,7 @@ __aio_free_request (struct requestlist *elem)
struct requestlist *
+internal_function
__aio_find_req (aiocb_union *elem)
{
struct requestlist *runp = requests;
@@ -175,6 +177,7 @@ __aio_find_req (aiocb_union *elem)
struct requestlist *
+internal_function
__aio_find_req_fd (int fildes)
{
struct requestlist *runp = requests;
@@ -216,6 +219,7 @@ weak_alias (__aio_init, aio_init)
/* The main function of the async I/O handling. It enqueues requests
and if necessary starts and handles threads. */
struct requestlist *
+internal_function
__aio_enqueue_request (aiocb_union *aiocbp, int operation)
{
int result = 0;
diff --git a/rt/aio_notify.c b/rt/aio_notify.c
index 716a304813..8c57d72e9b 100644
--- a/rt/aio_notify.c
+++ b/rt/aio_notify.c
@@ -24,6 +24,7 @@
#include "aio_misc.h"
int
+internal_function
__aio_notify_only (struct sigevent *sigev)
{
int result = 0;
@@ -58,6 +59,7 @@ __aio_notify_only (struct sigevent *sigev)
void
+internal_function
__aio_notify (struct requestlist *req)
{
struct waitlist *waitlist;