Re: [PATCH v1 11/12] util: Added tsan annotate for thread name.

2020-05-31 Thread Emilio G. Cota
On Fri, May 29, 2020 at 09:23:41 -0400, Robert Foley wrote: > This allows us to see the name of the thread in tsan > warning reports such as this: > > Thread T7 'CPU 1/TCG' (tid=24317, running) created by main thread at: > > Signed-off-by: Robert Foley Reviewed-by: Emilio G. Cota Thanks,

[PATCH v1 11/12] util: Added tsan annotate for thread name.

2020-05-29 Thread Robert Foley
This allows us to see the name of the thread in tsan warning reports such as this: Thread T7 'CPU 1/TCG' (tid=24317, running) created by main thread at: Signed-off-by: Robert Foley --- util/qemu-thread-posix.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/qemu-thread-posix.c b/ut