git://scm.lunaixsky.com
/
lunaix-os.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Support to multi-threading and pthread interface (POSIX.1-2008) (#23)
[lunaix-os.git]
/
lunaix-os
/
scripts
/
gdb
/
lunadbg
/
__init__.py
1
import os
2
3
if "LUNADBG_ARCH" not in os.environ:
4
os.environ["LUNADBG_ARCH"] = "x86_32"
5
6
from .region_dump import MemoryRegionDump
7
from .sched_dump import ProcessDump, SchedulerDump
8
from .mem import MMStats
9
from .syslog import SysLogDump
10
11
MemoryRegionDump()
12
SchedulerDump()
13
ProcessDump()
14
SysLogDump()
15
MMStats()