Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
c089449dc3136fb3b5467a5b3ac8016f408f5b39
[simgrid.git] / include / smpi / smpi_helpers_internal.h
1 /* Copyright (c) 2018-2022. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SMPI_HELPERS_INTERNAL_H
7 #define SMPI_HELPERS_INTERNAL_H
8
9 #include <getopt.h>
10 #include <stdio.h>  /* for getopt() on OpenIndiana, don't remove */
11 #include <stdlib.h> /* for getopt() on OpenIndiana, don't remove */
12 #include <unistd.h>
13
14 #include <sys/time.h>
15 #if _POSIX_TIMERS
16 #include <time.h>
17 #endif
18
19 #if !defined(SMPI_NO_OVERRIDE_MALLOC) && !defined(__GLIBC__)
20 /* For musl libc, <sched.h> must be included before #defining calloc(). Testing if !defined(__GLIBC__) is a bit crude
21  * but I don't know a better way. */
22 #include <sched.h>
23 #endif
24
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28
29 int smpi_usleep(useconds_t usecs);
30 #if _POSIX_TIMERS > 0
31 int smpi_nanosleep(const struct timespec* tp, struct timespec* t);
32 int smpi_clock_gettime(clockid_t clk_id, struct timespec* tp);
33 #endif
34 unsigned int smpi_sleep(unsigned int secs);
35 int smpi_gettimeofday(struct timeval* tv, struct timezone* tz);
36
37 int smpi_getopt_long_only(int argc, char* const* argv, const char* options, const struct option* long_options,
38                           int* opt_index);
39 int smpi_getopt_long(int argc, char* const* argv, const char* options, const struct option* long_options,
40                      int* opt_index);
41 int smpi_getopt(int argc, char* const* argv, const char* options);
42
43 void* smpi_shared_malloc_intercept(size_t size, const char* file, int line);
44 void* smpi_shared_calloc_intercept(size_t num_elm, size_t elem_size, const char* file, int line);
45 void* smpi_shared_realloc_intercept(void* data, size_t size, const char* file, int line);
46 void smpi_shared_free(void* data);
47 #ifdef __cplusplus
48 [[noreturn]] // c++11
49 #else
50 _Noreturn // c11
51 #endif
52 void smpi_exit(int status);
53 #ifdef __cplusplus
54 } // extern "C"
55 #endif
56
57 #ifdef __cplusplus
58 namespace std {
59 extern "C" void* smpi_shared_malloc_intercept(size_t size, const char* file, int line);
60 extern "C" void* smpi_shared_calloc_intercept(size_t num_elm, size_t elem_size, const char* file, int line);
61 extern "C" void* smpi_shared_realloc_intercept(void* data, size_t size, const char* file, int line);
62 extern "C" void smpi_shared_free(void* ptr);
63
64 extern "C" [[noreturn]] void smpi_exit(int status);
65 } // namespace std
66 #endif
67 #endif