summaryrefslogtreecommitdiffstats
path: root/cpukit/doxygen
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-09-28 09:08:57 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-09-28 09:10:00 +0200
commitf48d7834b07e06c46d7a7fd735d88be167ab9a52 (patch)
treeb7ce52c8e4cea5064d2247dc7c7f9e43ae758047 /cpukit/doxygen
parentvalidation: Test rtems_message_queue_construct() (diff)
downloadrtems-f48d7834b07e06c46d7a7fd735d88be167ab9a52.tar.bz2
doxygen: Fix use of getchark() and rtems_putc()
Diffstat (limited to 'cpukit/doxygen')
-rw-r--r--cpukit/doxygen/appl-config.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/doxygen/appl-config.h b/cpukit/doxygen/appl-config.h
index d4895bb66a..eb9bf72abf 100644
--- a/cpukit/doxygen/appl-config.h
+++ b/cpukit/doxygen/appl-config.h
@@ -1326,9 +1326,9 @@
* file. This device is used to initialize the standard input, output, and
* error file descriptors.
*
- * This device driver reads via rtems_putc().
+ * This device driver reads via getchark().
*
- * This device driver writes via getchark().
+ * This device driver writes via rtems_putc().
*
* The Termios framework is not used. There is no support to change device
* settings, e.g. baud, stop bits, parity, etc.
@@ -1362,15 +1362,15 @@
* file. This device is used to initialize the standard input, output, and
* error file descriptors.
*
- * This device driver reads via rtems_putc().
+ * This device driver reads via getchark().
*
* This device driver writes into a write buffer. The count of characters
* written into the write buffer is returned. It might be less than the
* requested count, in case the write buffer is full. The write is
* non-blocking and may be called from interrupt context. A dedicated task
- * reads from the write buffer and outputs the characters via getchark(). This
- * task runs with the least important priority. The write buffer size is 2047
- * characters and it is not configurable.
+ * reads from the write buffer and outputs the characters via rtems_putc().
+ * This task runs with the least important priority. The write buffer size is
+ * 2047 characters and it is not configurable.
*
* Use ``fsync( STDOUT_FILENO )`` or ``fdatasync( STDOUT_FILENO )`` to drain
* the write buffer.