mirror of
https://github.com/Dr-Noob/cpufetch.git
synced 2026-03-25 07:50:40 +01:00
Start support for second level
This commit is contained in:
19
02h.h
Normal file
19
02h.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#ifndef __02h__
|
||||
#define __02h__
|
||||
|
||||
/***
|
||||
|
||||
Cache and TLB's characteristics
|
||||
|
||||
***/
|
||||
|
||||
struct level2 {
|
||||
struct cache* cache;
|
||||
struct TLB* tlb;
|
||||
};
|
||||
|
||||
struct level2* fillLevel2(struct level2* level2);
|
||||
void debugLevel2(struct level2* level2);
|
||||
void freeLevel2(struct level2* level2);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user