Subversion Repositories SvarDOS

Rev

Rev 957 | Rev 983 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 957 Rev 963
Line 321... Line 321...
321
    mov es, ptrseg
321
    mov es, ptrseg
322
    int 0x21
322
    int 0x21
323
    pop es
323
    pop es
324
  }
324
  }
325
}
325
}
-
 
326
 
-
 
327
 
-
 
328
/* free the entire linked list of bat ctx nodes (and set its rmod ptr to NULL) */
-
 
329
void rmod_free_bat_llist(struct rmod_props far *rmod) {
-
 
330
  while (rmod->bat != NULL) {
-
 
331
    struct batctx far *victim = rmod->bat;
-
 
332
    rmod->bat = rmod->bat->parent;
-
 
333
    rmod_ffree(victim);
-
 
334
  }
-
 
335
}