* Made struct ring_buffer public (within the kernel).

* Added "syslog" command that dumps the contents of the syslog ring buffer into
  KDL. Use the '-n' option to only show what hasn't been sent to the syslog
  daemon yet.
* When entering the kernel debugger, the current thread ID and name are also
  printed (not only the current CPU).


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26684 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2008-07-30 10:03:22 +00:00
parent b4e9c99bc4
commit 0b46f622d1
3 changed files with 79 additions and 15 deletions
+7 -1
View File
@@ -9,7 +9,13 @@
#include <OS.h>
struct ring_buffer;
struct ring_buffer {
int32 first;
int32 in;
int32 size;
uint8 buffer[0];
};
#ifdef __cplusplus
extern "C" {