~ubuntu-branches/ubuntu/precise/xorg-server/precise-updates

« back to all changes in this revision

Viewing changes to glx/glapi.c

Tags: 2:1.10.1-2
* Build xserver-xorg-core-udeb on hurd-i386.  Thanks, Samuel Thibault!
* Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
190
190
/*@{*/
191
191
#if defined(GLX_USE_TLS)
192
192
 
193
 
PUBLIC __thread struct _glapi_table * _glapi_tls_Dispatch
 
193
PUBLIC TLS struct _glapi_table * _glapi_tls_Dispatch
194
194
    __attribute__((tls_model("initial-exec")))
195
195
    = (struct _glapi_table *) __glapi_noop_table;
196
196
 
197
 
PUBLIC __thread void * _glapi_tls_Context
 
197
PUBLIC TLS void * _glapi_tls_Context
198
198
    __attribute__((tls_model("initial-exec")));
199
199
 
200
200
PUBLIC const struct _glapi_table *_glapi_Dispatch = NULL;