blob: 8344df239500693865f0bffcf9c23d00fa64dea2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
* D header file for OpenBSD pthread_np.h.
*
* Copyright: Copyright © 2021, The D Language Foundation
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
* Authors: Brian Callahan
*/
module core.sys.openbsd.pthread_np;
version (OpenBSD):
extern (C):
nothrow:
@nogc:
public import core.sys.posix.sys.types;
import core.sys.posix.signal : stack_t;
int pthread_mutexattr_getkind_np(pthread_mutexattr_t);
int pthread_mutexattr_setkind_np(pthread_mutexattr_t*, int);
void pthread_get_name_np(pthread_t, char*, size_t);
void pthread_set_name_np(pthread_t, const(char)*);
int pthread_stackseg_np(pthread_t, stack_t*);
int pthread_main_np();
|