X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fkern%2Fmsg.h;h=6cbcc444e371a98bb540a46bbca97af60f157fe8;hb=refs%2Fheads%2Fmaster;hp=2d4672204827495cfef7953960de12067285be06;hpb=b46f64914c62fbb0297728280478681659469654;p=bertos.git diff --git a/bertos/kern/msg.h b/bertos/kern/msg.h index 2d467220..6cbcc444 100644 --- a/bertos/kern/msg.h +++ b/bertos/kern/msg.h @@ -32,15 +32,14 @@ * --> * * - * This module implements a common system for executing - * a user defined action calling a hook function. - * - * - * \author Bernie Innocenti + * \defgroup kern_msg Message box IPC + * \ingroup kern + * \{ * * \brief Simple inter-process messaging system * - * Handle queues of messages associated an action. + * This module implements a common system for executing + * a user defined action calling a hook function. * * A message port is an abstraction used to exchange information * asynchronously between processes or other entities such as @@ -179,6 +178,8 @@ * } * \endcode * + * \author Bernie Innocenti + * * $WIZ$ module_name = "msg" * $WIZ$ module_depends = "event", "signal", "kernel" */ @@ -290,6 +291,8 @@ INLINE void msg_reply(Msg *msg) msg_put(msg->replyPort, msg); } +/** \} */ //defgroup kern_msg + int msg_testRun(void); int msg_testSetup(void); int msg_testTearDown(void);