Re: [PATCH] event-test: Properly terminate strings printed from callbacks

2021-02-19 Thread Ján Tomko
On a Friday in 2021, Kristina Hanicova wrote: Stdio was buffering strings in functions: myDomainEventBlockJobCallback, myDomainEventBlockThresholdCallback, myDomainEventMemoryFailureCallback. It caused flushing the printed strings from callbacks at the end of a run, not gradually. The solution is

[PATCH] event-test: Properly terminate strings printed from callbacks

2021-02-19 Thread Kristina Hanicova
Stdio was buffering strings in functions: myDomainEventBlockJobCallback, myDomainEventBlockThresholdCallback, myDomainEventMemoryFailureCallback. It caused flushing the printed strings from callbacks at the end of a run, not gradually. The solution is to add \n at the end of each string. Signed-of