Commit 1a00d8dd authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcp100: Add _Concurrent_queue_base_v4::_Internal_size implementation.

parent 7c34dda6
...@@ -1330,8 +1330,8 @@ DEFINE_THISCALL_WRAPPER(_Concurrent_queue_base_v4__Internal_empty, 4) ...@@ -1330,8 +1330,8 @@ DEFINE_THISCALL_WRAPPER(_Concurrent_queue_base_v4__Internal_empty, 4)
MSVCP_bool __thiscall _Concurrent_queue_base_v4__Internal_empty( MSVCP_bool __thiscall _Concurrent_queue_base_v4__Internal_empty(
const _Concurrent_queue_base_v4 *this) const _Concurrent_queue_base_v4 *this)
{ {
FIXME("(%p) stub\n", this); TRACE("(%p)\n", this);
return 0; return this->data->head_pos == this->data->tail_pos;
} }
/* ?_Internal_size@_Concurrent_queue_base_v4@details@Concurrency@@IBEIXZ */ /* ?_Internal_size@_Concurrent_queue_base_v4@details@Concurrency@@IBEIXZ */
...@@ -1340,8 +1340,8 @@ DEFINE_THISCALL_WRAPPER(_Concurrent_queue_base_v4__Internal_size, 4) ...@@ -1340,8 +1340,8 @@ DEFINE_THISCALL_WRAPPER(_Concurrent_queue_base_v4__Internal_size, 4)
MSVCP_size_t __thiscall _Concurrent_queue_base_v4__Internal_size( MSVCP_size_t __thiscall _Concurrent_queue_base_v4__Internal_size(
const _Concurrent_queue_base_v4 *this) const _Concurrent_queue_base_v4 *this)
{ {
FIXME("(%p) stub\n", this); TRACE("(%p)\n", this);
return 0; return this->data->tail_pos - this->data->head_pos;
} }
/* ?_Internal_push@_Concurrent_queue_base_v4@details@Concurrency@@IAEXPBX@Z */ /* ?_Internal_push@_Concurrent_queue_base_v4@details@Concurrency@@IAEXPBX@Z */
......
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