mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
fcae7fb9ca
- started adding ctdb_call() code - added ctdb_call_local() implementation (This used to be ctdb commit 97b1fdf7fa0e230f36add3f1770ecb3a9faee0a1)
8 lines
372 B
C
8 lines
372 B
C
struct idr_context *idr_init(TALLOC_CTX *mem_ctx);
|
|
int idr_get_new(struct idr_context *idp, void *ptr, int limit);
|
|
int idr_get_new_above(struct idr_context *idp, void *ptr, int starting_id, int limit);
|
|
int idr_get_new_random(struct idr_context *idp, void *ptr, int limit);
|
|
void *idr_find(struct idr_context *idp, int id);
|
|
int idr_remove(struct idr_context *idp, int id);
|
|
|