Edit

IABSD.fr/xenocara/lib/mesa/src/c11/impl/threads_win32_tls_callback.cpp

Branch :

  • Show log

    Commit

  • Author : jsg
    Date : 2023-01-28 08:09:28
    Hash : 5642995e
    Message : Import Mesa 22.3.4

  • lib/mesa/src/c11/impl/threads_win32_tls_callback.cpp
  • /*
     * Copyright 2022 Yonggang Luo
     * SPDX-License-Identifier: MIT
     */
    
    #include "threads_win32.h"
    
    struct tls_callback
    {
       tls_callback()
       {
       }
       ~tls_callback()
       {
          __threads_win32_tls_callback();
       }
    };
    static thread_local tls_callback tls_callback_instance;