diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2023-06-17 23:39:53 +0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-06-17 22:57:43 +0200 |
commit | d9a36da6d785844139d291b37f80fbe087b2b59e (patch) | |
tree | 20fc3b30db07875601708204edeeb64008c11790 /global.h | |
parent | f519e6e262b4f0f3cf7f2ffd8f9634c9f05d6ed4 (diff) | |
download | mig-d9a36da6d785844139d291b37f80fbe087b2b59e.tar.gz mig-d9a36da6d785844139d291b37f80fbe087b2b59e.tar.bz2 mig-d9a36da6d785844139d291b37f80fbe087b2b59e.zip |
Remove error procedure directives
Back in the wonderful old days of Mach 2, when there were no send-once
rights, dead names, or port reference counts, MIG used to have more
kinds of operations: there were functions, procedures, simpleprocedures,
routines, and simpleroutines. Routines returned an error code as their C
function return value, functions had real return values, procedures and
simpleprocedures returned void.
Functions, procedures, and simpleprocedures signalled errors by invoking
a global function. By default, a function named MsgError was invoked,
but a subsystem could specify a different function using the 'error'
directive:
error CustomErrorHandler;
In Mach 3, functions, procedures, and simpleprocedures are gone.
Routines and simpleroutines are the only remaining kinds of operations.
Some 26 years later, most of the code for generating functions,
procedures, and simpleprocedures was removed from GNU MIG in commit
7f10b4ed6a557b7a1fd1083939156a3dcf8b377e. Error directives remained,
seemingly due to an oversight. So remove them too.
Found while trying to use the word 'error' as an identifier and
receiving a cryptic syntax error from MIG.
Message-Id: <20230617203953.622120-1-bugaevc@gmail.com>
Diffstat (limited to 'global.h')
-rw-r--r-- | global.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -47,7 +47,6 @@ extern u_int SubsystemBase; extern const_string_t MsgOption; extern const_string_t WaitTime; -extern const_string_t ErrorProc; extern const_string_t ServerPrefix; extern const_string_t UserPrefix; extern const_string_t ServerDemux; |