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

    技术2022-05-20  53

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

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

    public static final int O_RDONLY = 00;

    public static final int O_WRONLY = 01;

    public static final int O_RDWR = 02;

     


    最新回复(0)