Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在不使用外部库且不打开新文件mmap的情况下使用 Ruby 对打开的文件描述符进行内存映射()(我不能使用打开静态库的 DL 库)?
mmap
我已经尝试过:
address = syscall(NR_MMAP, 0, SIZE, prot, flag, fd, OFFSET)
但现在我需要取消引用地址。有没有办法做到这一点?
是否有另一种方法可以在不使用的情况下进行syscall?
syscall