当前位置: 首页 > 工具软件 > Opendedup > 使用案例 >

opendedup(sdfs)源码分析2之FilesystemConstants篇

鲜于喜
2023-12-01

接下来的时间里作者将对fuse包进行逐一分析,

首先分析FilesystemConstants接口,该接口非常简单,里面定义了只读,只写,读写状态对应的代码。

public static final int O_RDONLY = 00;

public static final int O_WRONLY = 01;

public static final int O_RDWR = 02;

 

 类似资料: