aboutsummaryrefslogtreecommitdiffstats
path: root/qemu-tls.h
diff options
context:
space:
mode:
authorJan Kiszka <jan.kiszka@siemens.com>2011-12-05 15:18:54 +0100
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2011-12-06 10:07:04 +0000
commit4a2dd92d7b89d00cb8afa90aa588fef44a79aa88 (patch)
tree7cb3408ad434af8f4d83ed9129376c7fd95feea2 /qemu-tls.h
parent75dfbc16cf8a7a6a0db461cf0f77f0cca40bb654 (diff)
Rename get_tls to tls_var
get_tls() can serve as a lvalue as well, so 'get' might be confusing. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'qemu-tls.h')
-rw-r--r--qemu-tls.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/qemu-tls.h b/qemu-tls.h
index 5b70f10f8..b92ea9d7d 100644
--- a/qemu-tls.h
+++ b/qemu-tls.h
@@ -41,12 +41,12 @@
#ifdef __linux__
#define DECLARE_TLS(type, x) extern DEFINE_TLS(type, x)
#define DEFINE_TLS(type, x) __thread __typeof__(type) tls__##x
-#define get_tls(x) tls__##x
+#define tls_var(x) tls__##x
#else
/* Dummy implementations which define plain global variables */
#define DECLARE_TLS(type, x) extern DEFINE_TLS(type, x)
#define DEFINE_TLS(type, x) __typeof__(type) tls__##x
-#define get_tls(x) tls__##x
+#define tls_var(x) tls__##x
#endif
#endif