table of contents
other versions
IDA_SIMPLE_REMOVE(9) | Basic Kernel Library Functions | IDA_SIMPLE_REMOVE(9) |
NAME¶
ida_simple_remove - remove an allocated id.
SYNOPSIS¶
void ida_simple_remove(struct ida * ida, unsigned int id);
ARGUMENTS¶
struct ida * ida
the (initialized) ida.
unsigned int id
the id returned by ida_simple_get.
DESCRIPTION¶
Use to release an id allocated with ida_simple_get.
Compared to ida_remove this function does its own locking, and should be used unless there are special requirements.
COPYRIGHT¶
June 2017 | Kernel Hackers Manual 4.11 |