diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2006-12-03 20:31:35 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2006-12-03 20:31:35 +0000 |
commit | cd10961665bf2786bed6935f1666d18c6241a97d (patch) | |
tree | 49edf39718bb0e416df726c0f4149ee3481994e8 /migcom.c | |
parent | 079c59208254be81a5fd81238f6ffb4b82e037ff (diff) | |
download | mig-cd10961665bf2786bed6935f1666d18c6241a97d.tar.gz mig-cd10961665bf2786bed6935f1666d18c6241a97d.tar.bz2 mig-cd10961665bf2786bed6935f1666d18c6241a97d.zip |
2006-12-03 Leonardo Lopes Pereira <leonardolopespereira@gmail.com>
[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.
Diffstat (limited to 'migcom.c')
-rw-r--r-- | migcom.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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")) |