git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
2ee9e2d66602323450268d80d24864cb6c2c7f33
[lunaix-os.git]
/
lunaix-os
/
scripts
/
gdb
/
lunadbg
/
arch
/
x86
/
__init__.py
1
import os
2
3
if os.environ["LUNADBG_ARCH"] == 'x86_64':
4
from .pte import PageTableHelper64 as PageTableHelper
5
else:
6
from .pte import PageTableHelper32 as PageTableHelper