summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-06-16 19:55:03 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-06-16 19:55:03 +0000
commitae9c16c45c1f66c813a7d28e2f8567729a04627a (patch)
tree7f2c961aaaaf569600b43b909c45908073e994f7 /cpukit
parentBug report from James Housley <jim@thehousleys.net> correcting (diff)
downloadrtems-ae9c16c45c1f66c813a7d28e2f8567729a04627a.tar.bz2
Patch from John Cotton <john.cotton@nrc.ca> to correct style of
names to be rtems_PACKAGE_method.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/rtems/include/rtems/rtems/cache.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/cache.h b/cpukit/rtems/include/rtems/rtems/cache.h
index 7cfd362fd9..4ca0b85227 100644
--- a/cpukit/rtems/include/rtems/rtems/cache.h
+++ b/cpukit/rtems/include/rtems/rtems/cache.h
@@ -46,47 +46,47 @@ extern "C" {
* copybacks. It must determine how many cache lines need to be copied
* back and then perform the copybacks.
*/
-void rtems_flush_multiple_data_cache_lines( const void *, size_t );
+void rtems_cache_flush_multiple_data_lines( const void *, size_t );
/*
* This function is responsible for performing a data cache invalidate.
* It must determine how many cache lines need to be invalidated and then
* perform the invalidations.
*/
-void rtems_invalidate_multiple_data_cache_lines( const void *, size_t );
+void rtems_cache_invalidate_multiple_data_lines( const void *, size_t );
/*
* This function is responsible for performing a data cache flush.
* It flushes the entire cache.
*/
-void rtems_flush_entire_data_cache( void );
+void rtems_cache_flush_entire_data( void );
/*
* This function is responsible for performing a data cache
* invalidate. It invalidates the entire cache.
*/
-void rtems_invalidate_entire_data_cache( void );
+void rtems_cache_invalidate_entire_data( void );
/*
* This function returns the data cache granularity.
*/
-int rtems_get_data_cache_line_size( void );
+int rtems_cache_get_data_line_size( void );
/*
* This function freezes the data cache.
*/
-void rtems_freeze_data_cache( void );
+void rtems_cache_freeze_data( void );
/*
* This function unfreezes the data cache.
*/
-void rtems_unfreeze_data_cache( void );
+void rtems_cache_unfreeze_data( void );
/*
* These functions enable/disable the data cache.
*/
-void rtems_enable_data_cache( void );
-void rtems_disable_data_cache( void );
+void rtems_cache_enable_data( void );
+void rtems_cache_disable_data( void );
/*
* These functions will ONLY do something if the
@@ -99,34 +99,34 @@ void rtems_disable_data_cache( void );
* invalidate. It must determine how many cache lines need to be invalidated
* and then perform the invalidations.
*/
-void rtems_invalidate_multiple_inst_cache_lines( const void *, size_t );
+void rtems_cache_invalidate_multiple_instruction_lines( const void *, size_t );
/*
* This function is responsible for performing an instruction cache
* invalidate. It invalidates the entire cache.
*/
-void rtems_invalidate_entire_inst_cache( void );
+void rtems_cache_invalidate_entire_instruction( void );
/*
* This function returns the instruction cache granularity.
*/
-int rtems_get_inst_cache_line_size( void );
+int rtems_cache_get_instruction_line_size( void );
/*
* This function freezes the instruction cache.
*/
-void rtems_freeze_inst_cache( void );
+void rtems_cache_freeze_instruction( void );
/*
* This function unfreezes the instruction cache.
*/
-void rtems_unfreeze_inst_cache( void );
+void rtems_cache_unfreeze_instruction( void );
/*
* These functions enable/disable the instruction cache.
*/
-void rtems_enable_inst_cache( void );
-void rtems_disable_inst_cache( void );
+void rtems_cache_enable_instruction( void );
+void rtems_cache_disable_instruction( void );
#ifdef __cplusplus