#include <sect_attribs.h>
#include <windows.h>
#include <stdio.h>
#include <memory.h>
#include <malloc.h>
#include <corecrt_startup.h>
Go to the source code of this file.
◆ __CRT_THREAD
◆ DISABLE_MS_TLS
◆ FUNCS_PER_NODE
◆ WIN32_LEAN_AND_MEAN
◆ TlsDtorNode
◆ __dyn_tls_dtor()
Definition at line 140 of file tlssup.c.
141{
142#if !defined (DISABLE_MS_TLS)
145#endif
146
149
150
151
152
153
154#if !defined (DISABLE_MS_TLS)
156 {
157 for (pnode = dtor_list; pnode !=
NULL; pnode = pnext)
158 {
159 for (
i = pnode->
count - 1;
i >= 0; --
i)
160 {
163 }
166 free ((
void *) pnode);
167 }
168 }
169#endif
172}
#define DLL_THREAD_DETACH
#define DLL_PROCESS_DETACH
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
struct TlsDtorNode * next
_PVFV funcs[FUNCS_PER_NODE]
WINBOOL __mingw_TLScallback(HANDLE hDllHandle, DWORD reason, LPVOID reserved)
◆ __mingw_TLScallback()
◆ _CRTALLOC() [1/3]
static _CRTALLOC |
( |
".CRT$XDA" |
| ) |
|
|
static |
Definition at line 67 of file tlssup.c.
81{
84
85
88
90 {
94 }
95
99 {
100 pfunc = (
_PVFV *) ps;
102 (*pfunc)();
103 }
105}
#define DLL_PROCESS_ATTACH
#define DLL_THREAD_ATTACH
void(__cdecl * _PVFV)(void)
◆ _CRTALLOC() [2/3]
Definition at line 108 of file tlssup.c.
114{
116 return 0;
117#if !defined (DISABLE_MS_TLS)
118 if (dtor_list ==
NULL)
119 {
120 dtor_list = &dtor_list_head;
121 dtor_list_head.count = 0;
122 }
124 {
127 return -1;
129 pnode->
next = dtor_list;
130 dtor_list = pnode;
131
132 dtor_list->
count = 0;
133 }
134 dtor_list->funcs[dtor_list->count++] =
func;
135#endif
136 return 0;
137}
◆ _CRTALLOC() [3/3]
◆ __dyn_tls_init_callback
This file has no copyright assigned and is placed in the Public Domain. This file is part of the w64 mingw-runtime package. No warranty is given; refer to the file DISCLAIMER.PD within this package.
Definition at line 107 of file tlssup.c.
◆ _tls_index