diff options
author | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2005-06-23 03:27:57 +0000 |
---|---|---|
committer | njn <njn@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2005-06-23 03:27:57 +0000 |
commit | af839f52d74df156d655201a889954133ab01be7 (patch) | |
tree | b60ff6188bec3e59a193ae84c2e5441541af715d /cachegrind/cg_arch.h | |
parent | f845f8ffb1d2fac86714e32f4e279700b07722df (diff) |
Removed the VGA_/VGO_/VGP_ prefixes for arch/OS/platform-specific
things. These made sense when the arch/OS/platform-specific code was in
one module, but as that code got mixed in with generic code the boundary
between generic and non-generic blurred, and the distinction made less
sense. So let's get rid of them.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4002 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'cachegrind/cg_arch.h')
-rw-r--r-- | cachegrind/cg_arch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cachegrind/cg_arch.h b/cachegrind/cg_arch.h index 200234f5..0d349ff7 100644 --- a/cachegrind/cg_arch.h +++ b/cachegrind/cg_arch.h @@ -40,8 +40,8 @@ typedef struct { // Gives the configuration of I1, D1 and L2 caches. They get overridden // by any cache configurations specified on the command line. -void VGA_(configure_caches)(cache_t* I1c, cache_t* D1c, cache_t* L2c, - Bool all_caches_clo_defined); +void VG_(configure_caches)(cache_t* I1c, cache_t* D1c, cache_t* L2c, + Bool all_caches_clo_defined); #endif // __CG_ARCH_H |