* Added a "reserved" field to the debug event file header to align it to 8

bytes.
* strlcpy() isn't a particularly good string compare function.
* BDebugEventInputStream::_GetData():
  - Also need to reset fBufferPosition to 0 when the buffer is empty.
  - Fixed read position.

BDebugEventInputStream does now actually read the files written by
BDebugEventOutputStream.



git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30273 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2009-04-19 23:44:20 +00:00
parent 1cdc2fb608
commit 4d8d8c1f38
2 changed files with 5 additions and 5 deletions
+1
View File
@@ -16,6 +16,7 @@ struct debug_event_stream_header {
uint32 version;
uint32 flags;
uint32 event_mask;
uint32 reserved;
};