Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
Loading...
Searching...
No Matches
mythread.h File Reference

Some threading related helper macros and functions. More...

#include "sysdefs.h"
#include <signal.h>

Go to the source code of this file.

Macros

#define mythread_once(func)
 

Detailed Description

Some threading related helper macros and functions.

Macro Definition Documentation

◆ mythread_once

#define mythread_once ( func)
Value:
do { \
static bool once_ = false; \
if (!once_) { \
func(); \
once_ = true; \
} \
} while (0)