Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6171013
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T23:08:22+00:00 2026-05-23T23:08:22+00:00

In my program, I need to know which pages are being accessed by the

  • 0

In my program, I need to know which pages are being accessed by the program periodically, So after each 0.5 or 1 second I check which pages were accessed and calculate a checksum from those page values.

I use mprotect function to mark memory areas which need to be seen and install SIGSEGV signal handler for each thread. During start of each period, I set the protection to PROT_READ and then when a page fault occurs, I give both read and write access to the page after noting its address.

However, I notice that this method makes the execution of my program pretty slow. Also since I am doing it for each thread, it further degrades the performance. Is there any way to make this procedure faster. Especially, is it possible to make this at process level, so for example if Thread A induces a page fault, it gives write to that page and when Thread B accesses it, it already has write permissions.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T23:08:23+00:00Added an answer on May 23, 2026 at 11:08 pm

    For faster method, the special compiler pass can be constructed. It will instrument memory access with changing a flag in the shadow memory. E.g. for each read or write operation, the compiler pass will add special write operation to some thread-specific area (shadow memory).

    There is a http://code.google.com/p/address-sanitizer/ project, which works as additional pass to LLVM compiler. The additional memory (shadow memory) is 8 time less then used memory. AddressSanitizer uses this pass to detect accesses to uninitialized memory: http://code.google.com/p/address-sanitizer/wiki/AddressSanitizerAlgorithm The slowdown is only 1.5x-3x.
    For page grained flagging, the shadow memory will be very small (1-4 bytes of shadow for 4096 bytes of usual memory).

    If you don’t want to do this at compiler or can’t do this (e.g. closed-source applications), you can use the existing COW technique from the kernel: http://en.wikipedia.org/wiki/Copy-on-write Kernel does COW for each fork via memory access flags. You can fork a process at time t1, stop the child, wait 1 or 2 seconds and then compare mappings of stopped child (it has no writes, so the mapping is the same as it was at t1) and of your process (changed pages are remapped). This variant is faster, but it gives info only about writes and not about each thread actions.

    Also, you can hack the COW page fault handler in kernel. This hack will be harder, but it will have information about which thread did a write.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to do a program which executes after 15 minutes of being in
I need to know when the memory will be allocated for a particular program.
I need my program to work only with certain USB Flash drives (from a
I need my program to create and edit a config file, which would contain
I need to make a graphic interface in Lazarus from which I run miscelaneous
I am writing a OpenCL program in which multiple kernels are being called on
I need to write a program which will browse through strings of various lengths
I need to create a java program which should go to a website's login
My current program need to use programatically create a XPathExpression instance to apply to
In my program I need to programmatically configure an ApplicationContext. Specifically, I have a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.