summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/include/rtems
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-18 06:05:35 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-18 06:05:35 +0000
commit50f32b11653429546d7b8ff2693b5232b885e201 (patch)
treea8821a7e3025ef47082cc21ccbb56551382cdc3f /cpukit/libcsupport/include/rtems
parentRemove stray white spaces. (diff)
downloadrtems-50f32b11653429546d7b8ff2693b5232b885e201.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/libcsupport/include/rtems')
-rw-r--r--cpukit/libcsupport/include/rtems/libio.h16
-rw-r--r--cpukit/libcsupport/include/rtems/libio_.h12
-rw-r--r--cpukit/libcsupport/include/rtems/termiostypes.h10
3 files changed, 19 insertions, 19 deletions
diff --git a/cpukit/libcsupport/include/rtems/libio.h b/cpukit/libcsupport/include/rtems/libio.h
index 498ecd1f59..4819be4868 100644
--- a/cpukit/libcsupport/include/rtems/libio.h
+++ b/cpukit/libcsupport/include/rtems/libio.h
@@ -140,9 +140,9 @@ struct _rtems_filesystem_file_handlers_r {
/*
* XXX
- * This routine does not allocate any space and rtems_filesystem_freenode_t
+ * This routine does not allocate any space and rtems_filesystem_freenode_t
* is not called by the generic after calling this routine.
- * ie. node_access does not have to contain valid data when the
+ * ie. node_access does not have to contain valid data when the
* routine returns.
*/
@@ -228,9 +228,9 @@ typedef int (*rtems_filesystem_symlink_t)(
);
typedef int (*rtems_filesystem_readlink_t)(
- rtems_filesystem_location_info_t *loc, /* IN */
- char *buf, /* OUT */
- size_t bufsize
+ rtems_filesystem_location_info_t *loc, /* IN */
+ char *buf, /* OUT */
+ size_t bufsize
);
/*
@@ -342,7 +342,7 @@ struct rtems_libio_tt {
off_t offset; /* current offset into file */
uint32_t flags;
rtems_filesystem_location_info_t pathinfo;
- Objects_Id sem;
+ Objects_Id sem;
uint32_t data0; /* private to "driver" */
void *data1; /* ... */
void *file_info; /* used by file handlers */
@@ -476,8 +476,8 @@ union __rtems_dev_t {
} __overlay;
};
-static inline dev_t rtems_filesystem_make_dev_t(
- rtems_device_major_number _major,
+static inline dev_t rtems_filesystem_make_dev_t(
+ rtems_device_major_number _major,
rtems_device_minor_number _minor
)
{
diff --git a/cpukit/libcsupport/include/rtems/libio_.h b/cpukit/libcsupport/include/rtems/libio_.h
index cc5b4ff7bc..3662202e2e 100644
--- a/cpukit/libcsupport/include/rtems/libio_.h
+++ b/cpukit/libcsupport/include/rtems/libio_.h
@@ -21,7 +21,7 @@ extern "C" {
#include <rtems.h>
#include <rtems/libio.h> /* include before standard IO */
-#include <sys/types.h>
+#include <sys/types.h>
#include <errno.h>
@@ -64,9 +64,9 @@ extern rtems_libio_t *rtems_libio_iop_freelist;
#define rtems_libio_iop_to_descriptor(_iop) \
((!(_iop)) ? -1 : (_iop - rtems_libio_iops))
-/*
+/*
* rtems_libio_check_is_open
- *
+ *
* Macro to check if a file descriptor is actually open.
*/
@@ -190,8 +190,8 @@ extern rtems_libio_t *rtems_libio_iop_freelist;
*/
#include <rtems/userenv.h>
-extern rtems_user_env_t * rtems_current_user_env;
-extern rtems_user_env_t rtems_global_user_env;
+extern rtems_user_env_t * rtems_current_user_env;
+extern rtems_user_env_t rtems_global_user_env;
/*
* Instantiate a private copy of the per user information for the calling task.
@@ -199,7 +199,7 @@ extern rtems_user_env_t rtems_global_user_env;
rtems_status_code rtems_libio_set_private_env(void);
rtems_status_code rtems_libio_share_private_env(rtems_id task_id) ;
-
+
/*
* File Descriptor Routine Prototypes
*/
diff --git a/cpukit/libcsupport/include/rtems/termiostypes.h b/cpukit/libcsupport/include/rtems/termiostypes.h
index ab5968d0a2..92f8c97b1c 100644
--- a/cpukit/libcsupport/include/rtems/termiostypes.h
+++ b/cpukit/libcsupport/include/rtems/termiostypes.h
@@ -37,7 +37,7 @@ struct rtems_termios_rawbuf {
volatile unsigned int Head;
volatile unsigned int Tail;
volatile unsigned int Size;
- rtems_id Semaphore;
+ rtems_id Semaphore;
};
/*
* Variables associated with each termios instance.
@@ -112,8 +112,8 @@ struct rtems_termios_tty {
/*
* I/O task IDs (for task-driven drivers)
*/
- rtems_id rxTaskId;
- rtems_id txTaskId;
+ rtems_id rxTaskId;
+ rtems_id txTaskId;
/*
* line discipline related stuff
*/
@@ -155,8 +155,8 @@ void rtems_termios_rxirq_occured(struct rtems_termios_tty *tty);
* FIXME: this should move to termios.h!
* put a string to output ring buffer
*/
-void rtems_termios_puts (const char *buf,
- int len,
+void rtems_termios_puts (const char *buf,
+ int len,
struct rtems_termios_tty *tty);
/*
* global hooks for line disciplines