2 * Copyright 2010 Piotr Caban for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library 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 GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
28 #include "wine/debug.h"
29 WINE_DEFAULT_DEBUG_CHANNEL(msvcp
);
31 /* ??0_Mutex@std@@QAE@XZ */
32 /* ??0_Mutex@std@@QEAA@XZ */
33 DEFINE_THISCALL_WRAPPER(mutex_ctor
, 4)
34 mutex
* __thiscall
mutex_ctor(mutex
*this)
36 CRITICAL_SECTION
*cs
= MSVCRT_operator_new(sizeof(*cs
));
38 ERR("Out of memory\n");
39 throw_exception(EXCEPTION_BAD_ALLOC
, NULL
);
42 InitializeCriticalSection(cs
);
43 cs
->DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": _Mutex critical section");
48 /* ??1_Mutex@std@@QAE@XZ */
49 /* ??1_Mutex@std@@QEAA@XZ */
50 DEFINE_THISCALL_WRAPPER(mutex_dtor
, 4)
51 void __thiscall
mutex_dtor(mutex
*this)
53 ((CRITICAL_SECTION
*)this->mutex
)->DebugInfo
->Spare
[0] = 0;
54 DeleteCriticalSection(this->mutex
);
55 MSVCRT_operator_delete(this->mutex
);
58 /* ?_Lock@_Mutex@std@@QAEXXZ */
59 /* ?_Lock@_Mutex@std@@QEAAXXZ */
60 DEFINE_THISCALL_WRAPPER(mutex_lock
, 4)
61 void __thiscall
mutex_lock(mutex
*this)
63 EnterCriticalSection(this->mutex
);
66 /* ?_Unlock@_Mutex@std@@QAEXXZ */
67 /* ?_Unlock@_Mutex@std@@QEAAXXZ */
68 DEFINE_THISCALL_WRAPPER(mutex_unlock
, 4)
69 void __thiscall
mutex_unlock(mutex
*this)
71 LeaveCriticalSection(this->mutex
);
74 /* ?_Mutex_Lock@_Mutex@std@@CAXPAV12@@Z */
75 /* ?_Mutex_Lock@_Mutex@std@@CAXPEAV12@@Z */
76 void CDECL
mutex_mutex_lock(mutex
*m
)
81 /* ?_Mutex_Unlock@_Mutex@std@@CAXPAV12@@Z */
82 /* ?_Mutex_Unlock@_Mutex@std@@CAXPEAV12@@Z */
83 void CDECL
mutex_mutex_unlock(mutex
*m
)
88 /* ?_Mutex_ctor@_Mutex@std@@CAXPAV12@@Z */
89 /* ?_Mutex_ctor@_Mutex@std@@CAXPEAV12@@Z */
90 void CDECL
mutex_mutex_ctor(mutex
*m
)
95 /* ?_Mutex_dtor@_Mutex@std@@CAXPAV12@@Z */
96 /* ?_Mutex_dtor@_Mutex@std@@CAXPEAV12@@Z */
97 void CDECL
mutex_mutex_dtor(mutex
*m
)
102 static CRITICAL_SECTION lockit_cs
[_MAX_LOCK
];
104 /* ?_Lockit_ctor@_Lockit@std@@SAXH@Z */
105 void __cdecl
_Lockit_init(int locktype
) {
106 InitializeCriticalSection(&lockit_cs
[locktype
]);
107 lockit_cs
[locktype
].DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": _Lockit critical section");
110 /* ?_Lockit_dtor@_Lockit@std@@SAXH@Z */
111 void __cdecl
_Lockit_free(int locktype
)
113 lockit_cs
[locktype
].DebugInfo
->Spare
[0] = 0;
114 DeleteCriticalSection(&lockit_cs
[locktype
]);
117 void init_lockit(void) {
120 for(i
=0; i
<_MAX_LOCK
; i
++)
124 void free_lockit(void) {
127 for(i
=0; i
<_MAX_LOCK
; i
++)
131 /* ?_Lockit_ctor@_Lockit@std@@CAXPAV12@H@Z */
132 /* ?_Lockit_ctor@_Lockit@std@@CAXPEAV12@H@Z */
133 void __cdecl
_Lockit__Lockit_ctor_locktype(_Lockit
*lockit
, int locktype
)
135 lockit
->locktype
= locktype
;
136 EnterCriticalSection(&lockit_cs
[locktype
]);
139 /* ?_Lockit_ctor@_Lockit@std@@CAXPAV12@@Z */
140 /* ?_Lockit_ctor@_Lockit@std@@CAXPEAV12@@Z */
141 void __cdecl
_Lockit__Lockit_ctor(_Lockit
*lockit
)
143 _Lockit__Lockit_ctor_locktype(lockit
, 0);
146 /* ??0_Lockit@std@@QAE@H@Z */
147 /* ??0_Lockit@std@@QEAA@H@Z */
148 DEFINE_THISCALL_WRAPPER(_Lockit_ctor_locktype
, 8)
149 _Lockit
* __thiscall
_Lockit_ctor_locktype(_Lockit
*this, int locktype
)
151 _Lockit__Lockit_ctor_locktype(this, locktype
);
155 /* ??0_Lockit@std@@QAE@XZ */
156 /* ??0_Lockit@std@@QEAA@XZ */
157 DEFINE_THISCALL_WRAPPER(_Lockit_ctor
, 4)
158 _Lockit
* __thiscall
_Lockit_ctor(_Lockit
*this)
160 _Lockit__Lockit_ctor_locktype(this, 0);
164 /* ?_Lockit_dtor@_Lockit@std@@CAXPAV12@@Z */
165 /* ?_Lockit_dtor@_Lockit@std@@CAXPEAV12@@Z */
166 void __cdecl
_Lockit__Lockit_dtor(_Lockit
*lockit
)
168 LeaveCriticalSection(&lockit_cs
[lockit
->locktype
]);
171 /* ??1_Lockit@std@@QAE@XZ */
172 /* ??1_Lockit@std@@QEAA@XZ */
173 DEFINE_THISCALL_WRAPPER(_Lockit_dtor
, 4)
174 void __thiscall
_Lockit_dtor(_Lockit
*this)
176 _Lockit__Lockit_dtor(this);
180 unsigned short __cdecl
wctype(const char *property
)
182 static const struct {
186 { "alnum", _DIGIT
|_ALPHA
},
188 { "cntrl", _CONTROL
},
190 { "graph", _DIGIT
|_PUNCT
|_ALPHA
},
192 { "print", _DIGIT
|_PUNCT
|_BLANK
|_ALPHA
},
200 for(i
=0; i
<sizeof(properties
)/sizeof(properties
[0]); i
++)
201 if(!strcmp(property
, properties
[i
].name
))
202 return properties
[i
].mask
;
207 typedef void (__cdecl
*MSVCP_new_handler_func
)(void);
208 static MSVCP_new_handler_func MSVCP_new_handler
;
209 static int __cdecl
new_handler_wrapper(MSVCP_size_t unused
)
215 /* ?set_new_handler@std@@YAP6AXXZP6AXXZ@Z */
216 MSVCP_new_handler_func __cdecl
set_new_handler(MSVCP_new_handler_func new_handler
)
218 MSVCP_new_handler_func old_handler
= MSVCP_new_handler
;
220 TRACE("%p\n", new_handler
);
222 MSVCP_new_handler
= new_handler
;
223 MSVCRT_set_new_handler(new_handler
? new_handler_wrapper
: NULL
);
227 /* ?set_new_handler@std@@YAP6AXXZH@Z */
228 MSVCP_new_handler_func __cdecl
set_new_handler_reset(int unused
)
230 return set_new_handler(NULL
);