RT-Thread RTOS 1.2.0
An open source embedded real-time operating system
载入中...
搜索中...
未找到
dfs_file_mmap.c 文件参考
#include "dfs_file.h"
#include "dfs_dentry.h"
#include "dfs_mnt.h"
#include <rtdbg.h>
+ dfs_file_mmap.c 的引用(Include)关系图:

浏览该文件的源代码.

宏定义

#define DBG_TAG   "dfs.mmap"
 
#define DBG_LVL   DBG_WARNING
 

函数

int dfs_file_mmap (struct dfs_file *file, struct dfs_mmap2_args *mmap2)
 

宏定义说明

◆ DBG_TAG

#define DBG_TAG   "dfs.mmap"

在文件 dfs_file_mmap.c14 行定义.

◆ DBG_LVL

#define DBG_LVL   DBG_WARNING

在文件 dfs_file_mmap.c15 行定义.

函数说明

◆ dfs_file_mmap()

int dfs_file_mmap ( struct dfs_file * file,
struct dfs_mmap2_args * mmap2 )

在文件 dfs_file_mmap.c464 行定义.

465{
466 LOG_E("File mapping support is not enabled, file: %s%s", file->dentry->mnt->fullpath, file->dentry->pathname);
467 LOG_E("mmap2 args addr: %p length: 0x%x prot: %d flags: 0x%x pgoffset: 0x%x",
468 mmap2->addr, mmap2->length, mmap2->prot, mmap2->flags, mmap2->pgoffset);
469
470 return -EPERM;
471}
#define LOG_E(fmt,...)
struct dfs_mnt * mnt
struct dfs_dentry * dentry
char * fullpath

引用了 dfs_file::dentry, dfs_mnt::fullpath, LOG_E, dfs_dentry::mnt , 以及 dfs_dentry::pathname.