diff options
author | Roland McGrath <roland@gnu.org> | 1998-07-19 06:48:50 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1998-07-19 06:48:50 +0000 |
commit | 3f07f7d0137a757f1908805f809ddcba8ba4c21e (patch) | |
tree | 5a99942a2b6bdfb8e81cffff059a7d16f3553e24 /mig/header.c | |
parent | 1ffb1ca21b8db814cdbd8638b6c3b1ddece5aec1 (diff) |
* mig: Subdirectory removed, now in separate dist.
Diffstat (limited to 'mig/header.c')
-rw-r--r-- | mig/header.c | 210 |
1 files changed, 0 insertions, 210 deletions
diff --git a/mig/header.c b/mig/header.c deleted file mode 100644 index 2635bc0..0000000 --- a/mig/header.c +++ /dev/null @@ -1,210 +0,0 @@ -/* - * Mach Operating System - * Copyright (c) 1991,1990 Carnegie Mellon University - * All Rights Reserved. - * - * Permission to use, copy, modify and distribute this software and its - * documentation is hereby granted, provided that both the copyright - * notice and this permission notice appear in all copies of the - * software, derivative works or modified versions, and any portions - * thereof, and that both notices appear in supporting documentation. - * - * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS - * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR - * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. - * - * Carnegie Mellon requests users of this software to return to - * - * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU - * School of Computer Science - * Carnegie Mellon University - * Pittsburgh PA 15213-3890 - * - * any improvements or extensions that they make and grant Carnegie the - * rights to redistribute these changes. - */ - -#include "write.h" -#include "utils.h" -#include "global.h" -#include "error.h" - -static void -WriteIncludes(FILE *file) -{ - fprintf(file, "#include <mach/kern_return.h>\n"); - fprintf(file, "#include <mach/port.h>\n"); - fprintf(file, "#include <mach/message.h>\n"); - fprintf(file, "\n"); -} - -static void -WriteDefines(FILE *file) -{ -} - -static void -WriteMigExternal(FILE *file) -{ - fprintf(file, "#ifdef\tmig_external\n"); - fprintf(file, "mig_external\n"); - fprintf(file, "#else\n"); - fprintf(file, "extern\n"); - fprintf(file, "#endif\n"); -} - -static void -WriteProlog(FILE *file, const char *protect) -{ - if (protect != strNULL) { - fprintf(file, "#ifndef\t_%s\n", protect); - fprintf(file, "#define\t_%s\n", protect); - fprintf(file, "\n"); - } - - fprintf(file, "/* Module %s */\n", SubsystemName); - fprintf(file, "\n"); - - WriteIncludes(file); - WriteDefines(file); -} - -static void -WriteEpilog(FILE *file, const char *protect) -{ - if (protect != strNULL) { - fprintf(file, "\n"); - fprintf(file, "#endif\t/* not defined(_%s) */\n", protect); - } -} - -static void -WriteUserRoutine(FILE *file, const routine_t *rt) -{ - fprintf(file, "\n"); - fprintf(file, "/* %s %s */\n", rtRoutineKindToStr(rt->rtKind), rt->rtName); - WriteMigExternal(file); - fprintf(file, "%s %s\n", ReturnTypeStr(rt), rt->rtUserName); - fprintf(file, "#if\t%s\n", LintLib); - fprintf(file, " ("); - WriteList(file, rt->rtArgs, WriteNameDecl, akbUserArg, ", " , ""); - fprintf(file, ")\n"); - WriteList(file, rt->rtArgs, WriteUserVarDecl, akbUserArg, ";\n", ";\n"); - fprintf(file, "{ "); - if (!rt->rtProcedure) - fprintf(file, "return "); - fprintf(file, "%s(", rt->rtUserName); - WriteList(file, rt->rtArgs, WriteNameDecl, akbUserArg, ", ", ""); - fprintf(file, "); }\n"); - fprintf(file, "#else\n"); - fprintf(file, "(\n"); - WriteList(file, rt->rtArgs, WriteUserVarDecl, akbUserArg, ",\n", "\n"); - fprintf(file, ");\n"); - fprintf(file, "#endif\n"); -} - -void -WriteUserHeader(FILE *file, const statement_t *stats) -{ - register const statement_t *stat; - const char *protect = strconcat(SubsystemName, "_user_"); - - WriteProlog(file, protect); - for (stat = stats; stat != stNULL; stat = stat->stNext) - switch (stat->stKind) - { - case skRoutine: - WriteUserRoutine(file, stat->stRoutine); - break; - case skImport: - case skUImport: - WriteImport(file, stat->stFileName); - break; - case skSImport: - break; - default: - fatal("WriteHeader(): bad statement_kind_t (%d)", - (int) stat->stKind); - } - WriteEpilog(file, protect); -} - -static void -WriteServerRoutine(FILE *file, const routine_t *rt) -{ - fprintf(file, "\n"); - fprintf(file, "/* %s %s */\n", rtRoutineKindToStr(rt->rtKind), rt->rtName); - WriteMigExternal(file); - fprintf(file, "%s %s\n", ReturnTypeStr(rt), rt->rtServerName); - fprintf(file, "#if\t%s\n", LintLib); - fprintf(file, " ("); - WriteList(file, rt->rtArgs, WriteNameDecl, akbServerArg, ", " , ""); - fprintf(file, ")\n"); - WriteList(file, rt->rtArgs, WriteServerVarDecl, - akbServerArg, ";\n", ";\n"); - fprintf(file, "{ "); - if (!rt->rtProcedure) - fprintf(file, "return "); - fprintf(file, "%s(", rt->rtServerName); - WriteList(file, rt->rtArgs, WriteNameDecl, akbServerArg, ", ", ""); - fprintf(file, "); }\n"); - fprintf(file, "#else\n"); - fprintf(file, "(\n"); - WriteList(file, rt->rtArgs, WriteServerVarDecl, - akbServerArg, ",\n", "\n"); - fprintf(file, ");\n"); - fprintf(file, "#endif\n"); -} - -void -WriteServerHeader(FILE *file, const statement_t *stats) -{ - register const statement_t *stat; - const char *protect = strconcat(SubsystemName, "_server_"); - - WriteProlog(file, protect); - for (stat = stats; stat != stNULL; stat = stat->stNext) - switch (stat->stKind) - { - case skRoutine: - WriteServerRoutine(file, stat->stRoutine); - break; - case skImport: - case skSImport: - WriteImport(file, stat->stFileName); - break; - case skUImport: - break; - default: - fatal("WriteServerHeader(): bad statement_kind_t (%d)", - (int) stat->stKind); - } - WriteEpilog(file, protect); -} - -static void -WriteInternalRedefine(FILE *file, register const routine_t *rt) -{ - fprintf(file, "#define %s %s_external\n", rt->rtUserName, rt->rtUserName); -} - -void -WriteInternalHeader(FILE *file, const statement_t *stats) -{ - register const statement_t *stat; - - for (stat = stats; stat != stNULL; stat = stat->stNext) - switch (stat->stKind) - { - case skRoutine: - WriteInternalRedefine(file, stat->stRoutine); - break; - case skImport: - case skUImport: - case skSImport: - break; - default: - fatal("WriteInternalHeader(): bad statement_kind_t (%d)", - (int) stat->stKind); - } -} |