2020-08-15 05:18:51 +00:00
|
|
|
// SONIC ROBO BLAST 2
|
2020-04-18 03:05:29 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
2023-03-31 12:53:31 +00:00
|
|
|
// Copyright (C) 2020-2023 by James R.
|
2020-04-18 03:05:29 +00:00
|
|
|
//
|
|
|
|
// This program is free software distributed under the
|
|
|
|
// terms of the GNU General Public License, version 2.
|
|
|
|
// See the 'LICENSE' file for more details.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
/// \file i_threads.h
|
|
|
|
/// \brief Multithreading abstraction
|
|
|
|
|
|
|
|
#ifdef HAVE_THREADS
|
|
|
|
|
|
|
|
#ifndef I_THREADS_H
|
|
|
|
#define I_THREADS_H
|
|
|
|
|
|
|
|
typedef void (*I_thread_fn)(void *userdata);
|
|
|
|
|
|
|
|
typedef void * I_mutex;
|
|
|
|
typedef void * I_cond;
|
|
|
|
|
|
|
|
void I_start_threads (void);
|
|
|
|
void I_stop_threads (void);
|
|
|
|
|
|
|
|
void I_spawn_thread (const char *name, I_thread_fn, void *userdata);
|
|
|
|
|
|
|
|
/* check in your thread whether to return early */
|
|
|
|
int I_thread_is_stopped (void);
|
|
|
|
|
|
|
|
void I_lock_mutex (I_mutex *);
|
|
|
|
void I_unlock_mutex (I_mutex);
|
|
|
|
|
|
|
|
void I_hold_cond (I_cond *, I_mutex);
|
|
|
|
|
2020-04-28 01:01:27 +00:00
|
|
|
void I_wake_one_cond (I_cond *);
|
|
|
|
void I_wake_all_cond (I_cond *);
|
2020-04-18 03:05:29 +00:00
|
|
|
|
|
|
|
#endif/*I_THREADS_H*/
|
|
|
|
#endif/*HAVE_THREADS*/
|