Freeciv-3.3
Loading...
Searching...
No Matches
Functions | Variables
fcthread.c File Reference
#include "log.h"
#include "mem.h"
#include "support.h"
#include "fcthread.h"

Go to the source code of this file.

Functions

bool register_at_thread_exit_callback (at_thread_exit_cb *cb)
 
static void at_thread_exit (void)
 
void fc_thread_cond_init (fc_thread_cond *cond)
 
void fc_thread_cond_destroy (fc_thread_cond *cond)
 
void fc_thread_cond_wait (fc_thread_cond *cond, fc_mutex *mutex)
 
void fc_thread_cond_signal (fc_thread_cond *cond)
 
bool has_thread_cond_impl (void)
 

Variables

static at_thread_exit_cbate_cb = nullptr
 

Function Documentation

◆ at_thread_exit()

static void at_thread_exit ( void  )
static

Called at thread exit by all the thread implementations.

Definition at line 49 of file fcthread.c.

◆ fc_thread_cond_destroy()

void fc_thread_cond_destroy ( fc_thread_cond cond)

Dummy fc_thread_cond_destroy()

Definition at line 470 of file fcthread.c.

Referenced by texai_control_lost().

◆ fc_thread_cond_init()

void fc_thread_cond_init ( fc_thread_cond cond)

Dummy fc_thread_cond_init()

Definition at line 464 of file fcthread.c.

Referenced by texai_control_gained().

◆ fc_thread_cond_signal()

void fc_thread_cond_signal ( fc_thread_cond cond)

Dummy fc_thread_cond_signal()

Definition at line 482 of file fcthread.c.

Referenced by texai_msg_to_thr().

◆ fc_thread_cond_wait()

void fc_thread_cond_wait ( fc_thread_cond cond,
fc_mutex mutex 
)

Dummy fc_thread_cond_wait()

Definition at line 476 of file fcthread.c.

Referenced by texai_thread_start().

◆ has_thread_cond_impl()

bool has_thread_cond_impl ( void  )

Has freeciv thread condition variable implementation

Definition at line 490 of file fcthread.c.

Referenced by fc_ai_tex_setup().

◆ register_at_thread_exit_callback()

bool register_at_thread_exit_callback ( at_thread_exit_cb cb)

Register callback to be called whenever a thread finishes. This can be called only once. Latter calls will cause an error message and return FALSE.

Definition at line 32 of file fcthread.c.

Variable Documentation

◆ ate_cb

at_thread_exit_cb* ate_cb = nullptr
static

Definition at line 25 of file fcthread.c.

Referenced by at_thread_exit(), and register_at_thread_exit_callback().