* @throws RuntimeException
*/
private void freePages(SequenceSet list) throws RuntimeException {
Sequence seq = list.getHead();
while( seq!=null ) {
seq.each(new Sequence.Closure<RuntimeException>(){
public void execute(long value) {
pageFile.freePage(value);
}
});
seq = seq.getNext();