Added convenience functions alloc_tracing_buffer_{memcpy,strcpy}().

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23576 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2008-01-17 01:58:08 +00:00
parent e613499224
commit 0b60583fec
2 changed files with 45 additions and 0 deletions

View File

@ -70,6 +70,9 @@ extern "C" {
#endif
uint8* alloc_tracing_buffer(size_t size);
uint8* alloc_tracing_buffer_memcpy(const void* source, size_t size, bool user);
char* alloc_tracing_buffer_strcpy(const char* source, size_t maxSize,
bool user);
status_t tracing_init(void);
#ifdef __cplusplus

View File

@ -262,6 +262,48 @@ alloc_tracing_buffer(size_t size)
}
uint8*
alloc_tracing_buffer_memcpy(const void* source, size_t size, bool user)
{
uint8* buffer = alloc_tracing_buffer(size);
if (buffer == NULL)
return NULL;
if (user) {
if (user_memcpy(buffer, source, size) != B_OK)
return NULL;
} else
memcpy(buffer, source, size);
return buffer;
}
char*
alloc_tracing_buffer_strcpy(const char* source, size_t maxSize, bool user)
{
if (maxSize == 0)
return NULL;
// there's no user_strnlen(), so always allocate the full buffer size
// in this case
if (!user)
maxSize = strnlen(source, maxSize - 1) + 1;
char* buffer = (char*)alloc_tracing_buffer(maxSize);
if (buffer == NULL)
return NULL;
if (user) {
if (user_strlcpy(buffer, source, maxSize) < B_OK)
return NULL;
} else
strlcpy(buffer, source, maxSize);
return buffer;
}
extern "C" status_t
tracing_init(void)
{