mirror of
https://github.com/drasko/codezero.git
synced 2026-02-28 09:43:14 +01:00
Initial commit
This commit is contained in:
17
tasks/mm0/include/lib/idpool.h
Normal file
17
tasks/mm0/include/lib/idpool.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#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__ */
|
||||
Reference in New Issue
Block a user