* 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:
@@ -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" {
|
||||
|
||||
Reference in New Issue
Block a user