--- trunk/src/include/emul.h 2007/10/08 16:18:00 4 +++ trunk/src/include/emul.h 2007/10/08 16:19:56 24 @@ -28,7 +28,7 @@ * SUCH DAMAGE. * * - * $Id: emul.h,v 1.36 2005/03/14 19:14:03 debug Exp $ + * $Id: emul.h,v 1.38 2006/03/10 16:46:54 debug Exp $ */ #include "misc.h" @@ -37,14 +37,18 @@ struct net; struct emul { - int next_serial_nr; + char *name; + int next_serial_nr; struct net *net; - char *name; - int n_machines; struct machine **machines; + + /* Additional debugger commands to run before + starting the simulation: */ + int n_debugger_cmds; + char **debugger_cmds; }; @@ -60,7 +64,7 @@ /* emul_parse.c: */ -void emul_parse_config(struct emul *e, FILE *f); +void emul_parse_config(struct emul *e, char *fname); #endif /* EMUL_H */