Redo the previous commit in a more Bruce-friendly fashion.

Urged by:	bde
This commit is contained in:
phk 1998-05-19 18:42:09 +00:00
parent 44f11cb42e
commit 34fa716eb7
3 changed files with 5 additions and 11 deletions

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_command.c,v 1.25 1998/02/13 02:19:29 bde Exp $
* $Id: db_command.c,v 1.26 1998/05/19 11:02:22 phk Exp $
*/
/*
@ -369,7 +369,6 @@ static struct command db_show_cmds[] = {
{ "all", 0, 0, db_show_all_cmds },
{ "registers", db_show_regs, 0, 0 },
{ "breaks", db_listbreak_cmd, 0, 0 },
{ "msgbuf", db_show_msgbuf, 0, 0 },
#if 0
{ "thread", db_show_one_thread, 0, 0 },
#endif

View File

@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
* $Id: db_print.c,v 1.14 1997/06/14 11:52:36 bde Exp $
* $Id: db_print.c,v 1.15 1998/05/19 11:02:23 phk Exp $
*/
/*
@ -35,6 +35,7 @@
* Miscellaneous printing.
*/
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/msgbuf.h>
#include <ddb/ddb.h>
@ -67,12 +68,7 @@ db_show_regs(dummy1, dummy2, dummy3, dummy4)
}
void
db_show_msgbuf(dummy1, dummy2, dummy3, dummy4)
db_expr_t dummy1;
boolean_t dummy2;
db_expr_t dummy3;
char * dummy4;
DB_SHOW_COMMAND(msgbuf, db_show_msgbuf)
{
int i,j;

View File

@ -27,7 +27,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: ddb.h,v 1.15 1998/02/13 02:19:29 bde Exp $
* $Id: ddb.h,v 1.16 1998/05/19 11:02:24 phk Exp $
*/
/*
@ -116,7 +116,6 @@ db_cmdfcn_t db_print_cmd;
db_cmdfcn_t db_ps;
db_cmdfcn_t db_search_cmd;
db_cmdfcn_t db_set_cmd;
db_cmdfcn_t db_show_msgbuf;
db_cmdfcn_t db_show_regs;
db_cmdfcn_t db_single_step_cmd;
db_cmdfcn_t db_stack_trace_cmd;