aboutsummaryrefslogblamecommitdiffstats
path: root/libcoopgamma_async_context_destroy.c
blob: 6f0401818eea07c5ba988d8ee2603c9b7bcedfd5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                                         
/* See LICENSE file for copyright and license details. */
#include "common.h"


/**
 * Release all resources allocated to  a `libcoopgamma_async_context_t`,
 * the allocation of the record itself is not freed
 * 
 * Always call this function after failed call to `libcoopgamma_async_context_initialise`
 * or failed call to `libcoopgamma_async_context_unmarshal`
 * 
 * @param  this  The record to destroy
 */
void
libcoopgamma_async_context_destroy(libcoopgamma_async_context_t *restrict this)
{
	(void) this;
}