projects
/
invirt/third/libt4.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Cosmetic changes
[invirt/third/libt4.git]
/
rpc
/
rpc.h
diff --git
a/rpc/rpc.h
b/rpc/rpc.h
index
c0f8d43
..
ddf15f9
100644
(file)
--- a/
rpc/rpc.h
+++ b/
rpc/rpc.h
@@
-94,12
+94,12
@@
class rpcc : private connection_delegate {
request dup_req_;
int xid_rep_done_ = -1;
request dup_req_;
int xid_rep_done_ = -1;
- int call1(proc_id_t proc, milliseconds to, string & rep, marshall & req);
+ int call_marshalled(proc_id_t proc, milliseconds to, string & rep, marshall & req);
template<class R>
inline int call_m(proc_id_t proc, milliseconds to, R & r, marshall && req) {
string rep;
template<class R>
inline int call_m(proc_id_t proc, milliseconds to, R & r, marshall && req) {
string rep;
- int intret = call1(proc, to, rep, req);
+ int intret = call_marshalled(proc, to, rep, req);
if (intret >= 0)
VERIFY(unmarshall(rep, true, r).okdone()); // guaranteed by static type checking
return intret;
if (intret >= 0)
VERIFY(unmarshall(rep, true, r).okdone()); // guaranteed by static type checking
return intret;