summaryrefslogtreecommitdiff
path: root/sunrpc/rpc_svcout.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-04-03 08:57:21 +0000
committerUlrich Drepper <drepper@redhat.com>2002-04-03 08:57:21 +0000
commitbe916937c4a4ff68966e8bfd5487d93948fd817a (patch)
tree76a52cdcc6ae2b7fd9793b5fc71c128e41ede19b /sunrpc/rpc_svcout.c
parentc64bd6c2f4b681cbc88ce33afb01d8609cef27c0 (diff)
Update.
* sunrpc/rpc_svcout.c (write_real_program): Write "result, " parameter if mtflag. Patch by <jeongyun@innovay.com>. * sysdeps/unix/sysv/linux/x86_64/swapcontext.S: New file. * sysdeps/unix/sysv/linux/x86_64/getcontext.S: New file. * sysdeps/unix/sysv/linux/x86_64/setcontext.S: New file. * sysdeps/unix/sysv/linux/x86_64/ucontext_i.h: New file.
Diffstat (limited to 'sunrpc/rpc_svcout.c')
-rw-r--r--sunrpc/rpc_svcout.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sunrpc/rpc_svcout.c b/sunrpc/rpc_svcout.c
index be5829d4d2..a1eb792097 100644
--- a/sunrpc/rpc_svcout.c
+++ b/sunrpc/rpc_svcout.c
@@ -414,6 +414,8 @@ write_real_program (const definition * def)
for (l = proc->args.decls; l != NULL; l = l->next)
f_print (fout, "argp->%s, ", l->decl.name);
}
+ if (mtflag)
+ f_print (fout, "%s, ", RESULT);
f_print (fout, "%s));\n}\n", RQSTP);
}
}