Is there any way to get address and size of code segment of linux kernel thread (like task_struct->mm->mmap->vm_start and vm_end for active task with task_struct->mm != 0)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||
|
|
I would recommend you go through the taskstats interface from the Linux kernel which can provide info on all the Linux threads, including VM stats. Have a look on the doc, as well as on the header for the interface. There is no easy way to hack into the kernel to enumerate all the |
|||||
|