diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-04-16 21:59:36 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-04-16 21:59:36 -0400 |
commit | 7b57bfe5988e476ea40934457dfd1c8a231e2391 (patch) | |
tree | 33dbec2b9a1a8fd8472a214945090f31d5372a8e /sunrpc/svc_run.c | |
parent | e6c61494125126d2ba77e5d99f83887a2ed49783 (diff) | |
download | glibc-7b57bfe5988e476ea40934457dfd1c8a231e2391.tar.gz |
Obsolete RPC implementation in libc.
Diffstat (limited to 'sunrpc/svc_run.c')
-rw-r--r-- | sunrpc/svc_run.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sunrpc/svc_run.c b/sunrpc/svc_run.c index de6c3c77b6..d92ad57fed 100644 --- a/sunrpc/svc_run.c +++ b/sunrpc/svc_run.c @@ -46,6 +46,7 @@ svc_exit (void) svc_pollfd = NULL; svc_max_pollfd = 0; } +libc_hidden_nolink (svc_exit, GLIBC_2_0) void svc_run (void) @@ -92,7 +93,7 @@ svc_run (void) case 0: continue; default: - INTUSE(svc_getreq_poll) (my_pollfd, i); + svc_getreq_poll (my_pollfd, i); continue; } break; @@ -100,3 +101,4 @@ svc_run (void) free (my_pollfd); } +libc_hidden_nolink (svc_run, GLIBC_2_0) |