History log of /netbsd-src/lib/libc/arch/powerpc/gen/syncicache.c (Results 1 – 15 of 15)
Revision Date Author Comments
# 0db6a6b0 18-Mar-2008 he <he@NetBSD.org>

When compiling for _STANDALONE, omit a bunch of headers which aren't really
needed and which trigger build problems.

(These two files should probably be unified and put under common/...)


# ce666bb8 24-Dec-2005 perry <perry@NetBSD.org>

__asm__ -> __asm


# 4e11af46 24-Dec-2005 perry <perry@NetBSD.org>

Remove leading __ from __(const|inline|signed|volatile) -- it is obsolete.


# 4907369a 11-Aug-2003 matt <matt@NetBSD.org>

export size_t __getcachelinesize(void) for memset()


# 06edae0f 26-Nov-2002 thorpej <thorpej@NetBSD.org>

Need <stdlib.h> for abort() prototype.


# dd5b1710 28-Mar-2002 matt <matt@NetBSD.org>

Add sync before isync since the MPC74xx require it.


# 12810ed3 26-Mar-2002 matt <matt@NetBSD.org>

Use size_t in prototype (so this will be LP64 clean for PPC64 someday).
Calculate len separately for icache & dcache in case each has different
cacheline widths. Make the code for both loops the sam

Use size_t in prototype (so this will be LP64 clean for PPC64 someday).
Calculate len separately for icache & dcache in case each has different
cacheline widths. Make the code for both loops the same except for the
dcbst/icbi. Deal with sizes >=2GB properly (like that'll happen but ...)

show more ...


# f0658bda 18-Mar-2002 dbj <dbj@NetBSD.org>

make compile with _STANDALONE


# a33f33ab 13-Mar-2002 eeh <eeh@NetBSD.org>

Remove leftover debug code. Oops.


# bc403009 12-Mar-2002 eeh <eeh@NetBSD.org>

Use new CPU_CACHEINFO sysctl to get more detailed information about
cache layout.


# 9969d439 27-Aug-2001 matt <matt@NetBSD.org>

Ansi'fy. (to make this compile under -Wstrict-prototypes)


# 37606c15 26-Jan-2001 wiz <wiz@NetBSD.org>

delint (variable is only used for size, so make if size_t instead of int).


# 6b9ed411 29-Jun-2000 mrg <mrg@NetBSD.org>

sync with libkern version; <vm/vm.h> -> <uvm/uvm_extern.h>


# cb9a32fd 05-May-1999 tsubai <tsubai@NetBSD.org>

* Add getcachelinesize() prototype.
* Make this compile with -D_STANDALONE.


# 54230938 17-Apr-1999 ws <ws@NetBSD.org>

Modify syncicache on PowerPC from an inline to a real function.
Support different cache line sizes with the same object code in userland.
While here, move the function to implementation name space.