source: rtems/c/src/lib/libcpu/sparc/cache/cache.c @ 784d2a1

4.115
Last change on this file since 784d2a1 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 490 bytes
Line 
1/*
2 *  Cache Management Support Routines for the SPARC
3 */
4
5#include <rtems.h>
6#include "cache_.h"
7
8
9#if defined(HAS_INSTRUCTION_CACHE)
10
11void _CPU_cache_invalidate_entire_instruction ( void )
12{
13  __asm__ volatile ("flush");
14}
15
16/* XXX these need to be addressed */
17void _CPU_cache_freeze_instruction ( void )
18{
19}
20
21void _CPU_cache_unfreeze_instruction ( void )
22{
23}
24
25void _CPU_cache_enable_instruction ( void )
26{
27}
28
29void _CPU_cache_disable_instruction (   void )
30{
31}
32
33#endif
34/* end of file */
Note: See TracBrowser for help on using the repository browser.