1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-10 05:03:06 +03:00

* include/rpc/rpc.h: Declare thread variables with their correct

type. 
* sunrpc/clnt_perr.c: Don't cast thread variables. 
* sunrpc/clnt_raw.c: Likewise. 
* sunrpc/clnt_simp.c: Likewise. 
* sunrpc/key_call.c: Likewise. 
* sunrpc/svcauth_des.c: Likewise. 
* sunrpc/svc.c: Likewise. 
* sunrpc/svc_raw.c: Likewise. 
* sunrpc/svc_simple.c: Likewise.
2004-02-09  Andreas Schwab  <schwab@suse.de>

	* include/rpc/rpc.h: Declare thread variables with their correct
	type.
	* sunrpc/clnt_perr.c: Don't cast thread variables.
	* sunrpc/clnt_raw.c: Likewise.
	* sunrpc/clnt_simp.c: Likewise.
	* sunrpc/key_call.c: Likewise.
	* sunrpc/svcauth_des.c: Likewise.
	* sunrpc/svc.c: Likewise.
	* sunrpc/svc_raw.c: Likewise.
	* sunrpc/svc_simple.c: Likewise.
This commit is contained in:
Andreas Schwab
2004-02-09 10:47:53 +00:00
parent 7be688b58f
commit 1bc1a2b907
10 changed files with 35 additions and 22 deletions

View File

@@ -17,24 +17,24 @@ struct rpc_thread_variables {
struct pollfd *svc_pollfd_s; /* Global, rpc_common.c */
int svc_max_pollfd_s; /* Global, rpc_common.c */
void *clnt_perr_buf_s; /* clnt_perr.c */
char *clnt_perr_buf_s; /* clnt_perr.c */
void *clntraw_private_s; /* clnt_raw.c */
struct clntraw_private_s *clntraw_private_s; /* clnt_raw.c */
void *callrpc_private_s; /* clnt_simp.c */
struct callrpc_private_s *callrpc_private_s; /* clnt_simp.c */
void *key_call_private_s; /* key_call.c */
struct key_call_private *key_call_private_s; /* key_call.c */
void *authdes_cache_s; /* svcauth_des.c */
void *authdes_lru_s; /* svcauth_des.c */
struct cache_entry *authdes_cache_s; /* svcauth_des.c */
int *authdes_lru_s; /* svcauth_des.c */
void *svc_xports_s; /* svc.c */
void *svc_head_s; /* svc.c */
SVCXPRT **svc_xports_s; /* svc.c */
struct svc_callout *svc_head_s; /* svc.c */
void *svcraw_private_s; /* svc_raw.c */
struct svcraw_private_s *svcraw_private_s; /* svc_raw.c */
void *svcsimple_proglst_s; /* svc_simple.c */
void *svcsimple_transp_s; /* svc_simple.c */
struct proglst_ *svcsimple_proglst_s; /* svc_simple.c */
SVCXPRT *svcsimple_transp_s; /* svc_simple.c */
};
extern struct rpc_thread_variables *__rpc_thread_variables(void)