mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-06-25 21:14:59 -07:00
fix pointer/array comparison paths not being enabled for not-equal; fix value arithmetic paths applying in type comparisons
This commit is contained in:
@@ -1175,8 +1175,8 @@ os_semaphore_drop(OS_Handle semaphore)
|
||||
internal OS_Handle
|
||||
os_barrier_alloc(U64 count)
|
||||
{
|
||||
OS_LNX_Entity *entity = os_w32_entity_alloc(OS_LNX_EntityKind_Barrier);
|
||||
pthread_barrier_init(&entity->barrier, count);
|
||||
OS_LNX_Entity *entity = os_lnx_entity_alloc(OS_LNX_EntityKind_Barrier);
|
||||
pthread_barrier_init(&entity->barrier, 0, count);
|
||||
OS_Handle result = {IntFromPtr(entity)};
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user