nuttx-apps/system/trace
chao.an 124c1328a6 sched/note: add support of trace section mark
The implementation of this feature is based on android systrace:

https://source.android.com/devices/tech/debug/ftrace

Application developers are more concerned about the performance of
the specified application section,
added two APIs to implement performance measurement:

void sched_note_begin(FAR const char *str);
void sched_note_end(FAR const char *str);
or
SCHED_NOTE_BEGIN();  /* defined to sched_note_begin(__FUNCTION__) */
SCHED_NOTE_END();    /* defined to sched_note_end(__FUNCTION__) */

Signed-off-by: chao.an <anchao@xiaomi.com>
2022-04-03 18:04:28 +08:00
..
Kconfig Add trace command for task trace 2020-10-15 16:49:11 +08:00
Make.defs Add trace command for task trace 2020-10-15 16:49:11 +08:00
Makefile Add trace command for task trace 2020-10-15 16:49:11 +08:00
README.md style/Document: remove unnecessary trailing whitespace 2020-11-28 12:20:10 +01:00
trace_dump.c sched/note: add support of trace section mark 2022-04-03 18:04:28 +08:00
trace.c sched/note: add support of trace section mark 2022-04-03 18:04:28 +08:00
trace.h sched/note: add support of trace section mark 2022-04-03 18:04:28 +08:00