diff options
Diffstat (limited to 'hypodermic/process.py')
| -rw-r--r-- | hypodermic/process.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hypodermic/process.py b/hypodermic/process.py index bfb1013..c2c7409 100644 --- a/hypodermic/process.py +++ b/hypodermic/process.py @@ -381,6 +381,11 @@ class Process(object): """ return "x64" if self._isamd64 else "x86" + # FIXME: Not tested on i386. + @property + def page_size(self) -> int: + return 4096 + @property def maps(self) -> list: """Obtain the process' memory map. |