librist-sys 0.8.3

Bindgen bindings for librist, used by the librist-rust crate
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright © 2021, VideoLAN and librist authors
 * All rights reserved.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#ifndef RIST_THREAD_H
#define RIST_THREAD_H
#include "rist-private.h"

RIST_PRIV int rist_thread_create(struct rist_common_ctx *cctx,
                       pthread_t *thread, pthread_attr_t *attr, pthread_start_func_t thread_func, void *thread_arg);

#endif