diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-05-07 18:43:52 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-05-07 18:43:52 +0000 |
commit | 6ee956d7b6cf775fd85c51347b75e39daa412d38 (patch) | |
tree | 7a8d19d387c449d7abff0ba208dde3ab677cd075 /os/kernel | |
parent | de3f32e40598208e387c6fa8963ed0176404c211 (diff) | |
download | ChibiOS-6ee956d7b6cf775fd85c51347b75e39daa412d38.tar.gz ChibiOS-6ee956d7b6cf775fd85c51347b75e39daa412d38.tar.bz2 ChibiOS-6ee956d7b6cf775fd85c51347b75e39daa412d38.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4171 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel')
-rw-r--r-- | os/kernel/include/chioch.h | 4 | ||||
-rw-r--r-- | os/kernel/include/chstreams.h | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/os/kernel/include/chioch.h b/os/kernel/include/chioch.h index 27e2abbb4..d8e8771f6 100644 --- a/os/kernel/include/chioch.h +++ b/os/kernel/include/chioch.h @@ -71,8 +71,8 @@ *
* @brief @p BaseChannel virtual methods table.
*/
-struct BaseChannelVMT { \
- _base_channel_methods \
+struct BaseChannelVMT {
+ _base_channel_methods
};
/**
diff --git a/os/kernel/include/chstreams.h b/os/kernel/include/chstreams.h index 3911c91ae..f12c662cd 100644 --- a/os/kernel/include/chstreams.h +++ b/os/kernel/include/chstreams.h @@ -26,11 +26,11 @@ *
* @addtogroup data_streams
* @details This module define an abstract interface for generic data streams.
- * Note that no code is present, streams are just abstract interfaces
- * like structures, you should look at the systems as to a set of
- * abstract C++ classes (even if written in C). This system has the
- * advantage to make the access to streams independent from the
- * implementation logic.<br>
+ * Note that no code is present, just abstract interfaces-like
+ * structures, you should look at the system as to a set of
+ * abstract C++ classes (even if written in C). This system
+ * has then advantage to make the access to data streams
+ * independent from the implementation logic.<br>
* The stream interface can be used as base class for high level
* object types such as files, sockets, serial ports, pipes etc.
* @{
|