Toggle navigation
Documentation
The friendly Operating System for the Internet of Things
Loading...
Searching...
No Matches
pthread_once.h
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2014 René Kijewski <rene.kijewski@fu-berlin.de>
3
*
4
* This file is subject to the terms and conditions of the GNU Lesser
5
* General Public License v2.1. See the file LICENSE in the top level
6
* directory for more details.
7
*/
8
9
#pragma once
10
18
19
#ifdef __cplusplus
20
extern
"C"
{
21
#endif
22
28
typedef
struct
{
29
int
is_initialized
;
30
int
init_executed
;
31
}
pthread_once_t
;
32
39
#define PTHREAD_ONCE_INIT { 1, 0 }
40
50
int
pthread_once
(
pthread_once_t
*once_control,
void
(*init_routine)(
void
));
51
52
#ifdef __cplusplus
53
}
54
#endif
55
pthread_once
int pthread_once(pthread_once_t *once_control, void(*init_routine)(void))
Helper function that ensures that init_routine is called at once.
pthread_once_t
Datatype to supply to pthread_once().
Definition
pthread_once.h:28
pthread_once_t::is_initialized
int is_initialized
initialized
Definition
pthread_once.h:29
pthread_once_t::init_executed
int init_executed
init function executed
Definition
pthread_once.h:30
Generated on Thu Jul 3 2025 17:41:22 by
1.13.2