diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-09-13 09:47:47 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-09-13 09:47:47 +0200 |
commit | 8dd3b8aaa54a0c3a2661df4f8f629a3b5085d37b (patch) | |
tree | e349d0c2a56d74bd37fa7a3c55159fcbd1de6f2f /src | |
parent | libgamma_crtc_set_gamma_ramps8 is not hot (diff) | |
download | libgamma-8dd3b8aaa54a0c3a2661df4f8f629a3b5085d37b.tar.gz libgamma-8dd3b8aaa54a0c3a2661df4f8f629a3b5085d37b.tar.bz2 libgamma-8dd3b8aaa54a0c3a2661df4f8f629a3b5085d37b.tar.xz |
group gid and group name, in libgamma-error, are thread local
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libgamma-error.c.gpp | 6 | ||||
-rw-r--r-- | src/lib/libgamma-error.h | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/lib/libgamma-error.c.gpp b/src/lib/libgamma-error.c.gpp index 717f11b..1cc81ac 100644 --- a/src/lib/libgamma-error.c.gpp +++ b/src/lib/libgamma-error.c.gpp @@ -38,7 +38,7 @@ $>export PATH=".:${PATH}" * `LIBGAMMA_DEVICE_REQUIRE_GROUP` is returned. */ #ifndef __WIN32__ -gid_t libgamma_group_gid = 0; +__thread gid_t libgamma_group_gid = 0; #else short libgamma_group_gid = 0; #endif @@ -49,7 +49,11 @@ short libgamma_group_gid = 0; * `NULL` if the name of the group `libgamma_group_gid` * cannot be determined. */ +#ifndef __WIN32__ +__thread const char* libgamma_group_name = NULL; +#else const char* libgamma_group_name = NULL; +#endif diff --git a/src/lib/libgamma-error.h b/src/lib/libgamma-error.h index 7d38568..77564d7 100644 --- a/src/lib/libgamma-error.h +++ b/src/lib/libgamma-error.h @@ -35,7 +35,7 @@ * `LIBGAMMA_DEVICE_REQUIRE_GROUP` is returned. */ #ifndef __WIN32__ -extern gid_t libgamma_group_gid; +extern __thread gid_t libgamma_group_gid; #else extern short libgamma_group_gid; #endif @@ -46,7 +46,11 @@ extern short libgamma_group_gid; * `NULL` if the name of the group `libgamma_group_gid` * cannot be determined. */ +#ifndef __WIN32__ +extern __thread const char* libgamma_group_name; +#else extern const char* libgamma_group_name; +#endif /** |