Commit 9694fc11 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Move improper_scheduler_attach to concurrency.c.

parent c9189a41
...@@ -302,6 +302,9 @@ typedef struct { ...@@ -302,6 +302,9 @@ typedef struct {
typedef exception improper_lock; typedef exception improper_lock;
extern const vtable_ptr improper_lock_vtable; extern const vtable_ptr improper_lock_vtable;
typedef exception improper_scheduler_attach;
extern const vtable_ptr improper_scheduler_attach_vtable;
typedef exception invalid_scheduler_policy_key; typedef exception invalid_scheduler_policy_key;
extern const vtable_ptr invalid_scheduler_policy_key_vtable; extern const vtable_ptr invalid_scheduler_policy_key_vtable;
...@@ -370,6 +373,33 @@ improper_lock * __thiscall improper_lock_copy_ctor(improper_lock *this, const im ...@@ -370,6 +373,33 @@ improper_lock * __thiscall improper_lock_copy_ctor(improper_lock *this, const im
return __exception_copy_ctor(this, rhs, &improper_lock_vtable); return __exception_copy_ctor(this, rhs, &improper_lock_vtable);
} }
/* ??0improper_scheduler_attach@Concurrency@@QAE@PBD@Z */
/* ??0improper_scheduler_attach@Concurrency@@QEAA@PEBD@Z */
DEFINE_THISCALL_WRAPPER(improper_scheduler_attach_ctor_str, 8)
improper_scheduler_attach* __thiscall improper_scheduler_attach_ctor_str(
improper_scheduler_attach *this, const char *str)
{
TRACE("(%p %p)\n", this, str);
return __exception_ctor(this, str, &improper_scheduler_attach_vtable);
}
/* ??0improper_scheduler_attach@Concurrency@@QAE@XZ */
/* ??0improper_scheduler_attach@Concurrency@@QEAA@XZ */
DEFINE_THISCALL_WRAPPER(improper_scheduler_attach_ctor, 4)
improper_scheduler_attach* __thiscall improper_scheduler_attach_ctor(
improper_scheduler_attach *this)
{
return improper_scheduler_attach_ctor_str(this, NULL);
}
DEFINE_THISCALL_WRAPPER(improper_scheduler_attach_copy_ctor,8)
improper_scheduler_attach * __thiscall improper_scheduler_attach_copy_ctor(
improper_scheduler_attach * _this, const improper_scheduler_attach * rhs)
{
TRACE("(%p %p)\n", _this, rhs);
return __exception_copy_ctor(_this, rhs, &improper_scheduler_attach_vtable);
}
/* ??0invalid_scheduler_policy_key@Concurrency@@QAE@PBD@Z */ /* ??0invalid_scheduler_policy_key@Concurrency@@QAE@PBD@Z */
/* ??0invalid_scheduler_policy_key@Concurrency@@QEAA@PEBD@Z */ /* ??0invalid_scheduler_policy_key@Concurrency@@QEAA@PEBD@Z */
DEFINE_THISCALL_WRAPPER(invalid_scheduler_policy_key_ctor_str, 8) DEFINE_THISCALL_WRAPPER(invalid_scheduler_policy_key_ctor_str, 8)
...@@ -498,6 +528,8 @@ HRESULT __thiscall scheduler_resource_allocation_error_get_error_code( ...@@ -498,6 +528,8 @@ HRESULT __thiscall scheduler_resource_allocation_error_get_error_code(
DEFINE_RTTI_DATA1(improper_lock, 0, &cexception_rtti_base_descriptor, DEFINE_RTTI_DATA1(improper_lock, 0, &cexception_rtti_base_descriptor,
".?AVimproper_lock@Concurrency@@") ".?AVimproper_lock@Concurrency@@")
DEFINE_RTTI_DATA1(improper_scheduler_attach, 0, &cexception_rtti_base_descriptor,
".?AVimproper_scheduler_attach@Concurrency@@")
DEFINE_RTTI_DATA1(invalid_scheduler_policy_key, 0, &cexception_rtti_base_descriptor, DEFINE_RTTI_DATA1(invalid_scheduler_policy_key, 0, &cexception_rtti_base_descriptor,
".?AVinvalid_scheduler_policy_key@Concurrency@@") ".?AVinvalid_scheduler_policy_key@Concurrency@@")
DEFINE_RTTI_DATA1(invalid_scheduler_policy_thread_specification, 0, &cexception_rtti_base_descriptor, DEFINE_RTTI_DATA1(invalid_scheduler_policy_thread_specification, 0, &cexception_rtti_base_descriptor,
...@@ -508,6 +540,7 @@ DEFINE_RTTI_DATA1(scheduler_resource_allocation_error, 0, &cexception_rtti_base_ ...@@ -508,6 +540,7 @@ DEFINE_RTTI_DATA1(scheduler_resource_allocation_error, 0, &cexception_rtti_base_
".?AVscheduler_resource_allocation_error@Concurrency@@") ".?AVscheduler_resource_allocation_error@Concurrency@@")
DEFINE_CXX_DATA1(improper_lock, &cexception_cxx_type_info, cexception_dtor) DEFINE_CXX_DATA1(improper_lock, &cexception_cxx_type_info, cexception_dtor)
DEFINE_CXX_DATA1(improper_scheduler_attach, &cexception_cxx_type_info, cexception_dtor)
DEFINE_CXX_DATA1(invalid_scheduler_policy_key, &cexception_cxx_type_info, cexception_dtor) DEFINE_CXX_DATA1(invalid_scheduler_policy_key, &cexception_cxx_type_info, cexception_dtor)
DEFINE_CXX_DATA1(invalid_scheduler_policy_thread_specification, &cexception_cxx_type_info, cexception_dtor) DEFINE_CXX_DATA1(invalid_scheduler_policy_thread_specification, &cexception_cxx_type_info, cexception_dtor)
DEFINE_CXX_DATA1(invalid_scheduler_policy_value, &cexception_cxx_type_info, cexception_dtor) DEFINE_CXX_DATA1(invalid_scheduler_policy_value, &cexception_cxx_type_info, cexception_dtor)
...@@ -517,6 +550,9 @@ __ASM_BLOCK_BEGIN(concurrency_exception_vtables) ...@@ -517,6 +550,9 @@ __ASM_BLOCK_BEGIN(concurrency_exception_vtables)
__ASM_VTABLE(improper_lock, __ASM_VTABLE(improper_lock,
VTABLE_ADD_FUNC(cexception_vector_dtor) VTABLE_ADD_FUNC(cexception_vector_dtor)
VTABLE_ADD_FUNC(cexception_what)); VTABLE_ADD_FUNC(cexception_what));
__ASM_VTABLE(improper_scheduler_attach,
VTABLE_ADD_FUNC(cexception_vector_dtor)
VTABLE_ADD_FUNC(cexception_what));
__ASM_VTABLE(invalid_scheduler_policy_key, __ASM_VTABLE(invalid_scheduler_policy_key,
VTABLE_ADD_FUNC(cexception_vector_dtor) VTABLE_ADD_FUNC(cexception_vector_dtor)
VTABLE_ADD_FUNC(cexception_what)); VTABLE_ADD_FUNC(cexception_what));
...@@ -1105,8 +1141,11 @@ void __thiscall ThreadScheduler_Attach(ThreadScheduler *this) ...@@ -1105,8 +1141,11 @@ void __thiscall ThreadScheduler_Attach(ThreadScheduler *this)
return; return;
} }
if(context->scheduler.scheduler == &this->scheduler) if(context->scheduler.scheduler == &this->scheduler) {
throw_exception(EXCEPTION_IMPROPER_SCHEDULER_ATTACH, 0, NULL); improper_scheduler_attach e;
improper_scheduler_attach_ctor_str(&e, NULL);
_CxxThrowException(&e, &improper_scheduler_attach_exception_type);
}
if(context->scheduler.scheduler) { if(context->scheduler.scheduler) {
struct scheduler_list *l = operator_new(sizeof(*l)); struct scheduler_list *l = operator_new(sizeof(*l));
...@@ -2720,6 +2759,7 @@ void msvcrt_init_concurrency(void *base) ...@@ -2720,6 +2759,7 @@ void msvcrt_init_concurrency(void *base)
#ifdef __x86_64__ #ifdef __x86_64__
init_cexception_rtti(base); init_cexception_rtti(base);
init_improper_lock_rtti(base); init_improper_lock_rtti(base);
init_improper_scheduler_attach_rtti(base);
init_invalid_scheduler_policy_key_rtti(base); init_invalid_scheduler_policy_key_rtti(base);
init_invalid_scheduler_policy_thread_specification_rtti(base); init_invalid_scheduler_policy_thread_specification_rtti(base);
init_invalid_scheduler_policy_value_rtti(base); init_invalid_scheduler_policy_value_rtti(base);
...@@ -2733,6 +2773,7 @@ void msvcrt_init_concurrency(void *base) ...@@ -2733,6 +2773,7 @@ void msvcrt_init_concurrency(void *base)
init_cexception_cxx_type_info(base); init_cexception_cxx_type_info(base);
init_improper_lock_cxx(base); init_improper_lock_cxx(base);
init_improper_scheduler_attach_cxx(base);
init_invalid_scheduler_policy_key_cxx(base); init_invalid_scheduler_policy_key_cxx(base);
init_invalid_scheduler_policy_thread_specification_cxx(base); init_invalid_scheduler_policy_thread_specification_cxx(base);
init_invalid_scheduler_policy_value_cxx(base); init_invalid_scheduler_policy_value_cxx(base);
......
...@@ -551,36 +551,6 @@ void __thiscall bad_alloc_dtor(bad_alloc * _this) ...@@ -551,36 +551,6 @@ void __thiscall bad_alloc_dtor(bad_alloc * _this)
#if _MSVCR_VER >= 100 #if _MSVCR_VER >= 100
typedef exception improper_scheduler_attach;
extern const vtable_ptr improper_scheduler_attach_vtable;
/* ??0improper_scheduler_attach@Concurrency@@QAE@PBD@Z */
/* ??0improper_scheduler_attach@Concurrency@@QEAA@PEBD@Z */
DEFINE_THISCALL_WRAPPER(improper_scheduler_attach_ctor_str, 8)
improper_scheduler_attach* __thiscall improper_scheduler_attach_ctor_str(
improper_scheduler_attach *this, const char *str)
{
TRACE("(%p %p)\n", this, str);
return __exception_ctor(this, str, &improper_scheduler_attach_vtable);
}
/* ??0improper_scheduler_attach@Concurrency@@QAE@XZ */
/* ??0improper_scheduler_attach@Concurrency@@QEAA@XZ */
DEFINE_THISCALL_WRAPPER(improper_scheduler_attach_ctor, 4)
improper_scheduler_attach* __thiscall improper_scheduler_attach_ctor(
improper_scheduler_attach *this)
{
return improper_scheduler_attach_ctor_str(this, NULL);
}
DEFINE_THISCALL_WRAPPER(improper_scheduler_attach_copy_ctor,8)
improper_scheduler_attach * __thiscall improper_scheduler_attach_copy_ctor(
improper_scheduler_attach * _this, const improper_scheduler_attach * rhs)
{
TRACE("(%p %p)\n", _this, rhs);
return __exception_copy_ctor(_this, rhs, &improper_scheduler_attach_vtable);
}
typedef exception improper_scheduler_detach; typedef exception improper_scheduler_detach;
extern const vtable_ptr improper_scheduler_detach_vtable; extern const vtable_ptr improper_scheduler_detach_vtable;
...@@ -633,9 +603,6 @@ __ASM_VTABLE(__non_rtti_object, ...@@ -633,9 +603,6 @@ __ASM_VTABLE(__non_rtti_object,
VTABLE_ADD_FUNC(__non_rtti_object_vector_dtor) VTABLE_ADD_FUNC(__non_rtti_object_vector_dtor)
VTABLE_ADD_FUNC(exception_what)); VTABLE_ADD_FUNC(exception_what));
#if _MSVCR_VER >= 100 #if _MSVCR_VER >= 100
__ASM_VTABLE(improper_scheduler_attach,
VTABLE_ADD_FUNC(exception_vector_dtor)
VTABLE_ADD_FUNC(exception_what));
__ASM_VTABLE(improper_scheduler_detach, __ASM_VTABLE(improper_scheduler_detach,
VTABLE_ADD_FUNC(exception_vector_dtor) VTABLE_ADD_FUNC(exception_vector_dtor)
VTABLE_ADD_FUNC(exception_what)); VTABLE_ADD_FUNC(exception_what));
...@@ -655,8 +622,6 @@ DEFINE_RTTI_DATA1( bad_cast, 0, &exception_rtti_base_descriptor, ".?AVbad_cast@@ ...@@ -655,8 +622,6 @@ DEFINE_RTTI_DATA1( bad_cast, 0, &exception_rtti_base_descriptor, ".?AVbad_cast@@
DEFINE_RTTI_DATA2( __non_rtti_object, 0, &bad_typeid_rtti_base_descriptor, &exception_rtti_base_descriptor, ".?AV__non_rtti_object@@" ) DEFINE_RTTI_DATA2( __non_rtti_object, 0, &bad_typeid_rtti_base_descriptor, &exception_rtti_base_descriptor, ".?AV__non_rtti_object@@" )
#endif #endif
#if _MSVCR_VER >= 100 #if _MSVCR_VER >= 100
DEFINE_RTTI_DATA1(improper_scheduler_attach, 0, &exception_rtti_base_descriptor,
".?AVimproper_scheduler_attach@Concurrency@@" )
DEFINE_RTTI_DATA1(improper_scheduler_detach, 0, &exception_rtti_base_descriptor, DEFINE_RTTI_DATA1(improper_scheduler_detach, 0, &exception_rtti_base_descriptor,
".?AVimproper_scheduler_detach@Concurrency@@" ) ".?AVimproper_scheduler_detach@Concurrency@@" )
#endif #endif
...@@ -670,7 +635,6 @@ DEFINE_CXX_DATA2( __non_rtti_object, &bad_typeid_cxx_type_info, ...@@ -670,7 +635,6 @@ DEFINE_CXX_DATA2( __non_rtti_object, &bad_typeid_cxx_type_info,
DEFINE_CXX_DATA1( bad_alloc, &exception_cxx_type_info, bad_alloc_dtor ) DEFINE_CXX_DATA1( bad_alloc, &exception_cxx_type_info, bad_alloc_dtor )
#endif #endif
#if _MSVCR_VER >= 100 #if _MSVCR_VER >= 100
DEFINE_CXX_DATA1(improper_scheduler_attach, &exception_cxx_type_info, exception_dtor)
DEFINE_CXX_DATA1(improper_scheduler_detach, &exception_cxx_type_info, exception_dtor) DEFINE_CXX_DATA1(improper_scheduler_detach, &exception_cxx_type_info, exception_dtor)
#endif #endif
...@@ -687,7 +651,6 @@ void msvcrt_init_exception(void *base) ...@@ -687,7 +651,6 @@ void msvcrt_init_exception(void *base)
init_bad_cast_rtti(base); init_bad_cast_rtti(base);
init___non_rtti_object_rtti(base); init___non_rtti_object_rtti(base);
#if _MSVCR_VER >= 100 #if _MSVCR_VER >= 100
init_improper_scheduler_attach_rtti(base);
init_improper_scheduler_detach_rtti(base); init_improper_scheduler_detach_rtti(base);
#endif #endif
...@@ -699,7 +662,6 @@ void msvcrt_init_exception(void *base) ...@@ -699,7 +662,6 @@ void msvcrt_init_exception(void *base)
init_bad_alloc_cxx(base); init_bad_alloc_cxx(base);
#endif #endif
#if _MSVCR_VER >= 100 #if _MSVCR_VER >= 100
init_improper_scheduler_attach_cxx(base);
init_improper_scheduler_detach_cxx(base); init_improper_scheduler_detach_cxx(base);
#endif #endif
#endif #endif
...@@ -715,11 +677,6 @@ void throw_exception(exception_type et, HRESULT hr, const char *str) ...@@ -715,11 +677,6 @@ void throw_exception(exception_type et, HRESULT hr, const char *str)
_CxxThrowException(&e, &bad_alloc_exception_type); _CxxThrowException(&e, &bad_alloc_exception_type);
} }
#if _MSVCR_VER >= 100 #if _MSVCR_VER >= 100
case EXCEPTION_IMPROPER_SCHEDULER_ATTACH: {
improper_scheduler_attach e;
improper_scheduler_attach_ctor_str(&e, str);
_CxxThrowException(&e, &improper_scheduler_attach_exception_type);
}
case EXCEPTION_IMPROPER_SCHEDULER_DETACH: { case EXCEPTION_IMPROPER_SCHEDULER_DETACH: {
improper_scheduler_detach e; improper_scheduler_detach e;
improper_scheduler_detach_ctor_str(&e, str); improper_scheduler_detach_ctor_str(&e, str);
......
...@@ -190,7 +190,6 @@ void msvcrt_set_errno(int) DECLSPEC_HIDDEN; ...@@ -190,7 +190,6 @@ void msvcrt_set_errno(int) DECLSPEC_HIDDEN;
typedef enum { typedef enum {
EXCEPTION_BAD_ALLOC, EXCEPTION_BAD_ALLOC,
#if _MSVCR_VER >= 100 #if _MSVCR_VER >= 100
EXCEPTION_IMPROPER_SCHEDULER_ATTACH,
EXCEPTION_IMPROPER_SCHEDULER_DETACH, EXCEPTION_IMPROPER_SCHEDULER_DETACH,
#endif #endif
} exception_type; } exception_type;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment