I\'m looking for an efficient way to access(for both read and write operations) the memory space of my ptraced child process. The size of blocks being accessed may vary from
clone or mmap are what you are looking for. mmap a temp file between the two processes and use that memory space for passing data back and forth.