| Server IP : 216.92.14.13 / Your IP : 216.73.217.126 Web Server : Apache System : Linux vps4089.pairvps.com 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 User : rmlac2fmr ( 1040637) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/include/orc-0.4/orc/ |
Upload File : |
#ifndef _ORC_ONCE_H_
#define _ORC_ONCE_H_
#include <orc/orcutils.h>
ORC_BEGIN_DECLS
typedef struct _OrcMutex OrcMutex;
typedef struct _OrcOnce OrcOnce;
struct _OrcOnce {
int inited;
void *value;
};
void orc_once_mutex_lock (void);
void orc_once_mutex_unlock (void);
ORC_END_DECLS
#endif