[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH] check for PR_SET_NAME being defined
From: |
Nathan Froyd |
Subject: |
[Qemu-devel] [PATCH] check for PR_SET_NAME being defined |
Date: |
Mon, 3 Aug 2009 07:32:12 -0700 |
Depending on what glibc/kernel headers you are compiling against,
PR_SET_NAME may or may not be defined. Do the right thing if
PR_SET_NAME isn't defined and skip setting the process name.
Signed-off-by: Nathan Froyd <address@hidden>
---
vl.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
v2: resent, including Signed-off-by this time.
diff --git a/vl.c b/vl.c
index fdd4f03..0f07ca9 100644
--- a/vl.c
+++ b/vl.c
@@ -300,7 +300,7 @@ void hw_error(const char *fmt, ...)
static void set_proc_name(const char *s)
{
-#ifdef __linux__
+#if defined(__linux__) && defined(PR_SET_NAME)
char name[16];
if (!s)
return;
--
1.6.3.2
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Qemu-devel] [PATCH] check for PR_SET_NAME being defined,
Nathan Froyd <=