- Evan
The fact that Linux/386 supports 6-argument system calls is news to me.
Feel free to send a CL.
Russ
It seems like a bug to me.
That said, what syscall are you trying to call? The only ones I see
that can take 6 parameters are mmap2 (aka map_pgoff) and move_pages,
neither of which are in the current syscall package. I can't think of
any reason for Go code to call mmap2. And move_pages is an awfully
obscure syscall.
Ian
I'm calling mmap2 because I want to map a file into memory.
Interestingly, runtime.mmap knows how to pass the 6th argument. CL forthcoming.
- Evan