Examples of walkInternalFreeList()


Examples of com.antlersoft.odb.DiskAllocator.walkInternalFreeList()

    public static void walkFreeList( String[] args)
        throws Throwable
    {
        DiskAllocator da=new DiskAllocator( new File( args[0]));
        System.out.println( args[0]+" free:");
        da.walkInternalFreeList( System.out);
        System.out.println( args[0]+" used:");
        da.walkRegions( System.out);

        da.close();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.