I’m debugging a program (in Solaris) that may be writing into memory marked read-only, but I’m unsure how to determine whether that page of memory is actually marked as read-only.
Can I make that determination with gdb? If not, what can I use?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
On Solaris you can look at the address space of a process by using the pmap command, e.g.
pmap <pid>. This will display the r/w/x permissions for each mapping; along with other information.Example from Solaris man page: