summaryrefslogtreecommitdiff
path: root/tests/test-threads-c++.cc
blob: d82b526458d279a7b3e77232cc0ea341c6e3e853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
/* Test of <threads.h> substitute in C++ mode.
   Copyright (C) 2019-2023 Free Software Foundation, Inc.

   This program is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation, either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */

/* Written by Bruno Haible <bruno@clisp.org>, 2019.  */

#define GNULIB_NAMESPACE gnulib
#include <config.h>

#include <threads.h>

#include "signature.h"


#if GNULIB_TEST_THRD
SIGNATURE_CHECK (GNULIB_NAMESPACE::thrd_create, int,
                 (thrd_t *, thrd_start_t, void *));
SIGNATURE_CHECK (GNULIB_NAMESPACE::thrd_current, thrd_t, (void));
SIGNATURE_CHECK (GNULIB_NAMESPACE::thrd_equal, int, (thrd_t, thrd_t));
SIGNATURE_CHECK (GNULIB_NAMESPACE::thrd_sleep, int,
                 (const struct timespec *, struct timespec *));
SIGNATURE_CHECK (GNULIB_NAMESPACE::thrd_yield, void, (void));
SIGNATURE_CHECK (GNULIB_NAMESPACE::thrd_detach, int, (thrd_t));
SIGNATURE_CHECK (GNULIB_NAMESPACE::thrd_join, int, (thrd_t, int *));
SIGNATURE_CHECK (GNULIB_NAMESPACE::thrd_exit, void, (int));
#endif

#if GNULIB_TEST_MTX
SIGNATURE_CHECK (GNULIB_NAMESPACE::mtx_init, int, (mtx_t *, int));
SIGNATURE_CHECK (GNULIB_NAMESPACE::mtx_lock, int, (mtx_t *));
SIGNATURE_CHECK (GNULIB_NAMESPACE::mtx_trylock, int, (mtx_t *));
SIGNATURE_CHECK (GNULIB_NAMESPACE::mtx_timedlock, int,
                 (mtx_t *, const struct timespec *));
SIGNATURE_CHECK (GNULIB_NAMESPACE::mtx_unlock, int, (mtx_t *));
SIGNATURE_CHECK (GNULIB_NAMESPACE::mtx_destroy, void, (mtx_t *));
#endif

#if GNULIB_TEST_CALL_ONCE
SIGNATURE_CHECK (GNULIB_NAMESPACE::call_once, void,
                 (once_flag *, void (*) (void)));
#endif

#if GNULIB_TEST_CND
SIGNATURE_CHECK (GNULIB_NAMESPACE::cnd_init, int, (cnd_t *));
SIGNATURE_CHECK (GNULIB_NAMESPACE::cnd_wait, int, (cnd_t *, mtx_t *));
SIGNATURE_CHECK (GNULIB_NAMESPACE::cnd_timedwait, int,
                 (cnd_t *, mtx_t *, const struct timespec *));
SIGNATURE_CHECK (GNULIB_NAMESPACE::cnd_signal, int, (cnd_t *));
SIGNATURE_CHECK (GNULIB_NAMESPACE::cnd_broadcast, int, (cnd_t *));
SIGNATURE_CHECK (GNULIB_NAMESPACE::cnd_destroy, void, (cnd_t *));
#endif

#if GNULIB_TEST_TSS
SIGNATURE_CHECK (GNULIB_NAMESPACE::tss_create, int, (tss_t *, tss_dtor_t));
SIGNATURE_CHECK (GNULIB_NAMESPACE::tss_set, int, (tss_t, void *));
SIGNATURE_CHECK (GNULIB_NAMESPACE::tss_get, void *, (tss_t));
SIGNATURE_CHECK (GNULIB_NAMESPACE::tss_delete, void, (tss_t));
#endif


int
main ()
{
}