From 6d20b298cb8f804bd2306801ba53a568f0c3973a Mon Sep 17 00:00:00 2001 From: Unknown Date: Sat, 30 Jun 2018 18:43:47 -0400 Subject: [PATCH] Fix semaphore.h formatting to match semaphore.c --- nx/include/switch/kernel/semaphore.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nx/include/switch/kernel/semaphore.h b/nx/include/switch/kernel/semaphore.h index dd7aeafa..4eaa434b 100644 --- a/nx/include/switch/kernel/semaphore.h +++ b/nx/include/switch/kernel/semaphore.h @@ -22,23 +22,23 @@ typedef struct Semaphore * @param s Semaphore object. * @param initial_count initial value for internal counter (typically the # of free resources). */ -void semaphoreInit(Semaphore * s, u64 initial_count); +void semaphoreInit(Semaphore *s, u64 initial_count); /** * @brief Increments the Semaphore to allow other threads to continue. * @param s Semaphore object. */ -void semaphoreSignal(Semaphore * s); +void semaphoreSignal(Semaphore *s); /** * @brief Decrements Semaphore and waits if 0. * @param s Semaphore object. */ -void semaphoreWait(Semaphore * s); +void semaphoreWait(Semaphore *s); /** * @brief Attempts to get lock without waiting. * @param s Semaphore object. * @return true if no wait and successful lock, false otherwise. */ -bool semaphoreTryWait(Semaphore * s); +bool semaphoreTryWait(Semaphore *s);