merge linton branch delta trail
authorSam Leffler <sam@ucbvax.Berkeley.EDU>
Sun, 24 Jun 1984 02:44:15 +0000 (18:44 -0800)
committerSam Leffler <sam@ucbvax.Berkeley.EDU>
Sun, 24 Jun 1984 02:44:15 +0000 (18:44 -0800)
SCCS-vsn: old/dbx/Makefile 4.9
SCCS-vsn: old/dbx/asm.c 1.3
SCCS-vsn: old/dbx/c.c 1.8
SCCS-vsn: old/dbx/cerror.vax.s 1.2
SCCS-vsn: old/dbx/check.c 1.6
SCCS-vsn: old/dbx/commands.y 1.11
SCCS-vsn: old/dbx/coredump.c 1.5
SCCS-vsn: old/dbx/debug.c 1.4
SCCS-vsn: old/dbx/defs.h 1.2
SCCS-vsn: old/dbx/eval.c 1.12
SCCS-vsn: old/dbx/events.c 1.4
SCCS-vsn: old/dbx/fortran.c 1.5
SCCS-vsn: old/dbx/keywords.c 1.4
SCCS-vsn: old/dbx/languages.c 1.4
SCCS-vsn: old/dbx/library.c 1.5
SCCS-vsn: old/dbx/lists.c 1.3
SCCS-vsn: old/dbx/vax.c 1.10
SCCS-vsn: old/dbx/main.c 1.7
SCCS-vsn: old/dbx/makedefs.c 1.3
SCCS-vsn: old/dbx/mappings.c 1.5
SCCS-vsn: old/dbx/mkdate.c 1.3
SCCS-vsn: old/dbx/names.c 1.4
SCCS-vsn: old/dbx/object.c 1.15
SCCS-vsn: old/dbx/operators.c 1.6
SCCS-vsn: old/dbx/ops.c 1.4
SCCS-vsn: old/dbx/ops.vax.c 1.4
SCCS-vsn: old/dbx/pascal.c 1.3
SCCS-vsn: old/dbx/printsym.c 1.13
SCCS-vsn: old/dbx/process.c 1.13
SCCS-vsn: old/dbx/runtime.c 1.11
SCCS-vsn: old/dbx/runtime.vax.c 1.11
SCCS-vsn: old/dbx/scanner.c 1.9
SCCS-vsn: old/dbx/source.c 1.11
SCCS-vsn: old/dbx/symbols.c 1.13
SCCS-vsn: old/dbx/tree.c 1.6

35 files changed:
usr/src/old/dbx/Makefile
usr/src/old/dbx/asm.c
usr/src/old/dbx/c.c
usr/src/old/dbx/cerror.vax.s
usr/src/old/dbx/check.c
usr/src/old/dbx/commands.y
usr/src/old/dbx/coredump.c
usr/src/old/dbx/debug.c
usr/src/old/dbx/defs.h
usr/src/old/dbx/eval.c
usr/src/old/dbx/events.c
usr/src/old/dbx/fortran.c
usr/src/old/dbx/keywords.c
usr/src/old/dbx/languages.c
usr/src/old/dbx/library.c
usr/src/old/dbx/lists.c
usr/src/old/dbx/main.c
usr/src/old/dbx/makedefs.c
usr/src/old/dbx/mappings.c
usr/src/old/dbx/mkdate.c
usr/src/old/dbx/names.c
usr/src/old/dbx/object.c
usr/src/old/dbx/operators.c
usr/src/old/dbx/ops.c
usr/src/old/dbx/ops.vax.c
usr/src/old/dbx/pascal.c
usr/src/old/dbx/printsym.c
usr/src/old/dbx/process.c
usr/src/old/dbx/runtime.c
usr/src/old/dbx/runtime.vax.c
usr/src/old/dbx/scanner.c
usr/src/old/dbx/source.c
usr/src/old/dbx/symbols.c
usr/src/old/dbx/tree.c
usr/src/old/dbx/vax.c

index f380a2a..dc2261f 100644 (file)
@@ -1,3 +1,4 @@
+#      Makefile        4.9     84/06/23
 #
 # make file for debugger "dbx"
 #
 #
 # make file for debugger "dbx"
 #
@@ -8,7 +9,8 @@
 .SUFFIXES: .h .c .s .o
 
 AOUT   = tdbx
 .SUFFIXES: .h .c .s .o
 
 AOUT   = tdbx
-DEST   = /usr/local/bin/dbx
+DESTDIR=
+DEST   = ${DESTDIR}/usr/ucb/dbx
 
 LIBRARIES =
 
 
 LIBRARIES =
 
index f360e38..d625da3 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)asm.c 1.2 12/15/82";
-
-static char rcsid[] = "$Header: asm.c,v 1.3 84/03/27 10:19:36 linton Exp $";
+static char sccsid[] = "@(#)asm.c      1.3 (Berkeley) %G%";
 
 /*
  * Assembly language dependent symbol routines.
 
 /*
  * Assembly language dependent symbol routines.
index c5a8cb3..aabbda1 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)c.c 1.6 8/5/83";
-
-static char rcsid[] = "$Header: c.c,v 1.3 84/03/27 10:19:40 linton Exp $";
+static char sccsid[] = "@(#)c.c        1.8 (Berkeley) %G%";
 
 /*
  * C-dependent symbol routines.
 
 /*
  * C-dependent symbol routines.
index a820139..7c59d09 100644 (file)
@@ -1,6 +1,6 @@
 # Copyright (c) 1982 Regents of the University of California
 #
 # Copyright (c) 1982 Regents of the University of California
 #
-# static char sccsid[] = "@(#)cerror.vax.s     1.1.1.1 (Berkeley) %G%";
+# static char sccsid[] = "@(#)cerror.vax.s     1.2 (Berkeley) %G%";
 #
 # modified version of cerror
 #
 #
 # modified version of cerror
 #
index f41e602..becdd3a 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)check.c 1.5 8/10/83";
-
-static char rcsid[] = "$Header: check.c,v 1.3 84/03/27 10:19:54 linton Exp $";
+static char sccsid[] = "@(#)check.c    1.6 (Berkeley) %G%";
 
 /*
  * Check a tree for semantic correctness.
 
 /*
  * Check a tree for semantic correctness.
index 36f518d..431d420 100644 (file)
@@ -2,9 +2,7 @@
 
 /* Copyright (c) 1982 Regents of the University of California */
 
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)commands.y 1.9 8/17/83";
-
-static char rcsid[] = "$Header: commands.y,v 1.3 84/03/27 10:19:59 linton Exp $";
+static char sccsid[] = "@(#)commands.y 1.11 (Berkeley) %G%";
 
 /*
  * Yacc grammar for debugger commands.
 
 /*
  * Yacc grammar for debugger commands.
index 2931755..c43e2b5 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)coredump.c 1.4 1/25/83";
-
-static char rcsid[] = "$Header: coredump.c,v 1.3 84/03/27 10:20:10 linton Exp $";
+static char sccsid[] = "@(#)coredump.c 1.5 (Berkeley) %G%";
 
 /*
  * Deal with the core dump anachronism.
 
 /*
  * Deal with the core dump anachronism.
index e94b58c..b1c88ec 100644 (file)
@@ -1,7 +1,7 @@
 
 /* Copyright (c) 1982 Regents of the University of California */
 
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)debug.c    1.3.1.1\t%G%";
+static char sccsid[] = "@(#)debug.c    1.4\t%G%";
 
 /*
  *  Debug routines
 
 /*
  *  Debug routines
index 2f8059a..6858706 100644 (file)
@@ -1,3 +1,5 @@
+/*     defs.h  1.2     84/06/23        */
+
 /*
  * Public definitions, common to all.
  */
 /*
  * Public definitions, common to all.
  */
index 7ea279c..90a3c3e 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)eval.c 1.10 8/17/83";
-
-static char rcsid[] = "$Header: eval.c,v 1.3 84/03/27 10:20:23 linton Exp $";
+static char sccsid[] = "@(#)eval.c     1.12 (Berkeley) %G%";
 
 /*
  * Tree evaluation.
 
 /*
  * Tree evaluation.
index 645d23c..1f6ad0a 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)events.c 1.3 4/8/83";
-
-static char rcsid[] = "$Header: events.c,v 1.3 84/03/27 10:20:41 linton Exp $";
+static char sccsid[] = "@(#)events.c   1.4 (Berkeley) %G%";
 
 /*
  * Event/breakpoint managment.
 
 /*
  * Event/breakpoint managment.
index 148eee6..0e286f6 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)fortran.c  1.3     5/20/83";
-
-static char rcsid[] = "$Header: fortran.c,v 1.3 84/03/27 10:20:53 linton Exp $";
+static char sccsid[] = "@(#)fortran.c  1.5 (Berkeley) %G%";
 
 /*
  * FORTRAN dependent symbol routines.
 
 /*
  * FORTRAN dependent symbol routines.
index fe695d5..dec7f3e 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)keywords.c 1.3 5/18/83";
-
-static char rcsid[] = "$Header: keywords.c,v 1.3 84/03/27 10:21:05 linton Exp $";
+static char sccsid[] = "@(#)keywords.c 1.4 (Berkeley) %G%";
 
 /*
  * Keyword management.
 
 /*
  * Keyword management.
index e9033c5..6c0c7d4 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)languages.c 1.3 5/18/83";
-
-static char rcsid[] = "$Header: languages.c,v 1.3 84/03/27 10:21:09 linton Exp $";
+static char sccsid[] = "@(#)languages.c        1.4 (Berkeley) %G%";
 
 /*
  * Language management.
 
 /*
  * Language management.
index 42d7e41..e431b22 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)library.c 1.3 8/7/83";
-
-static char rcsid[] = "$Header: library.c,v 1.3 84/03/27 10:21:12 linton Exp $";
+static char sccsid[] = "@(#)library.c  1.5 (Berkeley) %G%";
 
 /*
  * General purpose routines.
 
 /*
  * General purpose routines.
index 022f703..9ae1137 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)lists.c 1.2 12/15/82";
-
-static char rcsid[] = "$Header: lists.c,v 1.3 84/03/27 10:21:21 linton Exp $";
+static char sccsid[] = "@(#)lists.c    1.3 (Berkeley) %G%";
 
 /*
  * General list definitions.
 
 /*
  * General list definitions.
index f1ef43b..f9e6bab 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)main.c 1.5 5/17/83";
-
-static char rcsid[] = "$Header: main.c,v 1.3 84/03/27 10:21:40 linton Exp $";
+static char sccsid[] = "@(#)main.c     1.7 (Berkeley) %G%";
 
 /*
  * Debugger main routine.
 
 /*
  * Debugger main routine.
index 59a6da9..c032beb 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)makedefs.c 1.2 12/15/82";
-
-static char rcsid[] = "$Header: makedefs.c,v 1.3 84/03/27 10:21:50 linton Exp $";
+static char sccsid[] = "@(#)makedefs.c 1.3 (Berkeley) %G%";
 
 /*
  * Create a definitions file (e.g. .h) from an implementation file (e.g. .c).
 
 /*
  * Create a definitions file (e.g. .h) from an implementation file (e.g. .c).
index 82f95f2..c2ac1fc 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)mappings.c 1.4 8/10/83";
-
-static char rcsid[] = "$Header: mappings.c,v 1.3 84/03/27 10:21:54 linton Exp $";
+static char sccsid[] = "@(#)mappings.c 1.5 (Berkeley) %G%";
 
 /*
  * Source-to-object and vice versa mappings.
 
 /*
  * Source-to-object and vice versa mappings.
index bba2156..a0e374c 100644 (file)
@@ -1,6 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char rcsid[] = "$Header: mkdate.c,v 1.3 84/03/27 10:21:59 linton Exp $";
+static char sccsid[] = "@(#)mkdate.c   1.3 (Berkeley) %G%";
 
 #include <stdio.h>
 #include <sys/time.h>
 
 #include <stdio.h>
 #include <sys/time.h>
index 6895223..020bc86 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)names.c 1.3 2/16/83";
-
-static char rcsid[] = "$Header: names.c,v 1.3 84/03/27 10:22:19 linton Exp $";
+static char sccsid[] = "@(#)names.c    1.4 (Berkeley) %G%";
 
 /*
  * Name are the internal representation for identifiers.
 
 /*
  * Name are the internal representation for identifiers.
index bdf6bfa..d8fcde2 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)object.c 1.14 10/22/83";
-
-static char rcsid[] = "$Header: object.c,v 1.4 84/03/27 10:22:25 linton Exp $";
+static char sccsid[] = "@(#)object.c   1.15 (Berkeley) %G%";
 
 /*
  * Object code interface, mainly for extraction of symbolic information.
 
 /*
  * Object code interface, mainly for extraction of symbolic information.
index 8f04070..250c83c 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)operators.c 1.4 5/18/83";
-
-static char rcsid[] = "$Header: operators.c,v 1.3 84/03/27 10:22:38 linton Exp $";
+static char sccsid[] = "@(#)operators.c        1.6 (Berkeley) %G%";
 
 /*
  * Tree node classes.
 
 /*
  * Tree node classes.
index 1a68ec0..b32a0de 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)ops.c 1.3 12/18/82";
-
-static char rcsid[] = "$Header: ops.c,v 1.3 84/03/27 10:22:43 linton Exp $";
+static char sccsid[] = "@(#)ops.c      1.4 (Berkeley) %G%";
 
 /*
  * Machine operators.
 
 /*
  * Machine operators.
index 1a68ec0..6c305a0 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)ops.c 1.3 12/18/82";
-
-static char rcsid[] = "$Header: ops.c,v 1.3 84/03/27 10:22:43 linton Exp $";
+static char sccsid[] = "@(#)ops.vax.c  1.4 (Berkeley) %G%";
 
 /*
  * Machine operators.
 
 /*
  * Machine operators.
index e114adf..3658d81 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)pascal.c 1.2 12/15/82";
-
-static char rcsid[] = "$Header: pascal.c,v 1.3 84/03/27 10:23:04 linton Exp $";
+static char sccsid[] = "@(#)pascal.c   1.3 (Berkeley) %G%";
 
 /*
  * Pascal-dependent symbol routines.
 
 /*
  * Pascal-dependent symbol routines.
index 2c6ac43..76bbb69 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)printsym.c 1.12 8/10/83";
-
-static char rcsid[] = "$Header: printsym.c,v 1.3 84/03/27 10:23:14 linton Exp $";
+static char sccsid[] = "@(#)printsym.c 1.13 (Berkeley) %G%";
 
 /*
  * Printing of symbolic information.
 
 /*
  * Printing of symbolic information.
index 3248619..04100b5 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)process.c 1.12 8/19/83";
-
-static char rcsid[] = "$Header: process.c,v 1.3 84/03/27 10:23:24 linton Exp $";
+static char sccsid[] = "@(#)process.c  1.13 (Berkeley) %G%";
 
 /*
  * Process management.
 
 /*
  * Process management.
index 6ec85c3..9d2a7ec 100644 (file)
@@ -1,9 +1,7 @@
 
 /* Copyright (c) 1982 Regents of the University of California */
 
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)runtime.c 1.8 8/10/83";
-
-static char rcsid[] = "$Header: runtime.c,v 1.3 84/03/27 10:23:40 linton Exp $";
+static char sccsid[] = "@(#)runtime.c  1.11 (Berkeley) %G%";
 
 /*
  * Runtime organization dependent routines, mostly dealing with
 
 /*
  * Runtime organization dependent routines, mostly dealing with
index 6ec85c3..e624a47 100644 (file)
@@ -1,9 +1,7 @@
 
 /* Copyright (c) 1982 Regents of the University of California */
 
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)runtime.c 1.8 8/10/83";
-
-static char rcsid[] = "$Header: runtime.c,v 1.3 84/03/27 10:23:40 linton Exp $";
+static char sccsid[] = "@(#)runtime.vax.c      1.11 (Berkeley) %G%";
 
 /*
  * Runtime organization dependent routines, mostly dealing with
 
 /*
  * Runtime organization dependent routines, mostly dealing with
index 69573ec..6e66ba9 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)scanner.c 1.8 8/5/83";
-
-static char rcsid[] = "$Header: scanner.c,v 1.3 84/03/27 10:23:50 linton Exp $";
+static char sccsid[] = "@(#)scanner.c  1.9 (Berkeley) %G%";
 
 /*
  * Debugger scanner.
 
 /*
  * Debugger scanner.
index c20232c..3c86bac 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)source.c 1.9 8/5/83";
-
-static char rcsid[] = "$Header: source.c,v 1.3 84/03/27 10:23:58 linton Exp $";
+static char sccsid[] = "@(#)source.c   1.11 (Berkeley) %G%";
 
 /*
  * Source file management.
 
 /*
  * Source file management.
index 2f745e4..451ef47 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)symbols.c 1.10 8/10/83";
-
-static char rcsid[] = "$Header: symbols.c,v 1.4 84/03/27 10:24:18 linton Exp $";
+static char sccsid[] = "@(#)symbols.c  1.13 (Berkeley) %G%";
 
 /*
  * Symbol management.
 
 /*
  * Symbol management.
index 5e8cd52..e0f3b83 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)tree.c 1.5 8/10/83";
-
-static char rcsid[] = "$Header: tree.c,v 1.3 84/03/27 10:24:40 linton Exp $";
+static char sccsid[] = "@(#)tree.c     1.6 (Berkeley) %G%";
 
 /*
  * Parse tree management.
 
 /*
  * Parse tree management.
index 622d959..e618b5a 100644 (file)
@@ -1,8 +1,6 @@
 /* Copyright (c) 1982 Regents of the University of California */
 
 /* Copyright (c) 1982 Regents of the University of California */
 
-static char sccsid[] = "@(#)machine.c 1.9 8/5/83";
-
-static char rcsid[] = "$Header: machine.c,v 1.3 84/03/27 10:21:26 linton Exp $";
+static char sccsid[] = "@(#)vax.c      1.10 (Berkeley) %G%";
 
 /*
  * Target machine dependent stuff.
 
 /*
  * Target machine dependent stuff.