示例#1
0
void
dump_relocations (Obj_Entry *obj0)
{
    Obj_Entry *obj;

    for (obj = obj0; obj != NULL; obj = obj->next) {
        dump_obj_relocations(obj);
    }
}
示例#2
0
文件: debug.c 项目: 2asoft/freebsd
void
dump_relocations (Obj_Entry *obj0)
{
    Obj_Entry *obj;

    for (obj = globallist_curr(obj0); obj != NULL;
      obj = globallist_next(obj)) {
        dump_obj_relocations(obj);
    }
}