I have made an application on linux.This application uses a library which wraps mmap call.This application fails to run from non-root user.It produces following message:
What are you mapping? What file descriptor did you use? What arguments are you passing to mmap()? Off-hand, I'd say the most likely case is that you're trying to create a writable non-private mapping on a read-only file. But there are probably hundreds of ways to get this error. – Andy RossJan 25 at 4:01
You could also run your application as root. – Basile StarynkevitchJan 25 at 6:30
@BasileStarynkevitch: Bad idea. – LinuxiosJan 25 at 14:58