aboutsummaryrefslogtreecommitdiff
path: root/util/selfmap.c
AgeCommit message (Collapse)AuthorFilesLines
2020-04-07linux-user: factor out reading of /proc/self/mapsAlex Bennée1-0/+78
Unfortunately reading /proc/self/maps is still considered the gold standard for a process finding out about it's own memory layout. As we will want this data in other contexts soon factor out the code to read and parse the data. Rather than just blindly copying the existing sscanf based code we use a more modern glib version of the parsing code to make a more general purpose map structure. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20200403191150.863-9-alex.bennee@linaro.org>