summaryrefslogtreecommitdiff
path: root/misc/lldb_rb/constants.py
diff options
context:
space:
mode:
Diffstat (limited to 'misc/lldb_rb/constants.py')
-rw-r--r--misc/lldb_rb/constants.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/misc/lldb_rb/constants.py b/misc/lldb_rb/constants.py
new file mode 100644
index 0000000000..9cd56eccb0
--- /dev/null
+++ b/misc/lldb_rb/constants.py
@@ -0,0 +1,6 @@
+HEAP_PAGE_ALIGN_LOG = 16
+HEAP_PAGE_ALIGN_MASK = (~(~0 << HEAP_PAGE_ALIGN_LOG))
+HEAP_PAGE_ALIGN = (1 << HEAP_PAGE_ALIGN_LOG)
+HEAP_PAGE_SIZE = HEAP_PAGE_ALIGN
+
+IMEMO_MASK = 0x0F