All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.uni_hildesheim.sse.system.ObjectUnallocationInfo Maven / Gradle / Ivy

Go to download

The SSE Java native library for accessing operating system level information, runtime-reinstrumentation etc. Used as part of SPASS-meter.

The newest version!
package de.uni_hildesheim.sse.system;

/**
 * Defines a helper class for returning information on an object unallocation.
 * Do neither move this object, nor rename it or its attributes as it is 
 * accessed from native code. 
 * 
 * @author Holger Eichelberger
 * @since 1.00
 * @version 1.00
 */
public class ObjectUnallocationInfo {
    
    // checkstyle: stop member visibility check
    
    /**
     * Stores the id used for native tagging.
     */
    public long tag;
    
    /**
     * Stores the allocated size in bytes.
     */
    public long size;

    // checkstyle: resume member visibility check

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy