posix: Doxygen Enhancement Task #7

http://www.google-melange.com/gci/task/view/google/gci2012/7958218
This commit is contained in:
Mathew Kallada
2012-12-16 08:38:02 -05:00
committed by Gedare Bloom
parent d86308bdf8
commit 810ecf05af
22 changed files with 148 additions and 30 deletions

View File

@@ -56,7 +56,7 @@ int sem_init(
/**
* @brief Destroy an Unnamed Semaphore
*
*
* 11.2.2 Destroy an Unnamed Semaphore, P1003.1b-1993, p.220
*/
int sem_destroy(
@@ -99,7 +99,7 @@ int sem_unlink(
/**
* @brief Lock a Semaphore
*
*
* 11.2.6 Lock a Semaphore, P1003.1b-1993, p.226
*
* @note P1003.4b/D8 adds sem_timedwait(), p. 27
@@ -110,7 +110,7 @@ int sem_wait(
/**
* @brief Lock a Semaphore
*
*
* @see sem_wait()
*/
int sem_trywait(
@@ -118,6 +118,9 @@ int sem_trywait(
);
#if defined(_POSIX_TIMEOUTS)
/**
* @brief Lock a Semaphore
*/
int sem_timedwait(
sem_t *sem,
const struct timespec *timeout
@@ -126,7 +129,7 @@ int sem_timedwait(
/**
* @brief Unlock a Semaphore
*
*
* 11.2.7 Unlock a Semaphore, P1003.1b-1993, p.227
*/
int sem_post(