Re: [PATCH 04/12] util: set the name for the 'main' thread

2025-08-20 Thread Daniel P . Berrangé via Devel
On Tue, Aug 19, 2025 at 11:18:00PM +, Dr. David Alan Gilbert wrote: > * Daniel P. Berrangé (berra...@redhat.com) wrote: > > The default main thread name is undefined, so use a constructor to > > explicitly set it to 'main'. This constructor is marked to run early > > as the thread name is inten

Re: [PATCH 04/12] util: set the name for the 'main' thread

2025-08-20 Thread Dr. David Alan Gilbert
* Daniel P. Berrangé (berra...@redhat.com) wrote: > The default main thread name is undefined, so use a constructor to > explicitly set it to 'main'. This constructor is marked to run early > as the thread name is intended to be used in error reporting / logs > which may be triggered very early in

[PATCH 04/12] util: set the name for the 'main' thread

2025-08-19 Thread Daniel P . Berrangé via Devel
The default main thread name is undefined, so use a constructor to explicitly set it to 'main'. This constructor is marked to run early as the thread name is intended to be used in error reporting / logs which may be triggered very early in QEMU execution. Signed-off-by: Daniel P. Berrangé --- u