rpc_private.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. #ifndef _RPC_PRIVATE_H
  2. #define _RPC_PRIVATE_H
  3. #include <rpc/rpc.h>
  4. #include <libintl.h>
  5. /* Now define the internal interfaces. */
  6. extern u_long _create_xid (void) attribute_hidden;
  7. /*
  8. * Multi-threaded support
  9. * Group all global and static variables into a single spot.
  10. * This area is allocated on a per-thread basis
  11. */
  12. #ifdef __UCLIBC_HAS_THREADS__
  13. #include <pthread.h>
  14. #include <bits/libc-lock.h>
  15. struct rpc_thread_variables {
  16. fd_set svc_fdset_s; /* Global, rpc_common.c */
  17. struct rpc_createerr rpc_createerr_s; /* Global, rpc_common.c */
  18. struct pollfd *svc_pollfd_s; /* Global, rpc_common.c */
  19. int svc_max_pollfd_s; /* Global, rpc_common.c */
  20. void *clnt_perr_buf_s; /* clnt_perr.c */
  21. void *clntraw_private_s; /* clnt_raw.c */
  22. void *callrpc_private_s; /* clnt_simp.c */
  23. void *key_call_private_s; /* key_call.c */
  24. void *authdes_cache_s; /* svcauth_des.c */
  25. void *authdes_lru_s; /* svcauth_des.c */
  26. void *svc_xports_s; /* svc.c */
  27. void *svc_head_s; /* svc.c */
  28. void *svcraw_private_s; /* svc_raw.c */
  29. void *svcsimple_proglst_s; /* svc_simple.c */
  30. void *svcsimple_transp_s; /* svc_simple.c */
  31. };
  32. extern struct rpc_thread_variables *__rpc_thread_variables(void)
  33. __attribute__ ((const)) attribute_hidden;
  34. extern void __rpc_thread_svc_cleanup (void) attribute_hidden;
  35. extern void __rpc_thread_clnt_cleanup (void) attribute_hidden;
  36. /*extern void __rpc_thread_key_cleanup (void) attribute_hidden;*/
  37. extern void __rpc_thread_destroy (void);
  38. #define RPC_THREAD_VARIABLE(x) (__rpc_thread_variables()->x)
  39. #endif /* __UCLIBC_HAS_THREADS__ */
  40. #endif