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

de.uni_hildesheim.sse.system.IMemoryUnallocationReceiver 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 connected class to be called when memory unallocation is perceived
 * and natively aggregated memory data shall be transmitted back to Java.
 * 
 * @author Holger Eichelberger
 * @since 1.00
 * @version 1.00
 */
public interface IMemoryUnallocationReceiver {
    
    // DO NOT MOVE THIS INTERFACE OR CHANGE ITS METHDS - called from native code
    
    /**
     * Is used as a callback to receive unallocation information.
     * 
     * @param recId the recording id (as unique int)
     * @param size the allocation size
     * 
     * @since 1.00
     */
    public void unallocated(int recId, long size);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy