summaryrefslogtreecommitdiff
path: root/testsuites/libtests/record01 (follow)
AgeCommit message (Collapse)Author
2019-12-19config: CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORSSebastian Huber
Rename CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS into CONFIGURE_MAXIMUM_FILE_DESCRIPTORS. Update #3753.
2019-12-05libtest: Change expected pass state stringSebastian Huber
Use separator character '_' for all test states.
2019-10-01libtests/record01: Fix test failureSebastian Huber
Update #3665.
2019-08-28record: Add variants for critical sectionsSebastian Huber
Update #3665.
2019-08-28record: Introduce <rtems/recordserver.h>Sebastian Huber
This helps to get rid of the <rtems/rtems/tasks.h> dependency in <rtems/record.h>. Update #3665.
2019-08-28record: Use BSS section instead of per-CPU dataSebastian Huber
The .rtemsrwset section is used for the per-CPU data. This section has loadable content. Place the ring buffers in the BSS section to avoid large executable image sizes. Not using the per-CPU data makes it possible to initialize the record support earlier. Update #3665.
2019-08-06record: Change thread name encodingSebastian Huber
This scheme is easier to decode.
2019-07-30record: Add support for thread namesSebastian Huber
2019-03-12record: Rename internal per-CPU eventsSebastian Huber
Update #3665.
2019-01-30record: Add enum value for each eventSebastian Huber
Update #3665.
2019-01-29Add low level event recording supportSebastian Huber
Add low level event recording infrastructure for system and user defined events. The infrastructure is able to record high frequency events such as * SMP lock acquire/release, * interrupt entry/exit, * thread switches, * UMA zone allocate/free, and * Ethernet packet input/output, etc. It allows post-mortem analysis in fatal error handlers, e.g. the last events are in the record buffer, the newest event overwrites the oldest event. It is possible to detect record buffer overflows for consumers that expect a continuous stream of events, e.g. to display the system state in real-time. The implementation supports high-end SMP machines (more than 1GHz processor frequency, more than four processors). Add a new API instead. The implementation uses per-processor data structures and no atomic read-modify-write operations. It is uses per-processor ring buffers to record the events. The CPU counter is used to get the time of events. It is combined with periodic uptime events to synchronize it with CLOCK_REALTIME. The existing capture engine tries to solve this problem also, but its performance is not good enough for high-end production systems. The main issues are the variable-size buffers and the use of SMP locks for synchronization. To fix this, the API would change significantly. Update #3665.