From 157b6f9695e7f72f2d54b231c19cb4045710ed01 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sun, 21 Feb 2010 07:24:53 +0000 Subject: Updated license dates. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1646 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/various/ch.hpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'os/various/ch.hpp') diff --git a/os/various/ch.hpp b/os/various/ch.hpp index f0055a174..aaf27a6d2 100644 --- a/os/various/ch.hpp +++ b/os/various/ch.hpp @@ -1,5 +1,5 @@ /* - ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio. + ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 Giovanni Di Sirio. This file is part of ChibiOS/RT. @@ -74,7 +74,7 @@ namespace chibios_rt { class Timer { public: /** - * @brief Embedded @p VirtualTimer structure. + * @brief Embedded @p VirtualTimer structure. */ struct ::VirtualTimer timer; @@ -113,7 +113,7 @@ namespace chibios_rt { class BaseThread { public: /** - * @brief Pointer to the system thread. + * @brief Pointer to the system thread. */ ::Thread *thread_ref; @@ -250,7 +250,7 @@ namespace chibios_rt { public: /** - * @brief The thread name. + * @brief The thread name. */ const char *name; @@ -415,19 +415,19 @@ namespace chibios_rt { /** * @brief Signals the CondVar. - * @details The next thread waiting on the @p CondVar, if any, is awakened. + * @details The next thread waiting on the @p CondVar, if any, is awakened. */ void Signal(void); /** - * @brief Broadcasts the CondVar. + * @brief Broadcasts the CondVar. * @details All the threads waiting on the @p CondVar, if any, are awakened. */ void Broadcast(void); /** * @brief Waits on the CondVar while releasing the controlling mutex. - * + * * @return The wakep mode. * @retval RDY_OK if the condvar was signaled using chCondSignal(). * @retval RDY_RESET if the condvar was signaled using chCondBroadcast(). -- cgit v1.2.3