mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
31 lines
1.0 KiB
C
31 lines
1.0 KiB
C
/**
|
|
* @file barrier.h
|
|
* @brief Multi-threading Barrier
|
|
* @author tatehaga
|
|
* @copyright libnx Authors
|
|
*/
|
|
#pragma once
|
|
#include "semaphore.h"
|
|
|
|
/// Barrier structure.
|
|
typedef struct Barrier {
|
|
u64 count; ///< Number of threads to reach the barrier.
|
|
u64 thread_total; ///< Number of threads to wait on.
|
|
Semaphore throttle; ///< Semaphore to make sure threads release to scheduler one at a time.
|
|
Semaphore lock; ///< Semaphore to lock barrier to prevent multiple operations by threads at once.
|
|
Semaphore thread_wait; ///< Semaphore to force a thread to wait if count < thread_total.
|
|
} Barrier;
|
|
|
|
/**
|
|
* @brief Initializes a barrier and the number of threads to wait on.
|
|
* @param b Barrier object.
|
|
* @param thread_count Initial value for the number of threads the barrier must wait for.
|
|
*/
|
|
void barrierInit(Barrier *b, u64 thread_count);
|
|
|
|
/**
|
|
* @brief Forces threads to wait until all threads have called barrierWait.
|
|
* @param b Barrier object.
|
|
*/
|
|
void barrierWait(Barrier *b);
|