/*!
 * FIFO : Rien à faire ici.
 */
void Strategy_Invalidate(struct Cache *pcache)
{ 
    Cache_List_Clear(list);
}
Example #2
0
/*!
 * //! Fonction "réflexe" lors de l'invalidation du cache.
 * @author Ulysse Riccio
 */
void Strategy_Invalidate(struct Cache *pcache)
{
    /*! Remise en l'état de liste vide */
    Cache_List_Clear( (struct Cache_List *) ( (pcache)->pstrategy ) );
}
Example #3
0
void Strategy_Invalidate(struct Cache *pcache)
{
    Cache_List_Clear(C_LIST(pcache));
}
Example #4
0
//! Fonction "réflexe" lors de l'invalidation du cache.
void Strategy_Invalidate(struct Cache *pcache)
{
    //lorsque le cache est invalidate, tous les blocs deviennent invalides donc il n'y a plus d'ordre entre les blocs
    Cache_List_Clear((struct Cache_List*)pcache->pstrategy);
}