Merge "mark atrace buffers as uninitialized" into rvc-dev
This commit is contained in:
commit
9842adf768
1 changed files with 1 additions and 1 deletions
|
|
@ -198,7 +198,7 @@ void atrace_update_tags()
|
||||||
}
|
}
|
||||||
|
|
||||||
#define WRITE_MSG(format_begin, format_end, name, value) { \
|
#define WRITE_MSG(format_begin, format_end, name, value) { \
|
||||||
char buf[ATRACE_MESSAGE_LENGTH]; \
|
char buf[ATRACE_MESSAGE_LENGTH] __attribute__((uninitialized)); \
|
||||||
int pid = getpid(); \
|
int pid = getpid(); \
|
||||||
int len = snprintf(buf, sizeof(buf), format_begin "%s" format_end, pid, \
|
int len = snprintf(buf, sizeof(buf), format_begin "%s" format_end, pid, \
|
||||||
name, value); \
|
name, value); \
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue