summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/monitor/mon-sema.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libmisc/monitor/mon-sema.c')
-rw-r--r--cpukit/libmisc/monitor/mon-sema.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/libmisc/monitor/mon-sema.c b/cpukit/libmisc/monitor/mon-sema.c
index 12282ce148..276601c04c 100644
--- a/cpukit/libmisc/monitor/mon-sema.c
+++ b/cpukit/libmisc/monitor/mon-sema.c
@@ -23,18 +23,18 @@ rtems_monitor_sema_canonical(
Semaphore_Control *rtems_sema = (Semaphore_Control *) sema_void;
canonical_sema->attribute = rtems_sema->attribute_set;
- canonical_sema->priority_ceiling =
+ canonical_sema->priority_ceiling =
rtems_sema->Core_control.mutex.Attributes.priority_ceiling;
- canonical_sema->holder_id =
+ canonical_sema->holder_id =
rtems_sema->Core_control.mutex.holder_id;
if (_Attributes_Is_counting_semaphore(canonical_sema->attribute)) {
/* we have a counting semaphore */
- canonical_sema->cur_count =
+ canonical_sema->cur_count =
rtems_sema->Core_control.semaphore.count;
- canonical_sema->max_count =
+ canonical_sema->max_count =
rtems_sema->Core_control.semaphore.Attributes.maximum_count;
}
else {
@@ -54,7 +54,7 @@ rtems_monitor_sema_dump_header(
ID NAME ATTR PRICEIL CURR_CNT HOLDID \n");
/*23456789 123456789 123456789 123456789 123456789 123456789 123456789 1234
1 2 3 4 5 6 7 */
-
+
rtems_monitor_separator();
}