kernel - doesn't do lock timings any more

This commit is contained in:
Ben Gras 2011-02-04 13:42:17 +00:00
parent 0a70e23d1d
commit 95702f970b
3 changed files with 0 additions and 11 deletions

View file

@ -24,7 +24,6 @@
*/ */
#define DEBUG_ENABLE_IPC_WARNINGS 1 #define DEBUG_ENABLE_IPC_WARNINGS 1
#define DEBUG_STACKTRACE 1 #define DEBUG_STACKTRACE 1
#define DEBUG_TIME_LOCKS 1
/* Sanity checks. */ /* Sanity checks. */
#define DEBUG_SANITYCHECKS 0 #define DEBUG_SANITYCHECKS 0

View file

@ -69,9 +69,6 @@ EXTERN int config_no_smp; /* optionaly turn off SMP */
EXTERN int vm_running; EXTERN int vm_running;
EXTERN int catch_pagefaults; EXTERN int catch_pagefaults;
/* Timing */
EXTERN util_timingdata_t timingdata[TIMING_CATEGORIES];
/* Variables that are initialized elsewhere are just extern here. */ /* Variables that are initialized elsewhere are just extern here. */
extern struct boot_image image[]; /* system image processes */ extern struct boot_image image[]; /* system image processes */
extern struct segdesc_s gdt[]; /* global descriptor table */ extern struct segdesc_s gdt[]; /* global descriptor table */

View file

@ -161,13 +161,6 @@ PUBLIC int do_getinfo(struct proc * caller, message * m_ptr)
src_vir = (vir_bytes) &kmess; src_vir = (vir_bytes) &kmess;
break; break;
} }
#if DEBUG_TIME_LOCKS
case GET_LOCKTIMING: {
length = sizeof(timingdata);
src_vir = (vir_bytes) timingdata;
break;
}
#endif
case GET_IRQACTIDS: { case GET_IRQACTIDS: {
length = sizeof(irq_actids); length = sizeof(irq_actids);
src_vir = (vir_bytes) irq_actids; src_vir = (vir_bytes) irq_actids;