From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <4891E772.8070308@domain.hid> Date: Thu, 31 Jul 2008 18:25:22 +0200 From: Philippe Gerum MIME-Version: 1.0 References: <48760BC4.9070400@domain.hid> In-Reply-To: <48760BC4.9070400@domain.hid> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Xenomai-core] [PATCH 1/2] Include RT_MUTEX_INFO in doxygen Reply-To: rpm@xenomai.org List-Id: "Xenomai life and development \(bug reports, patches, discussions\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Jan Kiszka Cc: xenomai-core Jan Kiszka wrote: > Signed-off-by: Jan Kiszka > --- > include/native/mutex.h | 10 +++++++--- > 1 file changed, 7 insertions(+), 3 deletions(-) > Applied, thanks. > Index: b/include/native/mutex.h > =================================================================== > --- a/include/native/mutex.h > +++ b/include/native/mutex.h > @@ -26,13 +26,17 @@ > > struct rt_task; > > +/** Structure containing mutex information useful to users. > + * > + * @see rt_mutex_inquire() > + */ > typedef struct rt_mutex_info { > > - int lockcnt; /* !< Lock nesting level (> 0 means "locked"). */ > + int lockcnt; /**< Lock nesting level (> 0 means "locked"). */ > > - int nwaiters; /* !< Number of pending tasks. */ > + int nwaiters; /**< Number of pending tasks. */ > > - char name[XNOBJECT_NAME_LEN]; /* !< Symbolic name. */ > + char name[XNOBJECT_NAME_LEN]; /**< Symbolic name. */ > > } RT_MUTEX_INFO; > > > _______________________________________________ > Xenomai-core mailing list > Xenomai-core@domain.hid > https://mail.gna.org/listinfo/xenomai-core > -- Philippe.