aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_ktr.c
Commit message (Expand)AuthorAgeFilesLines
...
* Update the license on this file to be a bit more sane.John Baldwin2003-09-101-13/+13
* Both 'c' an 'lines' are unused, the bogus init of lines was accidentallyJohn Baldwin2003-08-021-2/+1
* Fix kernel build -- 'c' was the unused var, not 'lines'.David E. O'Brien2003-08-011-1/+1
* Update the 'ps', 'show pci', and 'show ktr' ddb commands to use the newJohn Baldwin2003-07-311-23/+11
* Add an explicit credential argument to alq_open() to allow the caller toRobert Watson2003-06-221-2/+3
* Use __FBSDID().David E. O'Brien2003-06-111-2/+3
* - Add a td_pflags field to struct thread for private flags accessed only byJohn Baldwin2003-06-091-3/+3
* Move the flag that indicates an idle thread from the KSE to the thread.Julian Elischer2003-05-021-1/+1
* Trim leading "../" sequences from filenames.John Baldwin2003-03-111-0/+3
* Add a /a modifier to the show ktr ddb command, which prints the whole traceJake Burkholder2003-02-221-1/+7
* - Export the alq daemon thread pointer.Jeff Roberson2002-09-261-1/+2
* - Add support for logging KTR via ALQ. This is optional and enabled by theJeff Roberson2002-09-221-3/+92
* Remove a stale comment.Jake Burkholder2002-04-061-4/+0
* Include machine/ktr.h for sparc64 so we pick up KTR_CPU.Jake Burkholder2002-04-061-0/+3
* ktr changes to improve performance and make writing a userland utility toJake Burkholder2002-04-011-70/+47
* Read KTR_CPU into a temporary variable so that we use a consistent valueJohn Baldwin2002-03-081-7/+4
* Print parm6 too in the !KTR_EXTEND case.Jake Burkholder2002-01-011-1/+1
* Modify the critical section API as follows:John Baldwin2001-12-181-3/+3
* Use a per-thread variable for keeping state when a thread is processingJohn Baldwin2001-12-131-10/+8
* Overhaul the per-CPU support a bit:John Baldwin2001-12-111-1/+1
* Missed an assignment of arg6 in previous commit.David E. O'Brien2001-12-101-0/+1
* Adjust for the addition of CTR6.David E. O'Brien2001-12-101-1/+1
* - Replace the unused KTR_IDLELOOP trace class with a new KTR_WITNESS traceJohn Baldwin2001-06-251-14/+17
* With this commit, I hereby pronounce gensetdefs past its use-by date.Peter Wemm2001-06-131-1/+0
* "Fix" the previous initial attempt at fixing TUNABLE_INT(). This timePeter Wemm2001-06-081-3/+3
* Back out part of my previous commit. This was a last minute changePeter Wemm2001-06-071-3/+3
* Make the TUNABLE_*() macros look and behave more consistantly like thePeter Wemm2001-06-061-6/+6
* Switch from save/disable/restore_intr() to critical_enter/exit().John Baldwin2001-03-281-4/+4
* - In the KTR_EXTEND case, use a const char * to point to the passed inJohn Baldwin2001-02-201-5/+5
* - Abolish the 'show ktr_first' and 'show ktr_next' commands.John Baldwin2001-02-201-40/+38
* Work around some sizeof(long) != sizeof(int) bogons.John Baldwin2001-02-091-1/+1
* Change the ktr ddb commands to be show commands. The commands are now asJohn Baldwin2001-02-091-4/+4
* Use PCPU_GET, PCPU_PTR and PCPU_SET to access all per-cpu variablesJake Burkholder2001-01-101-1/+1
* - Move all of the KTR sysctl's under a new debug.ktr mib.John Baldwin2001-01-061-17/+26
* Partially revert revision 1.7: Only use getnanotime instead ofGreg Lehey2000-12-291-1/+9
* Add in MI implementations of the KTR trace buffer ddb commands. TheJohn Baldwin2000-12-151-0/+97
* - Don't bother taking a trace message if we have panic'd since doing soJohn Baldwin2000-12-121-1/+3
* Ahem, fix the disclaimer portion of the copyright so it disclaim's theJohn Baldwin2000-11-211-2/+2
* Make ktr_verbose a bit more useful:John Baldwin2000-11-151-0/+5
* Don't overwrite the filename for KTR_EXTEND with "../../kern/kern_ktr.c".John Baldwin2000-11-101-1/+0
* Fix SMP kernel compiles by #include'ing machine/globals.h to get theJohn Baldwin2000-11-101-0/+1
* - Remove much of the inlining of the KTR tracepoints into a ktr_tracepoint()John Baldwin2000-11-071-2/+86
* Add KTR, a facility that logs kernel events in order to to facilitateJason Evans2000-09-071-0/+64