link
Theoretically, you could achieve [memfd_create()] behavior without introducing new syscalls, like this:
int fd = open("/tmp", O_RDWR | O_TMPFILE | O_EXCL, S_IRWXU);
(Nota: para garantir mais portualmente um tmpfs aqui, podemo...
02.05.2018 / 21:22