aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include/chstreams.h
diff options
context:
space:
mode:
Diffstat (limited to 'os/kernel/include/chstreams.h')
-rw-r--r--os/kernel/include/chstreams.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/os/kernel/include/chstreams.h b/os/kernel/include/chstreams.h
index 436697a9a..039f0dbd6 100644
--- a/os/kernel/include/chstreams.h
+++ b/os/kernel/include/chstreams.h
@@ -83,6 +83,8 @@ typedef struct {
* be less than the specified number of bytes if the
* stream reaches a physical end of file and cannot be
* extended.
+ *
+ * @api
*/
#define chSequentialStreamWrite(ip, bp, n) ((ip)->vmt->write(ip, bp, n))
@@ -96,6 +98,8 @@ typedef struct {
* @return The number of bytes transferred. The return value can
* be less than the specified number of bytes if the
* stream reaches the end of the available data.
+ *
+ * @api
*/
#define chSequentialStreamRead(ip, bp, n) ((ip)->vmt->read(ip, bp, n))