summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-15 13:26:21 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-15 13:26:21 +0000
commit3239698d1fe72364c85f7a76799421bfd90cc4d7 (patch)
treee341344cbac10c1e3988de8657b39cce6c4ec848 /cpukit/score/src
parentRemove unnecessary white spaces. (diff)
downloadrtems-3239698d1fe72364c85f7a76799421bfd90cc4d7.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/score/src')
-rw-r--r--cpukit/score/src/coremsgbroadcast.c1
-rw-r--r--cpukit/score/src/coremsgclose.c1
-rw-r--r--cpukit/score/src/coremsgflush.c1
-rw-r--r--cpukit/score/src/coremsgflushsupp.c1
-rw-r--r--cpukit/score/src/coremsgflushwait.c1
-rw-r--r--cpukit/score/src/coremsgseize.c1
-rw-r--r--cpukit/score/src/coremutex.c1
-rw-r--r--cpukit/score/src/coremutexsurrender.c1
-rw-r--r--cpukit/score/src/coresemsurrender.c1
-rw-r--r--cpukit/score/src/coretodset.c1
-rw-r--r--cpukit/score/src/coretodtoseconds.c1
-rw-r--r--cpukit/score/src/coretodvalidate.c1
-rw-r--r--cpukit/score/src/heap.c1
-rw-r--r--cpukit/score/src/heapallocate.c1
-rw-r--r--cpukit/score/src/heapextend.c1
-rw-r--r--cpukit/score/src/heapfree.c1
-rw-r--r--cpukit/score/src/heapsizeofuserarea.c1
-rw-r--r--cpukit/score/src/thread.c1
-rw-r--r--cpukit/score/src/threadqdequeue.c1
-rw-r--r--cpukit/score/src/threadqdequeuefifo.c1
-rw-r--r--cpukit/score/src/threadqdequeuepriority.c1
-rw-r--r--cpukit/score/src/threadqenqueue.c1
-rw-r--r--cpukit/score/src/threadqenqueuefifo.c1
-rw-r--r--cpukit/score/src/threadqenqueuepriority.c1
-rw-r--r--cpukit/score/src/threadqextract.c1
-rw-r--r--cpukit/score/src/threadqextractfifo.c1
-rw-r--r--cpukit/score/src/threadqextractpriority.c1
-rw-r--r--cpukit/score/src/threadqextractwithproxy.c1
-rw-r--r--cpukit/score/src/threadqfirst.c1
-rw-r--r--cpukit/score/src/threadqfirstfifo.c1
-rw-r--r--cpukit/score/src/threadqflush.c1
-rw-r--r--cpukit/score/src/threadqtimeout.c1
-rw-r--r--cpukit/score/src/threadreset.c1
-rw-r--r--cpukit/score/src/threadrotatequeue.c6
-rw-r--r--cpukit/score/src/userext.c2
-rw-r--r--cpukit/score/src/watchdogadjust.c1
-rw-r--r--cpukit/score/src/watchdoginsert.c1
-rw-r--r--cpukit/score/src/watchdogremove.c1
38 files changed, 0 insertions, 44 deletions
diff --git a/cpukit/score/src/coremsgbroadcast.c b/cpukit/score/src/coremsgbroadcast.c
index d19c7b7a0d..1d6340991c 100644
--- a/cpukit/score/src/coremsgbroadcast.c
+++ b/cpukit/score/src/coremsgbroadcast.c
@@ -109,4 +109,3 @@ CORE_message_queue_Status _CORE_message_queue_Broadcast(
*count = number_broadcasted;
return CORE_MESSAGE_QUEUE_STATUS_SUCCESSFUL;
}
-
diff --git a/cpukit/score/src/coremsgclose.c b/cpukit/score/src/coremsgclose.c
index 2561255375..edf13c40d5 100644
--- a/cpukit/score/src/coremsgclose.c
+++ b/cpukit/score/src/coremsgclose.c
@@ -74,4 +74,3 @@ void _CORE_message_queue_Close(
(void) _Workspace_Free( the_message_queue->message_buffers );
}
-
diff --git a/cpukit/score/src/coremsgflush.c b/cpukit/score/src/coremsgflush.c
index 0398974acc..a6265352a2 100644
--- a/cpukit/score/src/coremsgflush.c
+++ b/cpukit/score/src/coremsgflush.c
@@ -52,4 +52,3 @@ uint32_t _CORE_message_queue_Flush(
else
return 0;
}
-
diff --git a/cpukit/score/src/coremsgflushsupp.c b/cpukit/score/src/coremsgflushsupp.c
index ca68512419..d0e2c99841 100644
--- a/cpukit/score/src/coremsgflushsupp.c
+++ b/cpukit/score/src/coremsgflushsupp.c
@@ -102,4 +102,3 @@ uint32_t _CORE_message_queue_Flush_support(
_ISR_Enable( level );
return count;
}
-
diff --git a/cpukit/score/src/coremsgflushwait.c b/cpukit/score/src/coremsgflushwait.c
index 34f3d8518a..359933b9ce 100644
--- a/cpukit/score/src/coremsgflushwait.c
+++ b/cpukit/score/src/coremsgflushwait.c
@@ -67,4 +67,3 @@ void _CORE_message_queue_Flush_waiting_threads(
CORE_MESSAGE_QUEUE_STATUS_UNSATISFIED_NOWAIT
);
}
-
diff --git a/cpukit/score/src/coremsgseize.c b/cpukit/score/src/coremsgseize.c
index fdbbcb0a0d..ed140f0d90 100644
--- a/cpukit/score/src/coremsgseize.c
+++ b/cpukit/score/src/coremsgseize.c
@@ -134,4 +134,3 @@ void _CORE_message_queue_Seize(
_Thread_queue_Enqueue( &the_message_queue->Wait_queue, timeout );
}
-
diff --git a/cpukit/score/src/coremutex.c b/cpukit/score/src/coremutex.c
index 23bfa5a46e..6ec0f1ccf0 100644
--- a/cpukit/score/src/coremutex.c
+++ b/cpukit/score/src/coremutex.c
@@ -86,4 +86,3 @@ void _CORE_mutex_Initialize(
CORE_MUTEX_TIMEOUT
);
}
-
diff --git a/cpukit/score/src/coremutexsurrender.c b/cpukit/score/src/coremutexsurrender.c
index 88810ac3bb..e65254d080 100644
--- a/cpukit/score/src/coremutexsurrender.c
+++ b/cpukit/score/src/coremutexsurrender.c
@@ -139,4 +139,3 @@ CORE_mutex_Status _CORE_mutex_Surrender(
return CORE_MUTEX_STATUS_SUCCESSFUL;
}
-
diff --git a/cpukit/score/src/coresemsurrender.c b/cpukit/score/src/coresemsurrender.c
index 6e75cfd83d..a5f9d544d6 100644
--- a/cpukit/score/src/coresemsurrender.c
+++ b/cpukit/score/src/coresemsurrender.c
@@ -71,4 +71,3 @@ CORE_semaphore_Status _CORE_semaphore_Surrender(
return status;
}
-
diff --git a/cpukit/score/src/coretodset.c b/cpukit/score/src/coretodset.c
index 152710a2ee..c679e5e8f4 100644
--- a/cpukit/score/src/coretodset.c
+++ b/cpukit/score/src/coretodset.c
@@ -60,4 +60,3 @@ void _TOD_Set(
_Thread_Enable_dispatch();
}
-
diff --git a/cpukit/score/src/coretodtoseconds.c b/cpukit/score/src/coretodtoseconds.c
index 95e3efaaf9..ae60f512b0 100644
--- a/cpukit/score/src/coretodtoseconds.c
+++ b/cpukit/score/src/coretodtoseconds.c
@@ -61,4 +61,3 @@ uint32_t _TOD_To_seconds(
return( time );
}
-
diff --git a/cpukit/score/src/coretodvalidate.c b/cpukit/score/src/coretodvalidate.c
index 4a4f7d3b0e..49f668ed67 100644
--- a/cpukit/score/src/coretodvalidate.c
+++ b/cpukit/score/src/coretodvalidate.c
@@ -60,4 +60,3 @@ boolean _TOD_Validate(
return TRUE;
}
-
diff --git a/cpukit/score/src/heap.c b/cpukit/score/src/heap.c
index fdafffdf9d..6d6873ebed 100644
--- a/cpukit/score/src/heap.c
+++ b/cpukit/score/src/heap.c
@@ -90,4 +90,3 @@ uint32_t _Heap_Initialize(
return ( the_size - HEAP_BLOCK_USED_OVERHEAD );
}
-
diff --git a/cpukit/score/src/heapallocate.c b/cpukit/score/src/heapallocate.c
index 13165bcfce..aa789671a1 100644
--- a/cpukit/score/src/heapallocate.c
+++ b/cpukit/score/src/heapallocate.c
@@ -111,4 +111,3 @@ void *_Heap_Allocate(
return ptr;
}
-
diff --git a/cpukit/score/src/heapextend.c b/cpukit/score/src/heapextend.c
index 7bc4d24a11..e131bbce8f 100644
--- a/cpukit/score/src/heapextend.c
+++ b/cpukit/score/src/heapextend.c
@@ -109,4 +109,3 @@ Heap_Extend_status _Heap_Extend(
return HEAP_EXTEND_SUCCESSFUL;
}
-
diff --git a/cpukit/score/src/heapfree.c b/cpukit/score/src/heapfree.c
index 715f23d9a5..40e56a7b88 100644
--- a/cpukit/score/src/heapfree.c
+++ b/cpukit/score/src/heapfree.c
@@ -101,4 +101,3 @@ boolean _Heap_Free(
return( TRUE );
}
-
diff --git a/cpukit/score/src/heapsizeofuserarea.c b/cpukit/score/src/heapsizeofuserarea.c
index da101d730c..1ab6a3df6d 100644
--- a/cpukit/score/src/heapsizeofuserarea.c
+++ b/cpukit/score/src/heapsizeofuserarea.c
@@ -60,4 +60,3 @@ boolean _Heap_Size_of_user_area(
*size = the_size;
return( TRUE );
}
-
diff --git a/cpukit/score/src/thread.c b/cpukit/score/src/thread.c
index 9ad8960b26..3e53aef55c 100644
--- a/cpukit/score/src/thread.c
+++ b/cpukit/score/src/thread.c
@@ -105,4 +105,3 @@ void _Thread_Handler_initialization(
);
}
-
diff --git a/cpukit/score/src/threadqdequeue.c b/cpukit/score/src/threadqdequeue.c
index faef3ddf0c..cee4d255bf 100644
--- a/cpukit/score/src/threadqdequeue.c
+++ b/cpukit/score/src/threadqdequeue.c
@@ -59,4 +59,3 @@ Thread_Control *_Thread_queue_Dequeue(
return( the_thread );
}
-
diff --git a/cpukit/score/src/threadqdequeuefifo.c b/cpukit/score/src/threadqdequeuefifo.c
index 1906f5bb82..42a1a33bef 100644
--- a/cpukit/score/src/threadqdequeuefifo.c
+++ b/cpukit/score/src/threadqdequeuefifo.c
@@ -83,4 +83,3 @@ Thread_Control *_Thread_queue_Dequeue_fifo(
}
return NULL; /* this is only to prevent warnings */
}
-
diff --git a/cpukit/score/src/threadqdequeuepriority.c b/cpukit/score/src/threadqdequeuepriority.c
index 4567a76fd3..2646b44e17 100644
--- a/cpukit/score/src/threadqdequeuepriority.c
+++ b/cpukit/score/src/threadqdequeuepriority.c
@@ -122,4 +122,3 @@ dequeue:
#endif
return( the_thread );
}
-
diff --git a/cpukit/score/src/threadqenqueue.c b/cpukit/score/src/threadqenqueue.c
index 9bffa0e08f..4a0964e8c1 100644
--- a/cpukit/score/src/threadqenqueue.c
+++ b/cpukit/score/src/threadqenqueue.c
@@ -74,4 +74,3 @@ void _Thread_queue_Enqueue(
break;
}
}
-
diff --git a/cpukit/score/src/threadqenqueuefifo.c b/cpukit/score/src/threadqenqueuefifo.c
index fc336d0ce0..874c29206f 100644
--- a/cpukit/score/src/threadqenqueuefifo.c
+++ b/cpukit/score/src/threadqenqueuefifo.c
@@ -98,4 +98,3 @@ void _Thread_queue_Enqueue_fifo (
#endif
}
-
diff --git a/cpukit/score/src/threadqenqueuepriority.c b/cpukit/score/src/threadqenqueuepriority.c
index 2d00d89187..48a8d13560 100644
--- a/cpukit/score/src/threadqenqueuepriority.c
+++ b/cpukit/score/src/threadqenqueuepriority.c
@@ -218,4 +218,3 @@ synchronize:
_Thread_MP_Free_proxy( the_thread );
#endif
}
-
diff --git a/cpukit/score/src/threadqextract.c b/cpukit/score/src/threadqextract.c
index a70ea290bb..0d2696ed61 100644
--- a/cpukit/score/src/threadqextract.c
+++ b/cpukit/score/src/threadqextract.c
@@ -51,4 +51,3 @@ void _Thread_queue_Extract(
break;
}
}
-
diff --git a/cpukit/score/src/threadqextractfifo.c b/cpukit/score/src/threadqextractfifo.c
index 464d207561..4d8dad2149 100644
--- a/cpukit/score/src/threadqextractfifo.c
+++ b/cpukit/score/src/threadqextractfifo.c
@@ -70,4 +70,3 @@ void _Thread_queue_Extract_fifo(
#endif
}
-
diff --git a/cpukit/score/src/threadqextractpriority.c b/cpukit/score/src/threadqextractpriority.c
index 10831abd65..5836c17de2 100644
--- a/cpukit/score/src/threadqextractpriority.c
+++ b/cpukit/score/src/threadqextractpriority.c
@@ -101,4 +101,3 @@ void _Thread_queue_Extract_priority(
else
_ISR_Enable( level );
}
-
diff --git a/cpukit/score/src/threadqextractwithproxy.c b/cpukit/score/src/threadqextractwithproxy.c
index 3489303d51..3eedb6e17e 100644
--- a/cpukit/score/src/threadqextractwithproxy.c
+++ b/cpukit/score/src/threadqextractwithproxy.c
@@ -60,4 +60,3 @@ boolean _Thread_queue_Extract_with_proxy(
}
return FALSE;
}
-
diff --git a/cpukit/score/src/threadqfirst.c b/cpukit/score/src/threadqfirst.c
index 002b37dcc8..9b9db708e1 100644
--- a/cpukit/score/src/threadqfirst.c
+++ b/cpukit/score/src/threadqfirst.c
@@ -55,4 +55,3 @@ Thread_Control *_Thread_queue_First(
return the_thread;
}
-
diff --git a/cpukit/score/src/threadqfirstfifo.c b/cpukit/score/src/threadqfirstfifo.c
index 854c6390b8..15cb1f4969 100644
--- a/cpukit/score/src/threadqfirstfifo.c
+++ b/cpukit/score/src/threadqfirstfifo.c
@@ -44,4 +44,3 @@ Thread_Control *_Thread_queue_First_fifo(
return NULL;
}
-
diff --git a/cpukit/score/src/threadqflush.c b/cpukit/score/src/threadqflush.c
index e069bd89b9..99aa002f90 100644
--- a/cpukit/score/src/threadqflush.c
+++ b/cpukit/score/src/threadqflush.c
@@ -52,4 +52,3 @@ void _Thread_queue_Flush(
the_thread->Wait.return_code = status;
}
}
-
diff --git a/cpukit/score/src/threadqtimeout.c b/cpukit/score/src/threadqtimeout.c
index cc33843c53..487b882702 100644
--- a/cpukit/score/src/threadqtimeout.c
+++ b/cpukit/score/src/threadqtimeout.c
@@ -75,4 +75,3 @@ void _Thread_queue_Timeout(
break;
}
}
-
diff --git a/cpukit/score/src/threadreset.c b/cpukit/score/src/threadreset.c
index 85c07c318c..00f1b97a13 100644
--- a/cpukit/score/src/threadreset.c
+++ b/cpukit/score/src/threadreset.c
@@ -62,4 +62,3 @@ void _Thread_Reset(
_Thread_Set_priority( the_thread, the_thread->Start.initial_priority );
}
}
-
diff --git a/cpukit/score/src/threadrotatequeue.c b/cpukit/score/src/threadrotatequeue.c
index 3a2635e082..762ee57b71 100644
--- a/cpukit/score/src/threadrotatequeue.c
+++ b/cpukit/score/src/threadrotatequeue.c
@@ -84,9 +84,3 @@ void _Thread_Rotate_Ready_Queue(
_ISR_Enable( level );
}
-
-
-
-
-
-
diff --git a/cpukit/score/src/userext.c b/cpukit/score/src/userext.c
index c2cc79fd07..ddb847e590 100644
--- a/cpukit/score/src/userext.c
+++ b/cpukit/score/src/userext.c
@@ -199,5 +199,3 @@ void _User_extensions_Fatal (
(*the_extension->Callouts.fatal)( the_source, is_internal, the_error );
}
}
-
-
diff --git a/cpukit/score/src/watchdogadjust.c b/cpukit/score/src/watchdogadjust.c
index 53f5e415a7..2a6dda4c45 100644
--- a/cpukit/score/src/watchdogadjust.c
+++ b/cpukit/score/src/watchdogadjust.c
@@ -81,4 +81,3 @@ void _Watchdog_Adjust(
_ISR_Enable( level );
}
-
diff --git a/cpukit/score/src/watchdoginsert.c b/cpukit/score/src/watchdoginsert.c
index 4c01603235..e765e0683a 100644
--- a/cpukit/score/src/watchdoginsert.c
+++ b/cpukit/score/src/watchdoginsert.c
@@ -107,4 +107,3 @@ exit_insert:
_Watchdog_Sync_count--;
_ISR_Enable( level );
}
-
diff --git a/cpukit/score/src/watchdogremove.c b/cpukit/score/src/watchdogremove.c
index 8da474bdc0..5df935daf8 100644
--- a/cpukit/score/src/watchdogremove.c
+++ b/cpukit/score/src/watchdogremove.c
@@ -67,4 +67,3 @@ Watchdog_States _Watchdog_Remove(
_ISR_Enable( level );
return( previous_state );
}
-