:orphan: .. index:: pair: group; Library for Agent job control on agent side (ta_job) .. _doxid-group__ta__job: Library for Agent job control on agent side (ta_job) ==================================================== .. toctree:: :hidden: enum_ta_job_status_type_t.rst enum_ta_job_wrapper_priority_t.rst struct_ta_job_buffer_t.rst struct_ta_job_status_t.rst Overview ~~~~~~~~ Library to be used by backends for TAPI job. :ref:`More...` .. ref-code-block:: cpp :class: doxyrest-overview-code-block // typedefs typedef struct :ref:`ta_job_manager_t` :ref:`ta_job_manager_t`; typedef enum :ref:`ta_job_status_type_t` :ref:`ta_job_status_type_t`; typedef struct :ref:`ta_job_status_t` :ref:`ta_job_status_t`; typedef struct :ref:`ta_job_buffer_t` :ref:`ta_job_buffer_t`; typedef enum :ref:`ta_job_wrapper_priority_t` :ref:`ta_job_wrapper_priority_t`; // enums enum :ref:`ta_job_status_type_t`; enum :ref:`ta_job_wrapper_priority_t`; // structs struct :ref:`ta_job_buffer_t`; struct :ref:`ta_job_status_t`; // global functions :ref:`te_errno` :ref:`ta_job_manager_init`(:ref:`ta_job_manager_t`** manager); :ref:`te_errno` :ref:`ta_job_create`(:ref:`ta_job_manager_t`* manager, const char* spawner, const char* tool, char** argv, char** env, unsigned int* job_id); :ref:`te_errno` :ref:`ta_job_start`(:ref:`ta_job_manager_t`* manager, unsigned int id); :ref:`te_errno` :ref:`ta_job_allocate_channels`(:ref:`ta_job_manager_t`* manager, unsigned int job_id, bool input_channels, unsigned int n_channels, unsigned int* channels); void :ref:`ta_job_deallocate_channels`(:ref:`ta_job_manager_t`* manager, unsigned int n_channels, unsigned int* channels); :ref:`te_errno` :ref:`ta_job_attach_filter`(:ref:`ta_job_manager_t`* manager, const char* filter_name, unsigned int n_channels, unsigned int* channels, bool readable, :ref:`te_log_level` log_level, unsigned int* filter_id); :ref:`te_errno` :ref:`ta_job_filter_add_regexp`(:ref:`ta_job_manager_t`* manager, unsigned int filter_id, char* re, unsigned int extract); :ref:`te_errno` :ref:`ta_job_filter_add_channels`(:ref:`ta_job_manager_t`* manager, unsigned int filter_id, unsigned int n_channels, unsigned int* channels); :ref:`te_errno` :ref:`ta_job_filter_remove_channels`(:ref:`ta_job_manager_t`* manager, unsigned int filter_id, unsigned int n_channels, unsigned int* channels); :ref:`te_errno` :ref:`ta_job_poll`(:ref:`ta_job_manager_t`* manager, unsigned int n_channels, unsigned int* channel_ids, int timeout_ms, bool filter_only); :ref:`te_errno` :ref:`ta_job_receive`(:ref:`ta_job_manager_t`* manager, unsigned int n_filters, unsigned int* filters, int timeout_ms, :ref:`ta_job_buffer_t`* buffer); :ref:`te_errno` :ref:`ta_job_receive_last`(:ref:`ta_job_manager_t`* manager, unsigned int n_filters, unsigned int* filters, int timeout_ms, :ref:`ta_job_buffer_t`* buffer); :ref:`te_errno` :ref:`ta_job_receive_many`(:ref:`ta_job_manager_t`* manager, unsigned int n_filters, unsigned int* filters, int timeout_ms, :ref:`ta_job_buffer_t`** buffers, unsigned int* count); :ref:`te_errno` :ref:`ta_job_clear`(:ref:`ta_job_manager_t`* manager, unsigned int n_filters, unsigned int* filters); :ref:`te_errno` :ref:`ta_job_send`(:ref:`ta_job_manager_t`* manager, unsigned int channel_id, size_t count, uint8_t* buf); :ref:`te_errno` :ref:`ta_job_kill`(:ref:`ta_job_manager_t`* manager, unsigned int job_id, int signo); :ref:`te_errno` :ref:`ta_job_killpg`(:ref:`ta_job_manager_t`* manager, unsigned int job_id, int signo); :ref:`te_errno` :ref:`ta_job_wait`(:ref:`ta_job_manager_t`* manager, unsigned int job_id, int timeout_ms, :ref:`ta_job_status_t`* status); :ref:`te_errno` :ref:`ta_job_stop`(:ref:`ta_job_manager_t`* manager, unsigned int job_id, int signo, int term_timeout_ms); :ref:`te_errno` :ref:`ta_job_destroy`(:ref:`ta_job_manager_t`* manager, unsigned int job_id, int term_timeout_ms); :ref:`te_errno` :ref:`ta_job_wrapper_add`(:ref:`ta_job_manager_t`* manager, const char* tool, char** argv, unsigned int job_id, :ref:`ta_job_wrapper_priority_t` priority, unsigned int* wrapper_id); :ref:`te_errno` :ref:`ta_job_wrapper_delete`(:ref:`ta_job_manager_t`* manager, unsigned int job_id, unsigned int wrapper_id); :ref:`te_errno` :ref:`ta_job_add_exec_param`(:ref:`ta_job_manager_t`* manager, unsigned int job_id, :ref:`te_exec_param`* exec_params); // macros #define :ref:`TA_JOB_BUFFER_INIT` .. _details-group__ta__job: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Library to be used by backends for TAPI job. The library provides types and functions that should be used by TAPI job backends for agent job management. Typedefs -------- .. index:: pair: typedef; ta_job_manager_t .. _doxid-group__ta__job_1ga4e2cb56c87d3b17de39294b61fbf53a5: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`ta_job_manager_t` ta_job_manager_t Job manager instance which represents a particular TAPI job backend .. index:: pair: typedef; ta_job_status_type_t .. _doxid-group__ta__job_1ga9428d3abce2626424fe7713d8a65eb3c: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef enum :ref:`ta_job_status_type_t` ta_job_status_type_t Cause of job's completion .. index:: pair: typedef; ta_job_status_t .. _doxid-group__ta__job_1gac7d5d6f4490a30b41d6b903a165d94bd: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`ta_job_status_t` ta_job_status_t Structure that represents status of a completed job .. index:: pair: typedef; ta_job_buffer_t .. _doxid-group__ta__job_1gaf317cb87f07fe3a0f3200a5f157ec069: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef struct :ref:`ta_job_buffer_t` ta_job_buffer_t A structure to store messages produced by the job .. index:: pair: typedef; ta_job_wrapper_priority_t .. _doxid-group__ta__job_1ga7964357e6e56fe8a95aaa08bd21e23ba: .. ref-code-block:: cpp :class: doxyrest-title-code-block typedef enum :ref:`ta_job_wrapper_priority_t` ta_job_wrapper_priority_t Wrappers priority level Global Functions ---------------- .. index:: pair: function; ta_job_manager_init .. _doxid-group__ta__job_1ga671e02fd9ffac562bb8537465cef7a4f: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_manager_init(:ref:`ta_job_manager_t`** manager) Initialize a job manager. You must ensure that the function is called before any backend function which uses the job manager, i.e. the manager must not be used uninitialized. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle .. rubric:: Returns: Status code .. index:: pair: function; ta_job_create .. _doxid-group__ta__job_1ga7628a3819d31ecdfb2922ab7b6b8799e: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_create(:ref:`ta_job_manager_t`* manager, const char* spawner, const char* tool, char** argv, char** env, unsigned int* job_id) Create a job ``argv`` and ``env`` are owned by the function on success and must not be modified or freed by the caller. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - spawner - Spawner plugin name (may be ``NULL`` for the default plugin) * - tool - Program path to run * - argv - Program arguments (last item is ``NULL``) * - env - Program environment (last item is ``NULL``). May be ``NULL`` to keep the current environment. * - job_id - ID of the created job .. rubric:: Returns: Status code .. index:: pair: function; ta_job_start .. _doxid-group__ta__job_1ga79a62dc97aac10633cbed270fdf9eea1: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_start(:ref:`ta_job_manager_t`* manager, unsigned int id) Start a job .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - id - ID of the job to be started .. rubric:: Returns: Status code .. index:: pair: function; ta_job_allocate_channels .. _doxid-group__ta__job_1ga06c2b3c9c25b9a2b21e4d583dc96301a: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_allocate_channels(:ref:`ta_job_manager_t`* manager, unsigned int job_id, bool input_channels, unsigned int n_channels, unsigned int* channels) Allocate ``n_channels`` channels. This function is supposed to be called only once for each job. Memory for ``channels`` must be allocated before calling this function .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - job_id - ID of the job for which to allocate the channels * - input_channels - ``true`` to allocate input channels, ``false`` to allocate output channels * - n_channels - Number of channels to allocate * - channels - Array of channels to be filled with ids of the allocated channels .. rubric:: Returns: Status code .. index:: pair: function; ta_job_deallocate_channels .. _doxid-group__ta__job_1ga4676381c7ce8c21d96738c54d6759519: .. ref-code-block:: cpp :class: doxyrest-title-code-block void ta_job_deallocate_channels(:ref:`ta_job_manager_t`* manager, unsigned int n_channels, unsigned int* channels) Deallocate ``n_channels`` channels .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - n_channels - Number of channels to deallocate * - channels - Array of channels to be deallocated .. index:: pair: function; ta_job_attach_filter .. _doxid-group__ta__job_1ga4d2fc421deea3ac0a5b094f64a3e361a: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_attach_filter(:ref:`ta_job_manager_t`* manager, const char* filter_name, unsigned int n_channels, unsigned int* channels, bool readable, :ref:`te_log_level` log_level, unsigned int* filter_id) Attach filter to specified output channels .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - filter_name - Name of the filter, may be ``NULL`` * - n_channels - Number of channels to attach the filter to * - channels - IDs of output channels to attach the filter to * - readable - Whether or not it will be possible to get an output of the filter via :ref:`ta_job_receive() ` * - log_level - If non-zero, the output of the filter is logged with a given log level * - filter_id - ID of the attached filter .. rubric:: Returns: Status code .. index:: pair: function; ta_job_filter_add_regexp .. _doxid-group__ta__job_1gac1385fe4d098ee79dc96f2dcd4196794: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_filter_add_regexp(:ref:`ta_job_manager_t`* manager, unsigned int filter_id, char* re, unsigned int extract) Add a regular expression to a filter. The filter will only store output that matches the regular expression. Multi-segment matching is performed. Thus, PCRE_MULTILINE option is set. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - filter_id - ID of the filter to attach the regex to * - re - PCRE-style regular expression * - extract - Index of a capturing group to extract from the matched output. ``0`` means to extract the whole match. .. rubric:: Returns: Status code .. index:: pair: function; ta_job_filter_add_channels .. _doxid-group__ta__job_1ga73f6ed04198a8bc391a406e86a93d789: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_filter_add_channels(:ref:`ta_job_manager_t`* manager, unsigned int filter_id, unsigned int n_channels, unsigned int* channels) Attach an existing filter to additional output channels .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - filter_id - ID of the filter to attach * - n_channels - Number of channels to attach the filter to * - channels - IDs of output channels to attach the filter to .. rubric:: Returns: Status code .. index:: pair: function; ta_job_filter_remove_channels .. _doxid-group__ta__job_1ga3b1de7fa0f512a892a4d9a92e8ba6f2f: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_filter_remove_channels(:ref:`ta_job_manager_t`* manager, unsigned int filter_id, unsigned int n_channels, unsigned int* channels) Remove filter from specified output channels. For instance, if the filter is attached to stdout and stderr and the function is called with only stdout specified, the filter will continue working with stderr. Either the function succeeds and the filter is removed from all specified channels, or the function fails and the filter is not removed from any channel. If the filter is removed from every channel it was attached to, all associated resources will be freed, so :ref:`ta_job_receive() ` will fail .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - filter_id - ID of the filter to remove * - n_channels - Number of channels to remove the filter from * - channels - IDs of output channels to remove the filter from .. rubric:: Returns: Status code .. index:: pair: function; ta_job_poll .. _doxid-group__ta__job_1ga6d6df1795c3e4705793f56d90c3251fa: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_poll(:ref:`ta_job_manager_t`* manager, unsigned int n_channels, unsigned int* channel_ids, int timeout_ms, bool filter_only) Poll channels/filters for readiness. A filter is considered ready if it is readable and has some data that can be got via :ref:`ta_job_receive() `. A channel is considered ready if it is an input channel and it is ready to accept input. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - n_channels - Number of channels to poll * - channel_ids - IDs of channels to poll * - timeout_ms - Timeout to wait for readiness * - filter_only - ``true`` if only channels are provided. In this case, if one of ids is actually an id of a channel, not a filter, TE_EPERM will be returned. * - 0 - One of the channels/filters is ready * - TE_ETIMEDOUT - None of the channels/filters was ready within ``timeout_ms`` .. rubric:: Returns: Status code .. index:: pair: function; ta_job_receive .. _doxid-group__ta__job_1ga94fd1aae53ab8a54615dab69927e16b0: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_receive(:ref:`ta_job_manager_t`* manager, unsigned int n_filters, unsigned int* filters, int timeout_ms, :ref:`ta_job_buffer_t`* buffer) Receive the first message from one of the filters and remove it from the filter's message queue. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - n_filters - Number of filters to receive from * - filters - ID of filters to receive from * - timeout_ms - Time to wait for data to appear on some filter * - buffer - Buffer to store the received data .. rubric:: Returns: Status code .. index:: pair: function; ta_job_receive_last .. _doxid-group__ta__job_1ga61338ef321c0003dcfde6f411518fc73: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_receive_last(:ref:`ta_job_manager_t`* manager, unsigned int n_filters, unsigned int* filters, int timeout_ms, :ref:`ta_job_buffer_t`* buffer) Receive the last non-eos message (if there is one) from one of the filters. If the only message contains eos, read it. The message is not removed from the filter's message queue, it can still be read with :ref:`ta_job_receive() `. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - n_filters - Number of filters to receive from * - filters - ID of filters to receive from * - timeout_ms - Time to wait for data to appear on some filter * - buffer - Buffer to store the received data .. rubric:: Returns: Status code .. index:: pair: function; ta_job_receive_many .. _doxid-group__ta__job_1gaa6120040f8b00536e83471458d10170c: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_receive_many(:ref:`ta_job_manager_t`* manager, unsigned int n_filters, unsigned int* filters, int timeout_ms, :ref:`ta_job_buffer_t`** buffers, unsigned int* count) Receive multiple messages at once from the specified filters. This function may retrieve some messages and return error if attempt to read the next message failed. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - n_filters - Number of filters to receive from * - filters - ID of filters to receive from * - timeout_ms - Time to wait for data to appear on some filter * - buffers - Where to save pointer to array of buffers with messages * - count - On input, maximum number of messages to retrieve. If zero, all available messages will be retrieved. On output - number of actually retrieved messages. .. rubric:: Returns: Status code .. index:: pair: function; ta_job_clear .. _doxid-group__ta__job_1ga7551f3a5359319c2a24ebc23cde1f4e3: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_clear(:ref:`ta_job_manager_t`* manager, unsigned int n_filters, unsigned int* filters) Remove all messages from the filters' message queues .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - n_filters - Number of filters to be cleared * - filters - IDs of filters to be cleared .. rubric:: Returns: Status code .. index:: pair: function; ta_job_send .. _doxid-group__ta__job_1gaa009833245b877864efa7c02d35c2408: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_send(:ref:`ta_job_manager_t`* manager, unsigned int channel_id, size_t count, uint8_t* buf) Send data to a job through an input channel .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - channel_id - ID of the input channel * - count - Number of bytes to be sent * - buf - Data to be sent .. rubric:: Returns: Status code .. index:: pair: function; ta_job_kill .. _doxid-group__ta__job_1gab8e47cbe3c2a840cc20cade322d202bd: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_kill(:ref:`ta_job_manager_t`* manager, unsigned int job_id, int signo) Send a signal to a job .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - job_id - ID of the job to send signal to * - signo - Number of the signal to send .. rubric:: Returns: Status code .. index:: pair: function; ta_job_killpg .. _doxid-group__ta__job_1ga7df129d01eb783c550c9003bf9e9b4e0: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_killpg(:ref:`ta_job_manager_t`* manager, unsigned int job_id, int signo) Send a signal to a job's process group .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - job_id - ID of the job to send signal to * - signo - Number of the signal to send .. rubric:: Returns: Status code .. index:: pair: function; ta_job_wait .. _doxid-group__ta__job_1ga881b6f2b3421edd78f4347176937a5f8: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_wait(:ref:`ta_job_manager_t`* manager, unsigned int job_id, int timeout_ms, :ref:`ta_job_status_t`* status) Wait for a job completion (or check its status if ``timeout_ms`` is zero) .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - job_id - ID of the job to wait for * - timeout_ms - Time to wait for the job. ``0`` means to check current status and exit, negative value means that the call of the function blocks until the job changes its status. * - status - Job exit status location, may be ``NULL`` * - 0 - The job completed running * - TE_EINPROGRESS - The job is still running * - TE_ECHILD - The job was never started .. rubric:: Returns: Status code .. index:: pair: function; ta_job_stop .. _doxid-group__ta__job_1gaeec0d22c1d2a2bd6a3138e3c3bc8be02: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_stop(:ref:`ta_job_manager_t`* manager, unsigned int job_id, int signo, int term_timeout_ms) Stop a job. It can be started over with :ref:`ta_job_start() `. The function tries to terminate the job with the specified signal. If the signal fails to terminate the job withing ``term_timeout_ms``, the function will send ``SIGKILL``. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - job_id - ID of the job to stop * - signo - Number of the signal to send. If ``signo`` is ``SIGKILL``, it will be sent only once. * - term_timeout_ms - The timeout of graceful termination of a job, if it has been running. After the timeout expiration the job will be killed with ``SIGKILL``. Negative means default timeout. .. rubric:: Returns: Status code .. index:: pair: function; ta_job_destroy .. _doxid-group__ta__job_1gaed01ea598a4ce0595802a98f67df5101: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_destroy(:ref:`ta_job_manager_t`* manager, unsigned int job_id, int term_timeout_ms) Destroy a job instance. If the job has started, it is terminated as gracefully as possible. All resources of the instance are freed, all unread data on all filters are lost. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - job_id - ID of the job to destroy * - term_timeout_ms - The timeout of graceful termination of a job, if it has been running. After the timeout expiration the job will be killed with ``SIGKILL``. Negative means default timeout. .. rubric:: Returns: Status code .. index:: pair: function; ta_job_wrapper_add .. _doxid-group__ta__job_1ga8218f8b2988546113d84eedfce59525a: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_wrapper_add(:ref:`ta_job_manager_t`* manager, const char* tool, char** argv, unsigned int job_id, :ref:`ta_job_wrapper_priority_t` priority, unsigned int* wrapper_id) Add a wrapper for a job that is not running The wrapper must be added after the job is created The function can be called several times. Wrappers will be added to the main tool from right to left according to the priority levels. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - tool - Path to the wrapper tool * - argv - Wrapper arguments (last item must be ``NULL``) * - job_id - ID of the job to add the wrapper to * - priority - Wrapper priority * - wrapper_id - ID of the added wrapper .. rubric:: Returns: Status code .. index:: pair: function; ta_job_wrapper_delete .. _doxid-group__ta__job_1gad15f54d91c7dd1251b9c5b8f49646cf5: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_wrapper_delete(:ref:`ta_job_manager_t`* manager, unsigned int job_id, unsigned int wrapper_id) Delete a wrapper There is no necessity to delete wrappers before job destruction. All wrappers are removed automatically together with the job. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - job_id - ID of a job to which the wrapper belongs * - wrapper_id - ID of a wrapper to delete .. rubric:: Returns: Status code .. index:: pair: function; ta_job_add_exec_param .. _doxid-group__ta__job_1gadddddf98721aa35c0a65f3441eb8bdac: .. ref-code-block:: cpp :class: doxyrest-title-code-block :ref:`te_errno` ta_job_add_exec_param(:ref:`ta_job_manager_t`* manager, unsigned int job_id, :ref:`te_exec_param`* exec_params) Add a process parameter for a job .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - manager - Job manager handle * - job_id - ID of the job to add the parameters to * - exec_params - Array of process parameters. The last element must have the type set to TE_EXEC_END and the data set to ``NULL``. .. rubric:: Returns: Status code Macros ------ .. index:: pair: define; TA_JOB_BUFFER_INIT .. _doxid-group__ta__job_1gae32f6d3bbb5833779b6ab5db7f4aebf7: .. ref-code-block:: cpp :class: doxyrest-title-code-block #define TA_JOB_BUFFER_INIT Default initializer for :ref:`ta_job_buffer_t `