“DevMem note”的版本间的差异

来自个人维基
跳转至: 导航搜索
(以“<source lang="c"> #include <sys/mman.h> void *mmap(void *addr, size_t length, int prot, int flags, int fd, off_t offset); int munmap(void *addr, size_t length); </s...”为内容创建页面)

2019年11月5日 (二) 14:51的版本

#include <sys/mman.h>
 
void *mmap(void *addr, size_t length, int prot, int flags, int fd, off_t offset);
int munmap(void *addr, size_t length);
</source lang>