mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
declare frame
This commit is contained in:
parent
d89ce51a3b
commit
08ddcb74f0
2 changed files with 3 additions and 3 deletions
4
acid/386
4
acid/386
|
@ -186,7 +186,7 @@ dynamicmap()
|
|||
while m != 0 && n < 100 do {
|
||||
complex Linkmap m;
|
||||
if m.name && *(m.name\b) && access(*(m.name\s)) then
|
||||
textfile({*(m.name\s), m.addr\X});
|
||||
print("textfile({\"", *(m.name\s), "\", ", m.addr\X, "});\n");
|
||||
m = m.next;
|
||||
n = n+1;
|
||||
}
|
||||
|
@ -197,7 +197,7 @@ dynamicmap()
|
|||
defn
|
||||
acidmap()
|
||||
{
|
||||
dynamicmap();
|
||||
// dynamicmap();
|
||||
acidtypes();
|
||||
}
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@ defn _stkign(frame)
|
|||
// only print the last one.
|
||||
defn _stk(regs, dolocals)
|
||||
{
|
||||
local stk, pc, fn, done, callerpc, paramlist, locallist;
|
||||
local stk, frame, pc, fn, done, callerpc, paramlist, locallist;
|
||||
|
||||
stk = strace(regs);
|
||||
if stkignore then {
|
||||
|
|
Loading…
Reference in a new issue