|
NAMEksql_free —
free a ksql database handle
LIBRARYlibrary “ksql”SYNOPSIS#include <sys/types.h>
#include <stdint.h>
#include <ksql.h>
enum ksqlc
DESCRIPTIONTheksql_free function frees a database handle
sql, previously allocated with
ksql_alloc(3).
This internally invokes
ksql_close(3)
then frees all internal memory. If the handle was allocated with
KSQL_SAFE_EXIT , the handle is removed from the queue
of handles that would be freed on exit (so it is not double-freed).
If sql is This function is invoked from the
atexit(3)
handler if RETURN VALUESThis returns the error code of ksql_close(3).
Visit the GSP FreeBSD Man Page Interface. |