Right now, the logger only logs job registrations, core erros, launches and finishes. Add a logger call inside the notification system, so that notifications are visible there too. Use the args field of the log buffer to enter the calling job, receiving job and at least a reference to the notification value as uint32_t pointer. It could look like this:
systime (ms) type name instances error args
(0000022013) notif: job1 1 0 -> job2 <NULL>
This shows that job1 sent a notification to job2 with the value NULL (just a wake-up call).
Right now, the logger only logs job registrations, core erros, launches and finishes. Add a logger call inside the notification system, so that notifications are visible there too. Use the
argsfield of the log buffer to enter the calling job, receiving job and at least a reference to the notification value asuint32_tpointer. It could look like this:This shows that
job1sent a notification tojob2with the valueNULL(just a wake-up call).