mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 10:53:16 +01:00
18 lines
403 B
C
18 lines
403 B
C
#ifndef __MM0_IDPOOL_H__
|
|
#define __MM0_IDPOOL_H__
|
|
|
|
#include <lib/bit.h>
|
|
|
|
struct id_pool {
|
|
int nwords;
|
|
u32 bitmap[];
|
|
};
|
|
|
|
struct id_pool *id_pool_new_init(int mapsize);
|
|
int id_new(struct id_pool *pool);
|
|
int id_del(struct id_pool *pool, int id);
|
|
int ids_new_contiguous(struct id_pool *pool, int numids);
|
|
int ids_del_contiguous(struct id_pool *pool, int first, int numids);
|
|
|
|
#endif /* __MM0_IDPOOL_H__ */
|