cachesim
A cache simulator
full_cache.c
Go to the documentation of this file.
00001 /* -*- mode:c; coding: utf-8 -*- */
00002 
00003 #include "full_cache.h"
00004 
00005 AbstractMemory *
00006 full_cache_create(ConfigFile *cfg, const char *var_prefix, StatisticsInfo *info, AbstractMemory *mem, Random *rnd)
00007 {
00008     return NULL;
00009 }
00010 
00011 /*
00012  * Local variables:
00013  *  c-basic-offset: 4
00014  * End:
00015  */