summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorThomas Bushnell, BSG <thomas@gnu.org>1996-09-11 02:48:08 +0000
committerThomas Bushnell, BSG <thomas@gnu.org>1996-09-11 02:48:08 +0000
commit158ff48e348ece17fbda4d9b3c152df2f7cc76d0 (patch)
treeca32ddb72f8448cca126b5ce369bef67310cfeb3 /hurd
parentda74e90200dd19f2f40a47135759eab62e8bfce7 (diff)
*** empty log message ***cvs/libc-960911
Tue Sep 10 14:42:39 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> * elf/dl-cache.c: Rename to ... * sysdeps/generic/dl-cache.c: ... here. * sysdeps/mach/hurd/dl-cache.c: New file. * mach/Makefile (distribute): Add `errsystems.awk'. * hurd/Makefile (distribute): Add `Notes' and `intr-msg.h'. * hurd/hurdintr.awk: Delete file. (Not used in ages.) * hurd/intr-rpc.awk: Likewise. * hurd/invoke-trans.c: Likewise. * sysdeps/mach/hurd/i386/longjmp-ctx.c: Likewise. * sysdeps/mach/hurd/alpha/longjmp-ctx.c: Likewise. * sysdeps/mach/hurd/mips/longjmp-ctx.c: Likewise. * sysdeps/mach/hurd/i386/init-fault.c: Likewise. * sysdeps/mach/hurd/mips/init-fault.c: Likewise. * sysdeps/stub/init-fault.c: Likewise. * sysdeps/stub/longjmp-ctx.c: Likewise. Thu Sep 5 08:58:47 1996 Richard Henderson <rth@tamu.edu> * sysdeps/alpha/elf/start.S: Make _start global again.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/Makefile2
-rw-r--r--hurd/hurdintr.awk25
-rw-r--r--hurd/intr-rpc.awk45
-rw-r--r--hurd/invoke-trans.c37
4 files changed, 1 insertions, 108 deletions
diff --git a/hurd/Makefile b/hurd/Makefile
index 1484ad5a06..2f2e36defe 100644
--- a/hurd/Makefile
+++ b/hurd/Makefile
@@ -59,7 +59,7 @@ dtable = dtable port2fd new-fd alloc-fd intern-fd \
getdport openport \
fd-close fd-read fd-write hurdioctl ctty-input ctty-output
distribute = hurdstartup.h hurdfault.h hurdhost.h \
- faultexc.defs intr-rpc.defs intr-rpc.h
+ faultexc.defs intr-rpc.defs intr-rpc.h intr-msg.h Notes
# XXX this is a temporary hack; see hurdmalloc.h
routines += hurdmalloc
diff --git a/hurd/hurdintr.awk b/hurd/hurdintr.awk
deleted file mode 100644
index d03940985c..0000000000
--- a/hurd/hurdintr.awk
+++ /dev/null
@@ -1,25 +0,0 @@
-BEGIN { intr=0; wantcall=0; calls=""; }
-
-$1 == "/*" && $2 == "INTR" && $3 == "*/" { intr=1; }
-
-NF == 1 && $1 == "routine" { wantcall=1; next; }
-
-intr != 0 && wantcall == 0 && NF >= 2 && $1 == "routine" \
- {
- if (substr($2, length($2)-2, 1) == "(")
- calls = calls " " substr($2, 0, length($2)-1);
- else calls = calls " " $2;
- intr=0;
- }
-
-wantcall != 0 && NF >= 1 \
- {
- if (substr($1, length($1)-2, 1) == "(")
- calls = calls " " substr($1, 0, length($1)-1);
- else calls = calls " " $1;
- intr=0;
- }
-
-{ wantcall=0; }
-
-END { print varname " :=" calls; }
diff --git a/hurd/intr-rpc.awk b/hurd/intr-rpc.awk
deleted file mode 100644
index 9dbcd6f8e2..0000000000
--- a/hurd/intr-rpc.awk
+++ /dev/null
@@ -1,45 +0,0 @@
-# Icky intimate knowledge of MiG output.
-
-BEGIN \
- {
- nprotolines=0; proto=0;
- args=""; echo=1; isintr=0;
- intrcall = "__hurd_intr_rpc_" call;
- print "#include <hurd/signal.h>";
- }
-
-$NF == intrcall { isintr=1; }
-
-NF == 1 && $1 == ")" { proto=0; }
-proto \
- {
- protolines[nprotolines++] = $0;
- arg = $NF;
- if (substr(arg, 1, 1) == "*")
- arg = substr(arg, 2, length(arg)-1);
- args = args arg;
- }
-NF == 1 && $1 == "(" { proto=1; }
-
-NF == 3 && $1 == "InP->Head.msgh_request_port" \
- { portarg = substr($3, 1, length($3)-1); }
-
-{ print $0; }
-
-END \
- {
- if (isintr)
- {
- print "\n\n/* User-callable interrupt-handling stub. */";
- print "kern_return_t __" call;
- print "(";
- for (i = 0; i < nprotolines; ++i)
- print protolines[i];
- print ")";
- print "{";
- print " return HURD_EINTR_RPC (" portarg ", " \
- intrcall "(" args "));";
- print "}";
- }
- print "weak_alias (__" call ", " call ")"
- }
diff --git a/hurd/invoke-trans.c b/hurd/invoke-trans.c
deleted file mode 100644
index e11bff5dc3..0000000000
--- a/hurd/invoke-trans.c
+++ /dev/null
@@ -1,37 +0,0 @@
-/* Copyright (C) 1994 Free Software Foundation, Inc.
-This file is part of the GNU C Library.
-
-The GNU C Library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Library General Public License as
-published by the Free Software Foundation; either version 2 of the
-License, or (at your option) any later version.
-
-The GNU C Library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Library General Public License for more details.
-
-You should have received a copy of the GNU Library General Public
-License along with the GNU C Library; see the file COPYING.LIB. If
-not, write to the Free Software Foundation, Inc., 675 Mass Ave,
-Cambridge, MA 02139, USA. */
-
-#include <hurd.h>
-#include <hurd/fs.h>
-
-error_t
-__hurd_invoke_translator (file_t file, int flags, file_t *newport)
-{
- error_t err;
- enum retry_type doretry;
- char retryname[1024]; /* XXX string_t LOSES! */
-
- err = __file_invoke_translator (file, flags, &doretry, retryname, newport);
-
- if (! err)
- err = __USEPORT (CRDIR, __hurd_file_name_lookup_retry (port,
- doretry, retryname,
- flags, 0, newport));
-
- return err;
-}