1997-02-04 02:36:09 +03:00
|
|
|
/* $NetBSD: db_command.c,v 1.21 1997/02/03 23:43:35 mycroft Exp $ */
|
1994-06-29 10:29:24 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Mach Operating System
|
|
|
|
* Copyright (c) 1991,1990 Carnegie Mellon University
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify and distribute this software and its
|
|
|
|
* documentation is hereby granted, provided that both the copyright
|
|
|
|
* notice and this permission notice appear in all copies of the
|
|
|
|
* software, derivative works or modified versions, and any portions
|
|
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
|
|
*
|
|
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
|
|
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
|
|
|
|
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
* Carnegie Mellon requests users of this software to return to
|
|
|
|
*
|
|
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
|
|
* School of Computer Science
|
|
|
|
* Carnegie Mellon University
|
|
|
|
* Pittsburgh PA 15213-3890
|
|
|
|
*
|
|
|
|
* any improvements or extensions that they make and grant Carnegie the
|
|
|
|
* rights to redistribute these changes.
|
|
|
|
*/
|
1993-08-02 21:48:44 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Command dispatcher.
|
|
|
|
*/
|
1993-12-18 07:46:25 +03:00
|
|
|
#include <sys/param.h>
|
1996-03-07 17:33:39 +03:00
|
|
|
#include <sys/systm.h>
|
1993-12-18 07:46:25 +03:00
|
|
|
#include <sys/proc.h>
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <machine/db_machdep.h> /* type definitions */
|
|
|
|
|
|
|
|
#include <ddb/db_lex.h>
|
|
|
|
#include <ddb/db_output.h>
|
1994-03-23 23:00:56 +03:00
|
|
|
#include <ddb/db_command.h>
|
1996-02-05 04:56:47 +03:00
|
|
|
#include <ddb/db_break.h>
|
|
|
|
#include <ddb/db_watch.h>
|
|
|
|
#include <ddb/db_run.h>
|
|
|
|
#include <ddb/db_variables.h>
|
|
|
|
#include <ddb/db_interface.h>
|
|
|
|
#include <ddb/db_sym.h>
|
|
|
|
#include <ddb/db_extern.h>
|
|
|
|
|
|
|
|
#include <vm/vm.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Exported global variables
|
|
|
|
*/
|
|
|
|
boolean_t db_cmd_loop_done;
|
1996-02-13 20:39:01 +03:00
|
|
|
label_t *db_recover;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* if 'ed' style: 'dot' is set at start of last item printed,
|
|
|
|
* and '+' points to next line.
|
|
|
|
* Otherwise: 'dot' points to next item, '..' points to last.
|
|
|
|
*/
|
|
|
|
boolean_t db_ed_style = TRUE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Utility routine - discard tokens through end-of-line.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
db_skip_to_eol()
|
|
|
|
{
|
|
|
|
int t;
|
|
|
|
do {
|
|
|
|
t = db_read_token();
|
|
|
|
} while (t != tEOL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Results of command search.
|
|
|
|
*/
|
|
|
|
#define CMD_UNIQUE 0
|
|
|
|
#define CMD_FOUND 1
|
|
|
|
#define CMD_NONE 2
|
|
|
|
#define CMD_AMBIGUOUS 3
|
|
|
|
#define CMD_HELP 4
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Search for command prefix.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
db_cmd_search(name, table, cmdp)
|
1994-03-23 23:00:56 +03:00
|
|
|
char *name;
|
|
|
|
struct db_command *table;
|
|
|
|
struct db_command **cmdp; /* out */
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-03-23 23:00:56 +03:00
|
|
|
struct db_command *cmd;
|
|
|
|
int result = CMD_NONE;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
for (cmd = table; cmd->name != 0; cmd++) {
|
|
|
|
register char *lp;
|
|
|
|
register char *rp;
|
|
|
|
register int c;
|
|
|
|
|
|
|
|
lp = name;
|
|
|
|
rp = cmd->name;
|
|
|
|
while ((c = *lp) == *rp) {
|
|
|
|
if (c == 0) {
|
|
|
|
/* complete match */
|
|
|
|
*cmdp = cmd;
|
|
|
|
return (CMD_UNIQUE);
|
|
|
|
}
|
|
|
|
lp++;
|
|
|
|
rp++;
|
|
|
|
}
|
|
|
|
if (c == 0) {
|
|
|
|
/* end of name, not end of command -
|
|
|
|
partial match */
|
|
|
|
if (result == CMD_FOUND) {
|
|
|
|
result = CMD_AMBIGUOUS;
|
|
|
|
/* but keep looking for a full match -
|
|
|
|
this lets us match single letters */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
*cmdp = cmd;
|
|
|
|
result = CMD_FOUND;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (result == CMD_NONE) {
|
|
|
|
/* check for 'help' */
|
|
|
|
if (name[0] == 'h' && name[1] == 'e'
|
|
|
|
&& name[2] == 'l' && name[3] == 'p')
|
|
|
|
result = CMD_HELP;
|
|
|
|
}
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
db_cmd_list(table)
|
1994-03-23 23:00:56 +03:00
|
|
|
struct db_command *table;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-03-23 23:00:56 +03:00
|
|
|
register struct db_command *cmd;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
for (cmd = table; cmd->name != 0; cmd++) {
|
|
|
|
db_printf("%-12s", cmd->name);
|
|
|
|
db_end_line();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
db_command(last_cmdp, cmd_table)
|
1994-03-23 23:00:56 +03:00
|
|
|
struct db_command **last_cmdp; /* IN_OUT */
|
|
|
|
struct db_command *cmd_table;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1994-03-23 23:00:56 +03:00
|
|
|
struct db_command *cmd;
|
1993-03-21 12:45:37 +03:00
|
|
|
int t;
|
|
|
|
char modif[TOK_STRING_SIZE];
|
|
|
|
db_expr_t addr, count;
|
1996-02-05 04:56:47 +03:00
|
|
|
boolean_t have_addr = FALSE;
|
1993-03-21 12:45:37 +03:00
|
|
|
int result;
|
|
|
|
|
|
|
|
t = db_read_token();
|
|
|
|
if (t == tEOL) {
|
|
|
|
/* empty line repeats last command, at 'next' */
|
|
|
|
cmd = *last_cmdp;
|
|
|
|
addr = (db_expr_t)db_next;
|
|
|
|
have_addr = FALSE;
|
|
|
|
count = 1;
|
|
|
|
modif[0] = '\0';
|
|
|
|
}
|
|
|
|
else if (t == tEXCL) {
|
1996-02-05 04:56:47 +03:00
|
|
|
db_fncall(0, 0, 0, NULL);
|
1993-03-21 12:45:37 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (t != tIDENT) {
|
|
|
|
db_printf("?\n");
|
|
|
|
db_flush_lex();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/*
|
|
|
|
* Search for command
|
|
|
|
*/
|
|
|
|
while (cmd_table) {
|
|
|
|
result = db_cmd_search(db_tok_string,
|
|
|
|
cmd_table,
|
|
|
|
&cmd);
|
|
|
|
switch (result) {
|
|
|
|
case CMD_NONE:
|
|
|
|
db_printf("No such command\n");
|
|
|
|
db_flush_lex();
|
|
|
|
return;
|
|
|
|
case CMD_AMBIGUOUS:
|
|
|
|
db_printf("Ambiguous\n");
|
|
|
|
db_flush_lex();
|
|
|
|
return;
|
|
|
|
case CMD_HELP:
|
|
|
|
db_cmd_list(cmd_table);
|
|
|
|
db_flush_lex();
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ((cmd_table = cmd->more) != 0) {
|
|
|
|
t = db_read_token();
|
|
|
|
if (t != tIDENT) {
|
|
|
|
db_cmd_list(cmd_table);
|
|
|
|
db_flush_lex();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((cmd->flag & CS_OWN) == 0) {
|
|
|
|
/*
|
|
|
|
* Standard syntax:
|
|
|
|
* command [/modifier] [addr] [,count]
|
|
|
|
*/
|
|
|
|
t = db_read_token();
|
|
|
|
if (t == tSLASH) {
|
|
|
|
t = db_read_token();
|
|
|
|
if (t != tIDENT) {
|
|
|
|
db_printf("Bad modifier\n");
|
|
|
|
db_flush_lex();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
db_strcpy(modif, db_tok_string);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
db_unread_token(t);
|
|
|
|
modif[0] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (db_expression(&addr)) {
|
|
|
|
db_dot = (db_addr_t) addr;
|
|
|
|
db_last_addr = db_dot;
|
|
|
|
have_addr = TRUE;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
addr = (db_expr_t) db_dot;
|
|
|
|
have_addr = FALSE;
|
|
|
|
}
|
|
|
|
t = db_read_token();
|
|
|
|
if (t == tCOMMA) {
|
|
|
|
if (!db_expression(&count)) {
|
|
|
|
db_printf("Count missing\n");
|
|
|
|
db_flush_lex();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
db_unread_token(t);
|
|
|
|
count = -1;
|
|
|
|
}
|
|
|
|
if ((cmd->flag & CS_MORE) == 0) {
|
|
|
|
db_skip_to_eol();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*last_cmdp = cmd;
|
|
|
|
if (cmd != 0) {
|
|
|
|
/*
|
|
|
|
* Execute the command.
|
|
|
|
*/
|
|
|
|
(*cmd->fcn)(addr, have_addr, count, modif);
|
|
|
|
|
|
|
|
if (cmd->flag & CS_SET_DOT) {
|
|
|
|
/*
|
|
|
|
* If command changes dot, set dot to
|
|
|
|
* previous address displayed (if 'ed' style).
|
|
|
|
*/
|
|
|
|
if (db_ed_style) {
|
|
|
|
db_dot = db_prev;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
db_dot = db_next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/*
|
|
|
|
* If command does not change dot,
|
|
|
|
* set 'next' location to be the same.
|
|
|
|
*/
|
|
|
|
db_next = db_dot;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1993-07-15 22:35:00 +04:00
|
|
|
/*ARGSUSED*/
|
|
|
|
void
|
|
|
|
db_map_print_cmd(addr, have_addr, count, modif)
|
|
|
|
db_expr_t addr;
|
|
|
|
int have_addr;
|
|
|
|
db_expr_t count;
|
|
|
|
char * modif;
|
|
|
|
{
|
|
|
|
boolean_t full = FALSE;
|
|
|
|
|
|
|
|
if (modif[0] == 'f')
|
|
|
|
full = TRUE;
|
|
|
|
|
1996-02-05 04:56:47 +03:00
|
|
|
_vm_map_print((vm_map_t) addr, full, db_printf);
|
1993-07-15 22:35:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
void
|
|
|
|
db_object_print_cmd(addr, have_addr, count, modif)
|
|
|
|
db_expr_t addr;
|
|
|
|
int have_addr;
|
|
|
|
db_expr_t count;
|
|
|
|
char * modif;
|
|
|
|
{
|
|
|
|
boolean_t full = FALSE;
|
|
|
|
|
|
|
|
if (modif[0] == 'f')
|
|
|
|
full = TRUE;
|
|
|
|
|
1996-02-05 04:56:47 +03:00
|
|
|
_vm_object_print((vm_object_t) addr, full, db_printf);
|
1993-07-15 22:35:00 +04:00
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* 'show' commands
|
|
|
|
*/
|
|
|
|
|
1994-03-23 23:00:56 +03:00
|
|
|
struct db_command db_show_all_cmds[] = {
|
1996-02-05 04:56:47 +03:00
|
|
|
{ "procs", db_show_all_procs, 0, NULL },
|
|
|
|
{ "callout", db_show_callout, 0, NULL },
|
|
|
|
{ NULL, NULL, 0, NULL }
|
1993-03-21 12:45:37 +03:00
|
|
|
};
|
|
|
|
|
1994-03-23 23:00:56 +03:00
|
|
|
struct db_command db_show_cmds[] = {
|
1996-02-05 04:56:47 +03:00
|
|
|
{ "all", NULL, 0, db_show_all_cmds },
|
|
|
|
{ "registers", db_show_regs, 0, NULL },
|
|
|
|
{ "breaks", db_listbreak_cmd, 0, NULL },
|
|
|
|
{ "watches", db_listwatch_cmd, 0, NULL },
|
|
|
|
{ "map", db_map_print_cmd, 0, NULL },
|
|
|
|
{ "object", db_object_print_cmd, 0, NULL },
|
|
|
|
{ NULL, NULL, 0, NULL, }
|
1993-03-21 12:45:37 +03:00
|
|
|
};
|
|
|
|
|
1994-03-23 23:00:56 +03:00
|
|
|
struct db_command db_command_table[] = {
|
1993-09-13 18:08:54 +04:00
|
|
|
#ifdef DB_MACHINE_COMMANDS
|
|
|
|
/* this must be the first entry, if it exists */
|
1996-02-05 04:56:47 +03:00
|
|
|
{ "machine", NULL, 0, NULL},
|
1993-09-13 18:08:54 +04:00
|
|
|
#endif
|
1996-02-05 04:56:47 +03:00
|
|
|
{ "print", db_print_cmd, 0, NULL },
|
|
|
|
{ "examine", db_examine_cmd, CS_SET_DOT, NULL },
|
|
|
|
{ "x", db_examine_cmd, CS_SET_DOT, NULL },
|
|
|
|
{ "search", db_search_cmd, CS_OWN|CS_SET_DOT, NULL },
|
|
|
|
{ "set", db_set_cmd, CS_OWN, NULL },
|
|
|
|
{ "write", db_write_cmd, CS_MORE|CS_SET_DOT, NULL },
|
|
|
|
{ "w", db_write_cmd, CS_MORE|CS_SET_DOT, NULL },
|
|
|
|
{ "delete", db_delete_cmd, 0, NULL },
|
|
|
|
{ "d", db_delete_cmd, 0, NULL },
|
|
|
|
{ "break", db_breakpoint_cmd, 0, NULL },
|
|
|
|
{ "dwatch", db_deletewatch_cmd, 0, NULL },
|
|
|
|
{ "watch", db_watchpoint_cmd, CS_MORE, NULL },
|
|
|
|
{ "step", db_single_step_cmd, 0, NULL },
|
|
|
|
{ "s", db_single_step_cmd, 0, NULL },
|
|
|
|
{ "continue", db_continue_cmd, 0, NULL },
|
|
|
|
{ "c", db_continue_cmd, 0, NULL },
|
|
|
|
{ "until", db_trace_until_call_cmd,0, NULL },
|
|
|
|
{ "next", db_trace_until_matching_cmd,0, NULL },
|
|
|
|
{ "match", db_trace_until_matching_cmd,0, NULL },
|
|
|
|
{ "trace", db_stack_trace_cmd, 0, NULL },
|
|
|
|
{ "call", db_fncall, CS_OWN, NULL },
|
|
|
|
{ "ps", db_show_all_procs, 0, NULL },
|
|
|
|
{ "callout", db_show_callout, 0, NULL },
|
|
|
|
{ "show", NULL, 0, db_show_cmds },
|
|
|
|
{ NULL, NULL, 0, NULL }
|
1993-03-21 12:45:37 +03:00
|
|
|
};
|
|
|
|
|
1993-09-13 18:08:54 +04:00
|
|
|
#ifdef DB_MACHINE_COMMANDS
|
|
|
|
|
|
|
|
/* this function should be called to install the machine dependent
|
|
|
|
commands. It should be called before the debugger is enabled */
|
|
|
|
void db_machine_commands_install(ptr)
|
|
|
|
struct db_command *ptr;
|
|
|
|
{
|
|
|
|
db_command_table[0].more = ptr;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
1994-03-23 23:00:56 +03:00
|
|
|
struct db_command *db_last_command = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
void
|
|
|
|
db_help_cmd()
|
|
|
|
{
|
1994-03-23 23:00:56 +03:00
|
|
|
struct db_command *cmd = db_command_table;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
while (cmd->name != 0) {
|
|
|
|
db_printf("%-12s", cmd->name);
|
|
|
|
db_end_line();
|
|
|
|
cmd++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
db_command_loop()
|
|
|
|
{
|
1996-02-13 20:39:01 +03:00
|
|
|
label_t db_jmpbuf;
|
|
|
|
label_t *savejmp;
|
1994-01-10 01:35:10 +03:00
|
|
|
extern int db_output_line;
|
1993-07-15 22:35:00 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Initialize 'prev' and 'next' to dot.
|
|
|
|
*/
|
|
|
|
db_prev = db_dot;
|
|
|
|
db_next = db_dot;
|
|
|
|
|
|
|
|
db_cmd_loop_done = 0;
|
1996-02-13 20:39:01 +03:00
|
|
|
|
|
|
|
savejmp = db_recover;
|
|
|
|
db_recover = &db_jmpbuf;
|
|
|
|
(void) setjmp(&db_jmpbuf);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-01-10 01:35:10 +03:00
|
|
|
while (!db_cmd_loop_done) {
|
|
|
|
if (db_print_position() != 0)
|
|
|
|
db_printf("\n");
|
|
|
|
db_output_line = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-01-10 01:35:10 +03:00
|
|
|
db_printf("db> ");
|
|
|
|
(void) db_read_line();
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-01-10 01:35:10 +03:00
|
|
|
db_command(&db_last_command, db_command_table);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-01-10 01:35:10 +03:00
|
|
|
|
|
|
|
db_recover = savejmp;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
db_error(s)
|
|
|
|
char *s;
|
|
|
|
{
|
|
|
|
if (s)
|
|
|
|
db_printf(s);
|
|
|
|
db_flush_lex();
|
1996-03-14 00:06:38 +03:00
|
|
|
longjmp(db_recover);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Call random function:
|
|
|
|
* !expr(arg,arg,arg)
|
|
|
|
*/
|
1996-02-05 04:56:47 +03:00
|
|
|
/*ARGSUSED*/
|
1993-03-21 12:45:37 +03:00
|
|
|
void
|
1996-02-05 04:56:47 +03:00
|
|
|
db_fncall(addr, have_addr, count, modif)
|
|
|
|
db_expr_t addr;
|
|
|
|
int have_addr;
|
|
|
|
db_expr_t count;
|
|
|
|
char * modif;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
db_expr_t fn_addr;
|
|
|
|
#define MAXARGS 11
|
|
|
|
db_expr_t args[MAXARGS];
|
|
|
|
int nargs = 0;
|
|
|
|
db_expr_t retval;
|
1996-02-05 04:56:47 +03:00
|
|
|
db_expr_t (*func) __P((db_expr_t, ...));
|
1993-03-21 12:45:37 +03:00
|
|
|
int t;
|
|
|
|
|
|
|
|
if (!db_expression(&fn_addr)) {
|
|
|
|
db_printf("Bad function\n");
|
|
|
|
db_flush_lex();
|
|
|
|
return;
|
|
|
|
}
|
1996-02-05 04:56:47 +03:00
|
|
|
func = (db_expr_t (*) __P((db_expr_t, ...))) fn_addr;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
t = db_read_token();
|
|
|
|
if (t == tLPAREN) {
|
|
|
|
if (db_expression(&args[0])) {
|
|
|
|
nargs++;
|
|
|
|
while ((t = db_read_token()) == tCOMMA) {
|
|
|
|
if (nargs == MAXARGS) {
|
|
|
|
db_printf("Too many arguments\n");
|
|
|
|
db_flush_lex();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!db_expression(&args[nargs])) {
|
|
|
|
db_printf("Argument missing\n");
|
|
|
|
db_flush_lex();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
nargs++;
|
|
|
|
}
|
|
|
|
db_unread_token(t);
|
|
|
|
}
|
|
|
|
if (db_read_token() != tRPAREN) {
|
|
|
|
db_printf("?\n");
|
|
|
|
db_flush_lex();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
db_skip_to_eol();
|
|
|
|
|
|
|
|
while (nargs < MAXARGS) {
|
|
|
|
args[nargs++] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = (*func)(args[0], args[1], args[2], args[3], args[4],
|
1996-03-31 01:30:03 +03:00
|
|
|
args[5], args[6], args[7], args[8], args[9]);
|
1997-02-04 02:36:09 +03:00
|
|
|
db_printf("%#ln\n", retval);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|