org.lwjgl.system.jemalloc.ExtentDecommit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lwjgl-jemalloc Show documentation
Show all versions of lwjgl-jemalloc Show documentation
A general purpose malloc implementation that emphasizes fragmentation avoidance and scalable concurrency support.
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.system.jemalloc;
import javax.annotation.*;
import org.lwjgl.system.*;
import static org.lwjgl.system.MemoryUtil.*;
/**
* Instances of this class may be set to the {@link ExtentHooks} struct.
*
* Type
*
*
* bool (*) (
* extent_hooks_t *extent_hooks,
* void *addr,
* size_t size,
* size_t offset,
* size_t length,
* unsigned int arena_ind
* )
*/
public abstract class ExtentDecommit extends Callback implements ExtentDecommitI {
/**
* Creates a {@code ExtentDecommit} instance from the specified function pointer.
*
* @return the new {@code ExtentDecommit}
*/
public static ExtentDecommit create(long functionPointer) {
ExtentDecommitI instance = Callback.get(functionPointer);
return instance instanceof ExtentDecommit
? (ExtentDecommit)instance
: new Container(functionPointer, instance);
}
/** Like {@link #create(long) create}, but returns {@code null} if {@code functionPointer} is {@code NULL}. */
@Nullable
public static ExtentDecommit createSafe(long functionPointer) {
return functionPointer == NULL ? null : create(functionPointer);
}
/** Creates a {@code ExtentDecommit} instance that delegates to the specified {@code ExtentDecommitI} instance. */
public static ExtentDecommit create(ExtentDecommitI instance) {
return instance instanceof ExtentDecommit
? (ExtentDecommit)instance
: new Container(instance.address(), instance);
}
protected ExtentDecommit() {
super(SIGNATURE);
}
private ExtentDecommit(long functionPointer) {
super(functionPointer);
}
private static final class Container extends ExtentDecommit {
private final ExtentDecommitI delegate;
Container(long functionPointer, ExtentDecommitI delegate) {
super(functionPointer);
this.delegate = delegate;
}
@Override
public boolean invoke(long extent_hooks, long addr, long size, long offset, long length, int arena_ind) {
return delegate.invoke(extent_hooks, addr, size, offset, length, arena_ind);
}
}
}