summaryrefslogtreecommitdiffstats
path: root/cpukit/librpc/include/rpc/clnt.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-08-01 16:57:19 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-08-01 16:57:19 +0000
commit0eeca97769b6cebb04815c1ff0aacd81abcd2102 (patch)
tree84ea3c868d18e076a613c19c9654b0550c7f45b4 /cpukit/librpc/include/rpc/clnt.h
parent2008-08-01 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-0eeca97769b6cebb04815c1ff0aacd81abcd2102.tar.bz2
Cleanup.
Diffstat (limited to 'cpukit/librpc/include/rpc/clnt.h')
-rw-r--r--cpukit/librpc/include/rpc/clnt.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/librpc/include/rpc/clnt.h b/cpukit/librpc/include/rpc/clnt.h
index 554a8a8d8a..53ff2a18da 100644
--- a/cpukit/librpc/include/rpc/clnt.h
+++ b/cpukit/librpc/include/rpc/clnt.h
@@ -101,21 +101,21 @@ typedef struct __rpc_client {
struct clnt_ops {
/* call remote procedure */
enum clnt_stat (*cl_call)(struct __rpc_client *,
- rpcproc_t, xdrproc_t, void *, xdrproc_t,
- void *, struct timeval);
+ u_long, xdrproc_t, caddr_t, xdrproc_t,
+ caddr_t, struct timeval);
/* abort a call */
- void (*cl_abort)(struct __rpc_client *);
+ void (*cl_abort)(void);
/* get specific error code */
void (*cl_geterr)(struct __rpc_client *,
struct rpc_err *);
/* frees results */
bool_t (*cl_freeres)(struct __rpc_client *,
- xdrproc_t, void *);
+ xdrproc_t, caddr_t);
/* destroy this structure */
void (*cl_destroy)(struct __rpc_client *);
/* the ioctl() of rpc */
- bool_t (*cl_control)(struct __rpc_client *, u_int,
- void *);
+ bool_t (*cl_control)(struct __rpc_client *, int,
+ char *);
} *cl_ops;
void *cl_private; /* private stuff */
} CLIENT;