mirror of
git://git.9front.org/plan9front/plan9front
synced 2025-01-12 11:10:06 +00:00
devip: print protocol name in garbage collection notification
This commit is contained in:
parent
47e52123d0
commit
c145a2c0aa
1 changed files with 5 additions and 4 deletions
|
@ -1321,10 +1321,11 @@ retry:
|
|||
}
|
||||
}
|
||||
if(pp >= ep) {
|
||||
if(p->gc)
|
||||
print("Fsprotoclone: garbage collecting Convs\n");
|
||||
if(p->gc != nil && (*p->gc)(p))
|
||||
goto retry;
|
||||
if(p->gc != nil){
|
||||
print("Fsprotoclone: garbage collecting %s Convs\n", p->name);
|
||||
if((*p->gc)(p))
|
||||
goto retry;
|
||||
}
|
||||
return nil;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue