13464ebd5Sriastradh/* 23464ebd5Sriastradh * Mesa 3-D graphics library 33464ebd5Sriastradh * 43464ebd5Sriastradh * Copyright (C) 2010 LunarG Inc. 53464ebd5Sriastradh * 63464ebd5Sriastradh * Permission is hereby granted, free of charge, to any person obtaining a 73464ebd5Sriastradh * copy of this software and associated documentation files (the "Software"), 83464ebd5Sriastradh * to deal in the Software without restriction, including without limitation 93464ebd5Sriastradh * the rights to use, copy, modify, merge, publish, distribute, sublicense, 103464ebd5Sriastradh * and/or sell copies of the Software, and to permit persons to whom the 113464ebd5Sriastradh * Software is furnished to do so, subject to the following conditions: 123464ebd5Sriastradh * 133464ebd5Sriastradh * The above copyright notice and this permission notice shall be included 143464ebd5Sriastradh * in all copies or substantial portions of the Software. 153464ebd5Sriastradh * 163464ebd5Sriastradh * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 173464ebd5Sriastradh * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 183464ebd5Sriastradh * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 193464ebd5Sriastradh * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 203464ebd5Sriastradh * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 213464ebd5Sriastradh * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 223464ebd5Sriastradh * DEALINGS IN THE SOFTWARE. 233464ebd5Sriastradh * 243464ebd5Sriastradh * Authors: 253464ebd5Sriastradh * Chia-I Wu <olv@lunarg.com> 263464ebd5Sriastradh */ 273464ebd5Sriastradh 283464ebd5Sriastradh#include "glapi/glapi.h" 29af69d88dSmrg#include "u_current.h" 303464ebd5Sriastradh 313464ebd5Sriastradh/* 323464ebd5Sriastradh * Global variables, _glapi_get_context, and _glapi_get_dispatch are defined in 333464ebd5Sriastradh * u_current.c. 343464ebd5Sriastradh */ 353464ebd5Sriastradh 367ec681f3Smrg#ifdef USE_ELF_TLS 373464ebd5Sriastradh/* not used, but defined for compatibility */ 383464ebd5Sriastradhconst struct _glapi_table *_glapi_Dispatch; 393464ebd5Sriastradhconst void *_glapi_Context; 407ec681f3Smrg#endif /* USE_ELF_TLS */ 413464ebd5Sriastradh 423464ebd5Sriastradhvoid 433464ebd5Sriastradh_glapi_destroy_multithread(void) 443464ebd5Sriastradh{ 453464ebd5Sriastradh u_current_destroy(); 463464ebd5Sriastradh} 473464ebd5Sriastradh 483464ebd5Sriastradhvoid 493464ebd5Sriastradh_glapi_check_multithread(void) 503464ebd5Sriastradh{ 513464ebd5Sriastradh u_current_init(); 523464ebd5Sriastradh} 533464ebd5Sriastradh 543464ebd5Sriastradhvoid 553464ebd5Sriastradh_glapi_set_context(void *context) 563464ebd5Sriastradh{ 57af69d88dSmrg u_current_set_context((const void *) context); 583464ebd5Sriastradh} 593464ebd5Sriastradh 603464ebd5Sriastradhvoid 613464ebd5Sriastradh_glapi_set_dispatch(struct _glapi_table *dispatch) 623464ebd5Sriastradh{ 6301e04c3fSmrg u_current_set_table((const struct _glapi_table *) dispatch); 643464ebd5Sriastradh} 65