about summary refs log tree commit diff
path: root/hurd/hurdintr.awk
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/hurdintr.awk
parentda74e90200dd19f2f40a47135759eab62e8bfce7 (diff)
downloadglibc-158ff48e348ece17fbda4d9b3c152df2f7cc76d0.tar.gz
glibc-158ff48e348ece17fbda4d9b3c152df2f7cc76d0.tar.xz
glibc-158ff48e348ece17fbda4d9b3c152df2f7cc76d0.zip
*** 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/hurdintr.awk')
-rw-r--r--hurd/hurdintr.awk25
1 files changed, 0 insertions, 25 deletions
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; }