the "cont" command now has an optional argument to specify a
authorMark Linton <linton@ucbvax.Berkeley.EDU>
Fri, 8 Apr 1983 16:25:23 +0000 (08:25 -0800)
committerMark Linton <linton@ucbvax.Berkeley.EDU>
Fri, 8 Apr 1983 16:25:23 +0000 (08:25 -0800)
signal to start up the process with

SCCS-vsn: old/dbx/commands.y 1.4

usr/src/old/dbx/commands.y

index e8d8a48..d13cad4 100644 (file)
@@ -2,7 +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.3 %G%";
+static char sccsid[] = "@(#)commands.y 1.4 %G%";
 
 /*
  * Yacc grammar for debugger commands.
 
 /*
  * Yacc grammar for debugger commands.
@@ -140,7 +140,12 @@ command:
 |
     CONT
 {
 |
     CONT
 {
-       $$ = build(O_CONT);
+       $$ = build(O_CONT, (long) 0);
+}
+|
+    CONT INT
+{
+       $$ = build(O_CONT, $2);
 }
 |
     DELETE INT
 }
 |
     DELETE INT