Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Don't check if the memory is in core (#64)
libunwind uses mincore() to validate that memory is mapped and available to the process. For this purpose, checking the return value of mincore() is sufficient. The result array tells us if the kernel has swapped out the page or not. We don't care about this, and the check leads to failure in those cases where the kernel has swapped out the page.
- Loading branch information