Skip to content
Snippets Groups Projects
Commit 942df88b authored by Oleg Hahm's avatar Oleg Hahm
Browse files

Merge pull request #2635 from OlegHahm/more_doc_cleanups

More documentation cleanups
parents dd0a6496 3d411807
No related branches found
No related tags found
No related merge requests found
...@@ -187,7 +187,7 @@ int msg_try_receive(msg_t *m); ...@@ -187,7 +187,7 @@ int msg_try_receive(msg_t *m);
* @param[in] m Pointer to preallocated ``msg_t`` structure with * @param[in] m Pointer to preallocated ``msg_t`` structure with
* the message to send, must not be NULL. * the message to send, must not be NULL.
* @param[out] reply Pointer to preallocated msg. Reply will be written * @param[out] reply Pointer to preallocated msg. Reply will be written
* here, must not be NULL. * here, must not be NULL. Can be identical to @p m.
* @param[in] target_pid The PID of the target process * @param[in] target_pid The PID of the target process
* *
* @return 1, if successful. * @return 1, if successful.
......
...@@ -11,6 +11,12 @@ ...@@ -11,6 +11,12 @@
* @defgroup sys_chardevthread Chardev Thread * @defgroup sys_chardevthread Chardev Thread
* @ingroup sys * @ingroup sys
* @brief Chardev thread * @brief Chardev thread
* @{
*
* @file
* @brief Handles I/O from a char devices
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
*/ */
#ifndef __CHARDEV_THREAD_H #ifndef __CHARDEV_THREAD_H
...@@ -30,3 +36,4 @@ void *chardev_thread_entry(void *rb_); ...@@ -30,3 +36,4 @@ void *chardev_thread_entry(void *rb_);
#endif #endif
#endif /* __CHARDEV_THREAD_H */ #endif /* __CHARDEV_THREAD_H */
/** @} */
...@@ -28,12 +28,6 @@ ...@@ -28,12 +28,6 @@
*/ */
/**
* @defgroup sys_sha256 SHA264
* @ingroup sys
* @brief SHA264 hash generator
*/
/** /**
* @ingroup sys_crypto * @ingroup sys_crypto
* @{ * @{
......
...@@ -11,6 +11,12 @@ ...@@ -11,6 +11,12 @@
* @defgroup sys_ps PS * @defgroup sys_ps PS
* @ingroup sys * @ingroup sys
* @brief Show list with all threads * @brief Show list with all threads
* @{
*
* @file
* @brief List information about all active threads
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
*/ */
#ifndef __PS_H #ifndef __PS_H
...@@ -28,3 +34,4 @@ void _ps_handler(int argc, char **argv); ...@@ -28,3 +34,4 @@ void _ps_handler(int argc, char **argv);
#endif #endif
#endif /* __PS_H */ #endif /* __PS_H */
/** @} */
...@@ -11,6 +11,10 @@ ...@@ -11,6 +11,10 @@
* @defgroup sys_random Random * @defgroup sys_random Random
* @ingroup sys * @ingroup sys
* @brief Random number generator * @brief Random number generator
* @{
*
* @file
* @brief Mersenne Twister - a very fast random number generator
*/ */
#ifndef RANDOM_H #ifndef RANDOM_H
...@@ -85,3 +89,4 @@ double genrand_res53(void); ...@@ -85,3 +89,4 @@ double genrand_res53(void);
#endif #endif
#endif /* RANDOM_H */ #endif /* RANDOM_H */
/** @} */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment