avoid using C99 constructs.
[gnutls.git] / gl / msvc-inval.c
blobd10099ed98d2dc1327d23fdba1f27c8f89dff255
1 /* Invalid parameter handler for MSVC runtime libraries.
2 Copyright (C) 2011 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3, or (at your option)
7 any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License along
15 with this program; if not, write to the Free Software Foundation,
16 Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
18 #include <config.h>
20 /* Specification. */
21 #include "msvc-inval.h"
23 #if HAVE_MSVC_INVALID_PARAMETER_HANDLER \
24 && !(MSVC_INVALID_PARAMETER_HANDLING == SANE_LIBRARY_HANDLING)
26 /* Get _invalid_parameter_handler type and _set_invalid_parameter_handler
27 declaration. */
28 # include <stdlib.h>
30 # if MSVC_INVALID_PARAMETER_HANDLING == DEFAULT_HANDLING
32 static void cdecl
33 gl_msvc_invalid_parameter_handler (const wchar_t *expression,
34 const wchar_t *function,
35 const wchar_t *file,
36 unsigned int line,
37 uintptr_t dummy)
41 # else
43 /* Get declarations of the Win32 API functions. */
44 # define WIN32_LEAN_AND_MEAN
45 # include <windows.h>
47 # if defined _MSC_VER
49 static void cdecl
50 gl_msvc_invalid_parameter_handler (const wchar_t *expression,
51 const wchar_t *function,
52 const wchar_t *file,
53 unsigned int line,
54 uintptr_t dummy)
56 RaiseException (STATUS_GNULIB_INVALID_PARAMETER, 0, 0, NULL);
59 # else
61 /* An index to thread-local storage. */
62 static DWORD tls_index;
63 static int tls_initialized /* = 0 */;
65 /* Used as a fallback only. */
66 static struct gl_msvc_inval_per_thread not_per_thread;
68 struct gl_msvc_inval_per_thread *
69 gl_msvc_inval_current (void)
71 if (!tls_initialized)
73 tls_index = TlsAlloc ();
74 tls_initialized = 1;
76 if (tls_index == TLS_OUT_OF_INDEXES)
77 /* TlsAlloc had failed. */
78 return &not_per_thread;
79 else
81 struct gl_msvc_inval_per_thread *pointer =
82 (struct gl_msvc_inval_per_thread *) TlsGetValue (tls_index);
83 if (pointer == NULL)
85 /* First call. Allocate a new 'struct gl_msvc_inval_per_thread'. */
86 pointer =
87 (struct gl_msvc_inval_per_thread *)
88 malloc (sizeof (struct gl_msvc_inval_per_thread));
89 if (pointer == NULL)
90 /* Could not allocate memory. Use the global storage. */
91 pointer = &not_per_thread;
92 TlsSetValue (tls_index, pointer);
94 return pointer;
98 static void cdecl
99 gl_msvc_invalid_parameter_handler (const wchar_t *expression,
100 const wchar_t *function,
101 const wchar_t *file,
102 unsigned int line,
103 uintptr_t dummy)
105 struct gl_msvc_inval_per_thread *current = gl_msvc_inval_current ();
106 if (current->restart_valid)
107 longjmp (current->restart, 1);
108 else
109 /* An invalid parameter notification from outside the gnulib code.
110 Give the caller a chance to intervene. */
111 RaiseException (STATUS_GNULIB_INVALID_PARAMETER, 0, 0, NULL);
114 # endif
116 # endif
118 static int gl_msvc_inval_initialized /* = 0 */;
120 void
121 gl_msvc_inval_ensure_handler (void)
123 if (gl_msvc_inval_initialized == 0)
125 _set_invalid_parameter_handler (gl_msvc_invalid_parameter_handler);
126 gl_msvc_inval_initialized = 1;
130 #endif