New upstream version 21.0.2+dfsg1
This commit is contained in:
parent
1f1bbb3518
commit
baafb6325b
706 changed files with 49633 additions and 5044 deletions
|
|
@ -88,6 +88,17 @@ static inline void calldata_clear(struct calldata *data)
|
|||
}
|
||||
}
|
||||
|
||||
static inline calldata_t *calldata_create(void)
|
||||
{
|
||||
return (calldata_t*)bzalloc(sizeof(struct calldata));
|
||||
}
|
||||
|
||||
static inline void calldata_destroy(calldata_t *cd)
|
||||
{
|
||||
calldata_free(cd);
|
||||
bfree(cd);
|
||||
}
|
||||
|
||||
/* ------------------------------------------------------------------------- */
|
||||
/* NOTE: 'get' functions return true only if parameter exists, and is the
|
||||
* same type. They return false otherwise. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue