Attached simple external ddb commands show rtc',
show pgrpdump'
and `show cbstat'. The pgrpdump code was previously controlled by `#ifdef DEBUG'.
This commit is contained in:
parent
6337f4efa8
commit
831031ce00
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)clock.c 7.2 (Berkeley) 5/12/91
|
||||
* $Id: clock.c,v 1.67 1996/08/02 21:16:26 bde Exp $
|
||||
* $Id: clock.c,v 1.68 1996/09/14 04:27:39 bde Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -47,7 +47,7 @@
|
||||
/*
|
||||
* Primitive clock interrupt routines.
|
||||
*/
|
||||
#include "opt_ddb.h"
|
||||
|
||||
#include "opt_clock.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -323,16 +323,18 @@ rtcintr(struct clockframe frame)
|
||||
}
|
||||
}
|
||||
|
||||
#include "opt_ddb.h"
|
||||
#ifdef DDB
|
||||
static void
|
||||
DDB_printrtc(void)
|
||||
#include <ddb/ddb.h>
|
||||
|
||||
DB_SHOW_COMMAND(rtc, rtc)
|
||||
{
|
||||
printf("%02x/%02x/%02x %02x:%02x:%02x, A = %02x, B = %02x, C = %02x\n",
|
||||
rtcin(RTC_YEAR), rtcin(RTC_MONTH), rtcin(RTC_DAY),
|
||||
rtcin(RTC_HRS), rtcin(RTC_MIN), rtcin(RTC_SEC),
|
||||
rtcin(RTC_STATUSA), rtcin(RTC_STATUSB), rtcin(RTC_INTR));
|
||||
}
|
||||
#endif
|
||||
#endif /* DDB */
|
||||
|
||||
static int
|
||||
getit(void)
|
||||
|
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)clock.c 7.2 (Berkeley) 5/12/91
|
||||
* $Id: clock.c,v 1.67 1996/08/02 21:16:26 bde Exp $
|
||||
* $Id: clock.c,v 1.68 1996/09/14 04:27:39 bde Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -47,7 +47,7 @@
|
||||
/*
|
||||
* Primitive clock interrupt routines.
|
||||
*/
|
||||
#include "opt_ddb.h"
|
||||
|
||||
#include "opt_clock.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -323,16 +323,18 @@ rtcintr(struct clockframe frame)
|
||||
}
|
||||
}
|
||||
|
||||
#include "opt_ddb.h"
|
||||
#ifdef DDB
|
||||
static void
|
||||
DDB_printrtc(void)
|
||||
#include <ddb/ddb.h>
|
||||
|
||||
DB_SHOW_COMMAND(rtc, rtc)
|
||||
{
|
||||
printf("%02x/%02x/%02x %02x:%02x:%02x, A = %02x, B = %02x, C = %02x\n",
|
||||
rtcin(RTC_YEAR), rtcin(RTC_MONTH), rtcin(RTC_DAY),
|
||||
rtcin(RTC_HRS), rtcin(RTC_MIN), rtcin(RTC_SEC),
|
||||
rtcin(RTC_STATUSA), rtcin(RTC_STATUSB), rtcin(RTC_INTR));
|
||||
}
|
||||
#endif
|
||||
#endif /* DDB */
|
||||
|
||||
static int
|
||||
getit(void)
|
||||
|
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)clock.c 7.2 (Berkeley) 5/12/91
|
||||
* $Id: clock.c,v 1.67 1996/08/02 21:16:26 bde Exp $
|
||||
* $Id: clock.c,v 1.68 1996/09/14 04:27:39 bde Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -47,7 +47,7 @@
|
||||
/*
|
||||
* Primitive clock interrupt routines.
|
||||
*/
|
||||
#include "opt_ddb.h"
|
||||
|
||||
#include "opt_clock.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -323,16 +323,18 @@ rtcintr(struct clockframe frame)
|
||||
}
|
||||
}
|
||||
|
||||
#include "opt_ddb.h"
|
||||
#ifdef DDB
|
||||
static void
|
||||
DDB_printrtc(void)
|
||||
#include <ddb/ddb.h>
|
||||
|
||||
DB_SHOW_COMMAND(rtc, rtc)
|
||||
{
|
||||
printf("%02x/%02x/%02x %02x:%02x:%02x, A = %02x, B = %02x, C = %02x\n",
|
||||
rtcin(RTC_YEAR), rtcin(RTC_MONTH), rtcin(RTC_DAY),
|
||||
rtcin(RTC_HRS), rtcin(RTC_MIN), rtcin(RTC_SEC),
|
||||
rtcin(RTC_STATUSA), rtcin(RTC_STATUSB), rtcin(RTC_INTR));
|
||||
}
|
||||
#endif
|
||||
#endif /* DDB */
|
||||
|
||||
static int
|
||||
getit(void)
|
||||
|
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)clock.c 7.2 (Berkeley) 5/12/91
|
||||
* $Id: clock.c,v 1.67 1996/08/02 21:16:26 bde Exp $
|
||||
* $Id: clock.c,v 1.68 1996/09/14 04:27:39 bde Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -47,7 +47,7 @@
|
||||
/*
|
||||
* Primitive clock interrupt routines.
|
||||
*/
|
||||
#include "opt_ddb.h"
|
||||
|
||||
#include "opt_clock.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -323,16 +323,18 @@ rtcintr(struct clockframe frame)
|
||||
}
|
||||
}
|
||||
|
||||
#include "opt_ddb.h"
|
||||
#ifdef DDB
|
||||
static void
|
||||
DDB_printrtc(void)
|
||||
#include <ddb/ddb.h>
|
||||
|
||||
DB_SHOW_COMMAND(rtc, rtc)
|
||||
{
|
||||
printf("%02x/%02x/%02x %02x:%02x:%02x, A = %02x, B = %02x, C = %02x\n",
|
||||
rtcin(RTC_YEAR), rtcin(RTC_MONTH), rtcin(RTC_DAY),
|
||||
rtcin(RTC_HRS), rtcin(RTC_MIN), rtcin(RTC_SEC),
|
||||
rtcin(RTC_STATUSA), rtcin(RTC_STATUSB), rtcin(RTC_INTR));
|
||||
}
|
||||
#endif
|
||||
#endif /* DDB */
|
||||
|
||||
static int
|
||||
getit(void)
|
||||
|
@ -34,7 +34,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* from: @(#)clock.c 7.2 (Berkeley) 5/12/91
|
||||
* $Id: clock.c,v 1.67 1996/08/02 21:16:26 bde Exp $
|
||||
* $Id: clock.c,v 1.68 1996/09/14 04:27:39 bde Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
@ -47,7 +47,7 @@
|
||||
/*
|
||||
* Primitive clock interrupt routines.
|
||||
*/
|
||||
#include "opt_ddb.h"
|
||||
|
||||
#include "opt_clock.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -323,16 +323,18 @@ rtcintr(struct clockframe frame)
|
||||
}
|
||||
}
|
||||
|
||||
#include "opt_ddb.h"
|
||||
#ifdef DDB
|
||||
static void
|
||||
DDB_printrtc(void)
|
||||
#include <ddb/ddb.h>
|
||||
|
||||
DB_SHOW_COMMAND(rtc, rtc)
|
||||
{
|
||||
printf("%02x/%02x/%02x %02x:%02x:%02x, A = %02x, B = %02x, C = %02x\n",
|
||||
rtcin(RTC_YEAR), rtcin(RTC_MONTH), rtcin(RTC_DAY),
|
||||
rtcin(RTC_HRS), rtcin(RTC_MIN), rtcin(RTC_SEC),
|
||||
rtcin(RTC_STATUSA), rtcin(RTC_STATUSB), rtcin(RTC_INTR));
|
||||
}
|
||||
#endif
|
||||
#endif /* DDB */
|
||||
|
||||
static int
|
||||
getit(void)
|
||||
|
@ -31,7 +31,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)kern_proc.c 8.7 (Berkeley) 2/14/95
|
||||
* $Id: kern_proc.c,v 1.20 1996/06/12 05:07:30 gpalmer Exp $
|
||||
* $Id: kern_proc.c,v 1.21 1996/07/09 16:51:10 wollman Exp $
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -77,9 +77,6 @@ LIST_HEAD(uihashhead, uidinfo) *uihashtbl;
|
||||
static u_long uihash; /* size of hash table - 1 */
|
||||
|
||||
static void orphanpg __P((struct pgrp *pg));
|
||||
#ifdef DEBUG
|
||||
static void DDB_pgrpdump __P((void));
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Other process lists
|
||||
@ -366,9 +363,11 @@ orphanpg(pg)
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef DEBUG
|
||||
static void
|
||||
DDB_pgrpdump()
|
||||
#include "opt_ddb.h"
|
||||
#ifdef DDB
|
||||
#include <ddb/ddb.h>
|
||||
|
||||
DB_SHOW_COMMAND(pgrpdump, pgrpdump)
|
||||
{
|
||||
register struct pgrp *pgrp;
|
||||
register struct proc *p;
|
||||
@ -391,7 +390,7 @@ DDB_pgrpdump()
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif /* DEBUG */
|
||||
#endif /* DDB */
|
||||
|
||||
/*
|
||||
* Fill in an eproc structure for the specified process.
|
||||
|
@ -24,13 +24,12 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: tty_subr.c,v 1.21 1996/01/04 21:12:23 wollman Exp $
|
||||
* $Id: tty_subr.c,v 1.22 1996/04/08 01:22:00 davidg Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
* clist support routines
|
||||
*/
|
||||
#include "opt_ddb.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
@ -57,11 +56,11 @@ static void cblock_alloc_cblocks __P((int number));
|
||||
static void cblock_free __P((struct cblock *cblockp));
|
||||
static void cblock_free_cblocks __P((int number));
|
||||
|
||||
#include "opt_ddb.h"
|
||||
#ifdef DDB
|
||||
static void DDB_cbstat __P((void));
|
||||
#include <ddb/ddb.h>
|
||||
|
||||
static void
|
||||
DDB_cbstat()
|
||||
DB_SHOW_COMMAND(cbstat, cbstat)
|
||||
{
|
||||
printf(
|
||||
"tot = %d (active = %d, free = %d (reserved = %d, slush = %d))\n",
|
||||
|
@ -24,13 +24,12 @@
|
||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* $Id: tty_subr.c,v 1.21 1996/01/04 21:12:23 wollman Exp $
|
||||
* $Id: tty_subr.c,v 1.22 1996/04/08 01:22:00 davidg Exp $
|
||||
*/
|
||||
|
||||
/*
|
||||
* clist support routines
|
||||
*/
|
||||
#include "opt_ddb.h"
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/kernel.h>
|
||||
@ -57,11 +56,11 @@ static void cblock_alloc_cblocks __P((int number));
|
||||
static void cblock_free __P((struct cblock *cblockp));
|
||||
static void cblock_free_cblocks __P((int number));
|
||||
|
||||
#include "opt_ddb.h"
|
||||
#ifdef DDB
|
||||
static void DDB_cbstat __P((void));
|
||||
#include <ddb/ddb.h>
|
||||
|
||||
static void
|
||||
DDB_cbstat()
|
||||
DB_SHOW_COMMAND(cbstat, cbstat)
|
||||
{
|
||||
printf(
|
||||
"tot = %d (active = %d, free = %d (reserved = %d, slush = %d))\n",
|
||||
|
Loading…
x
Reference in New Issue
Block a user