diff options
author | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2014-03-12 11:48:18 +0000 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2014-03-27 17:48:11 +0200 |
commit | 5c312079417908381ffca44d18150b6a990c4f0b (patch) | |
tree | 7bfa5c082c733ea09edd056dde31d8ff04741c2d /util/qemu-thread-win32.c | |
parent | f7bc8ef8091229a4bec0e2a40af90abb8dcb3834 (diff) |
Detect pthread_setname_np at configure time
Warn if no way of setting thread name is available.
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'util/qemu-thread-win32.c')
-rw-r--r-- | util/qemu-thread-win32.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/qemu-thread-win32.c b/util/qemu-thread-win32.c index b9c957b6a0..c405c9bef6 100644 --- a/util/qemu-thread-win32.c +++ b/util/qemu-thread-win32.c @@ -22,6 +22,8 @@ void qemu_thread_naming(bool enable) { /* But note we don't actually name them on Windows yet */ name_threads = enable; + + fprintf(stderr, "qemu: thread naming not supported on this host\n"); } static void error_exit(int err, const char *msg) |