Nix 2.17.0
Nix, the purely functional package manager; stable external interfaces
All Data Structures Files Functions Variables Typedefs Modules Pages
nix_c_context Struct Reference

This object stores error state. More...

#include <nix_api_util.h>

Detailed Description

This object stores error state.

Passed as a first parameter to functions that can fail, to store error information.

Optional wherever it can be used, passing NULL instead will throw a C++ exception.

The struct is laid out so that it can also be cast to nix_err* to inspect directly:

assert(*(nix_err*)ctx == NIX_OK);
int nix_err
Type for error codes in the NIX system.
Definition: nix_api_util.h:59
#define NIX_OK
No error occurred.
Definition: nix_api_util.h:67
Note
These can be reused between different function calls, but make sure not to use them for multiple calls simultaneously (which can happen in callbacks).

The documentation for this struct was generated from the following file: