summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-11-28 09:44:08 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-12-02 07:45:53 +0100
commit501bd46fd6b8f5b6f7c06d20680e7a35b6b60ec1 (patch)
treea8eceaac6fad275d35bd65dad8550fe5a6616bd9 /cpukit
parentrtems: Simplify includes in version.c (diff)
downloadrtems-501bd46fd6b8f5b6f7c06d20680e7a35b6b60ec1.tar.bz2
shell: Rename "IO" typedef for better Doxygen
An automatic link from every place in the documentation which mentions "IO" to this dd command internal "IO" typedef is not really nice.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/libmisc/shell/dd.h4
-rw-r--r--cpukit/libmisc/shell/extern-dd.h4
-rw-r--r--cpukit/libmisc/shell/main_dd.c4
3 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/libmisc/shell/dd.h b/cpukit/libmisc/shell/dd.h
index dc80765d48..75012e707e 100644
--- a/cpukit/libmisc/shell/dd.h
+++ b/cpukit/libmisc/shell/dd.h
@@ -61,7 +61,7 @@ typedef struct {
const char *name; /* name */
int fd; /* file descriptor */
off_t offset; /* # of blocks to skip */
-} IO;
+} rtems_shell_dd_IO;
typedef struct {
uintmax_t in_full; /* # of full input blocks */
@@ -72,7 +72,7 @@ typedef struct {
uintmax_t swab; /* # of odd-length swab blocks */
uintmax_t bytes; /* # of bytes written */
double start; /* start time of dd */
-} STAT;
+} rtems_shell_dd_STAT;
/* Flags (in ddflags). */
#define C_ASCII 0x00001
diff --git a/cpukit/libmisc/shell/extern-dd.h b/cpukit/libmisc/shell/extern-dd.h
index 405d460ef3..6dc2db0180 100644
--- a/cpukit/libmisc/shell/extern-dd.h
+++ b/cpukit/libmisc/shell/extern-dd.h
@@ -40,8 +40,8 @@
#include <setjmp.h>
typedef struct rtems_shell_dd_globals_t {
- IO in, out; /* input/output state */
- STAT st; /* statistics */
+ rtems_shell_dd_IO in, out; /* input/output state */
+ rtems_shell_dd_STAT st; /* statistics */
void (*cfunc)(struct rtems_shell_dd_globals_t* globals); /* conversion function */
uintmax_t cpy_cnt; /* # of blocks to copy */
u_int ddflags; /* conversion options */
diff --git a/cpukit/libmisc/shell/main_dd.c b/cpukit/libmisc/shell/main_dd.c
index 35cd826711..93cd4cc8f5 100644
--- a/cpukit/libmisc/shell/main_dd.c
+++ b/cpukit/libmisc/shell/main_dd.c
@@ -86,7 +86,7 @@ __FBSDID("$FreeBSD: src/bin/dd/dd.c,v 1.43 2004/08/15 19:10:05 rwatson Exp $");
static void dd_close(rtems_shell_dd_globals* globals);
static void dd_in(rtems_shell_dd_globals* globals);
-static void getfdtype(rtems_shell_dd_globals* globals, IO *);
+static void getfdtype(rtems_shell_dd_globals* globals, rtems_shell_dd_IO *);
static void setup(rtems_shell_dd_globals* globals);
#if RTEMS_REMOVED
@@ -299,7 +299,7 @@ setup(rtems_shell_dd_globals* globals)
}
static void
-getfdtype(rtems_shell_dd_globals* globals, IO *io)
+getfdtype(rtems_shell_dd_globals* globals, rtems_shell_dd_IO *io)
{
struct stat sb;
#if RTEMS_REMOVED