summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/objectinitializeinformation.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-17 13:32:13 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-17 13:32:13 +0000
commit05279b84b4a0f798b43ce1731784b7db577e772f (patch)
tree4079787381b3993b1f1ea00e4d9083563f8e1252 /cpukit/score/src/objectinitializeinformation.c
parent2004-04-17 Ralf Corsepius <ralf_corsepius@rtems.org> (diff)
downloadrtems-05279b84b4a0f798b43ce1731784b7db577e772f.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/score/src/objectinitializeinformation.c')
-rw-r--r--cpukit/score/src/objectinitializeinformation.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/cpukit/score/src/objectinitializeinformation.c b/cpukit/score/src/objectinitializeinformation.c
index 366f4382db..9f9c549933 100644
--- a/cpukit/score/src/objectinitializeinformation.c
+++ b/cpukit/score/src/objectinitializeinformation.c
@@ -68,14 +68,14 @@ void _Objects_Initialize_information(
information->the_api = the_api;
information->the_class = the_class;
information->is_string = is_string;
-
+
information->local_table = 0;
information->name_table = 0;
information->inactive_per_block = 0;
information->object_blocks = 0;
-
+
information->inactive = 0;
-
+
/*
* Set the entry in the object information table.
*/
@@ -87,14 +87,14 @@ void _Objects_Initialize_information(
*/
information->size = size;
-
+
/*
* Are we operating in unlimited, or auto-extend mode
*/
information->auto_extend = (maximum & OBJECTS_UNLIMITED_OBJECTS) ? TRUE : FALSE;
maximum &= ~OBJECTS_UNLIMITED_OBJECTS;
-
+
/*
* The allocation unit is the maximum value
*/
@@ -130,7 +130,7 @@ void _Objects_Initialize_information(
information->name_length = name_length;
_Chain_Initialize_empty( &information->Inactive );
-
+
/*
* Initialize objects .. if there are any
*/
@@ -141,17 +141,17 @@ void _Objects_Initialize_information(
* Reset the maximum value. It will be updated when the information is
* extended.
*/
-
+
information->maximum = 0;
-
+
/*
* Always have the maximum size available so the current performance
* figures are create are met. If the user moves past the maximum
* number then a performance hit is taken.
*/
-
+
_Objects_Extend_information( information );
-
+
}
/*