mirror of
https://git.openafs.org/openafs.git
synced 2025-01-20 16:00:12 +00:00
rx-xdr-deal-with-linux26-regparm-20040621
deal with regparm side effects in xdr calls. no clue if this works without regparm yet, that might actually be an issue
This commit is contained in:
parent
e82999dedf
commit
6ed3d79dbd
@ -172,8 +172,12 @@ enum xdr_op {
|
||||
#if 0
|
||||
typedef bool_t(*xdrproc_t) ();
|
||||
#else
|
||||
#ifdef AFS_I386_LINUX26_ENV
|
||||
typedef bool_t(*xdrproc_t) (void *, caddr_t *, u_int);
|
||||
#else
|
||||
typedef bool_t(*xdrproc_t) (void *, ...);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user