Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
2001-05-15  Jakub Jelinek  <jakub@redhat.com>

	* sunrpc/rpc_thread.c (rpc_default): Remove.
	(__rpc_thread_destroy): Use __libc_tsd_RPC_VARS_mem instead of
	rpc_default.
	(rpc_thread_multi, __rpc_thread_svc_fdset, __rpc_thread_createerr,
	__rpc_thread_svc_pollfd, __rpc_thread_svc_max_pollfd): Likewise.
	* sunrpc/auth_none.c (authnone_private): Fix a typo.
  • Loading branch information
Ulrich Drepper committed May 17, 2001
1 parent d911bba commit d1abdd5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2001-05-15 Jakub Jelinek <jakub@redhat.com>

* sunrpc/rpc_thread.c (rpc_default): Remove.
(__rpc_thread_destroy): Use __libc_tsd_RPC_VARS_mem instead of
rpc_default.
(rpc_thread_multi, __rpc_thread_svc_fdset, __rpc_thread_createerr,
__rpc_thread_svc_pollfd, __rpc_thread_svc_max_pollfd): Likewise.
* sunrpc/auth_none.c (authnone_private): Fix a typo.

2001-05-16 Martin Schwidefsky <schwidefsky@de.ibm.com>

* sysdeps/unix/sysv/linux/s390/s390-64/clone.S: Fix stack allocation.
Expand Down
2 changes: 1 addition & 1 deletion sunrpc/auth_none.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ struct authnone_private_s {
u_int mcnt;
};
#ifdef _RPC_THREAD_SAFE_
#define authnone_private ((struct authnone_private_ *)RPC_THREAD_VARIABLE(authnone_private_s))
#define authnone_private ((struct authnone_private_s *)RPC_THREAD_VARIABLE(authnone_private_s))
#else
static struct authnone_private_s *authnone_private;
#endif
Expand Down

0 comments on commit d1abdd5

Please sign in to comment.