DS
по моему проверять свой флаг дешевле, чем
read_lock(&listmutex);
...
read_unlock(&listmutex);
Size: a a a
DS
read_lock(&listmutex);
...
read_unlock(&listmutex);
DS
read_lock(&listmutex);
...
read_unlock(&listmutex);
DS
I
void call_me()
{}
void* ptr_1 = static_cast <void*>( call_me ); // 1
...
void* ptr_2 = reinterpret_cast<void*>( call_me ); // 2
...
reinterpret_cast<void(*)()>( ptr_2 );
// 3
Определите верное описание происходящего.ПК
I
d
void call_me()
{}
void* ptr_1 = static_cast <void*>( call_me ); // 1
...
void* ptr_2 = reinterpret_cast<void*>( call_me ); // 2
...
reinterpret_cast<void(*)()>( ptr_2 );
// 3
Определите верное описание происходящего.VS
d
AT
VS
OZ
P
void call_me()
{}
void* ptr_1 = static_cast <void*>( call_me ); // 1
...
void* ptr_2 = reinterpret_cast<void*>( call_me ); // 2
...
reinterpret_cast<void(*)()>( ptr_2 );
// 3
Определите верное описание происходящего.d
P
d
P