From cd10961665bf2786bed6935f1666d18c6241a97d Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Sun, 3 Dec 2006 20:31:35 +0000 Subject: 2006-12-03 Leonardo Lopes Pereira [patch #5018 --- ``Remove support to msg_send interface.''] * global.c (UseMsgRPC): Removed definition. * global.h (UseMsgRPC): Removed declaration. * mig.in (--help): Removed information about `-r' and `-R' options. * migcom.c (parseArgs): Changed the switches `-r' and `-R' to deal with the absence of obsolete the send/receive pairs. * user.c (WriteRoutine): Adapted the use of `UseMsgRPC' as if it was defined to `TRUE'. (WriteMsgSendReceive): Removed, since it is not used anymore. --- migcom.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'migcom.c') diff --git a/migcom.c b/migcom.c index 5da52b8..d64c4b2 100644 --- a/migcom.c +++ b/migcom.c @@ -31,8 +31,6 @@ * -[V,q] not verbose or quiet : don't print * information during compilation * (this is the default) - * -[r,R] do or don't use rpc calls instead of - * send/receive pairs. Default is -r. * -[s,S] generate symbol table or not: generate a * table of rpc-name, number, routine triplets * as an external data structure -- main use is @@ -108,10 +106,11 @@ parseArgs(int argc, char **argv) BeVerbose = FALSE; break; case 'r': - UseMsgRPC = TRUE; + /* This is the default and `-R' doesn't work anymore. */ break; case 'R': - UseMsgRPC = FALSE; + fatal("the option `-R' cannot be used anymore, use the rpc " + "calls (`-r', default) instead."); break; case 'l': if (streql(argv[0], "-list")) -- cgit v1.2.3