代码拉取完成,页面将自动刷新
/*
* @Copyright:
* @Description:
* @Author: zhoujie
* @Date: 2020-08-14 23:08:07
* @LastEditors: zhoujie
* @LastEditTime: 2020-08-16 12:53:22
*/
#ifndef TYPES
#define TYPES
#include <stdio.h>
#include <stdint.h>
#include <assert.h>
#define ASSERT(expr) assert(expr)
#define EXIT(expr) ASSERT(0)
#define ERROR -1
#define SUCCESS 0
#define TRUE 0
#define FALSE 1
typedef int_least16_t _s16;
typedef int_least32_t _s32;
typedef uint_least8_t _u8;
typedef uint_least16_t _u16;
typedef uint_least32_t _u32;
typedef uint_least32_t U32;
typedef uint_least16_t U16;
typedef uint_least8_t U08;
typedef int_least16_t S16;
typedef int_least32_t S32;
typedef uint_fast32_t sect_t;
typedef uint_fast32_t blk_t;
struct ftl_operation {
int (*init) (blk_t blk_num, blk_t extra_num);
size_t (*read) (sect_t lsn, size_t size, int map_flag);
size_t (*write)(sect_t lsn, size_t size, int map_flag);
void (*end) ();
};
//加入自己的cache_type类型的函数指针结构
struct cache_operation{
int (*init) (int size,int blk_num);
int (*SearchCache)(int LPN,int operation);
int (*HitCache)(int LPN, int operation,int index);
double (*AddCacheEntry)(int LPN,int operation);
double (*DelCacheEntry)(int LPN,int operation);
void (*end) ();
};
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。