void *mmap(void *addr, size_t length, int prot, int flags,int fd, off_t offset);
I see call to mmap that prot=3
and flags=1
what does it mean about this buffer? ,How can I translate the flag that I see in man to number?
Is the user can read/write or read+write to this buffer?