Skip to content

Slab Allocator Hint Mechanism

include/mem/slab_hint.h View source View on GitHub
struct slab_hint_param {
    uint64_t  param1;
};
enum slab_hint_type {
    SLAB_HINT_ALLOCS_SOON,
    SLAB_HINT_FREES_SOON,
};
enum slab_hint_error {
    SLAB_HINT_OK,
};
enum slab_hint_error slab_hint(enum slab_hint_type, struct slab_hint_param);