From 87018643e850aee79d62c521a8f6f40cdc9d2e5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Antonio=20Hern=C3=A1ndez=20C=C3=A1novas?= Date: Sat, 25 Aug 2018 00:12:16 +0200 Subject: [PATCH] fix doc --- nx/include/switch/kernel/barrier.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/include/switch/kernel/barrier.h b/nx/include/switch/kernel/barrier.h index bfc82a5f..f00f6dc3 100644 --- a/nx/include/switch/kernel/barrier.h +++ b/nx/include/switch/kernel/barrier.h @@ -43,7 +43,7 @@ void barrierRegister(Barrier* b, Thread* thread); void barrierUnregister(Barrier* b, Thread* thread); /** - * @brief Waits until all processes registered in the barrier call this function + * @brief Waits until all processes registered in the barrier call this function, if a not registered thread calls this function, it returns without waiting * @param b Barrier object */ void barrierWait(Barrier* b);