Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Files were regenerated.
[simgrid.git] / include / smpi / smpi_helpers_internal.h
1 /* Copyright (c) 2018-2019. 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 <unistd.h>
11
12 #include <sys/time.h>
13 #if _POSIX_TIMERS
14 #include <time.h>
15 #endif
16
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20
21 int smpi_usleep(useconds_t usecs);
22 #if _POSIX_TIMERS > 0
23 int smpi_nanosleep(const struct timespec* tp, struct timespec* t);
24 int smpi_clock_gettime(clockid_t clk_id, struct timespec* tp);
25 #endif
26 unsigned int smpi_sleep(unsigned int secs);
27 int smpi_gettimeofday(struct timeval* tv, struct timezone* tz);
28
29 int smpi_getopt_long_only(int argc, char* const* argv, const char* options, const struct option* long_options,
30                           int* opt_index);
31 int smpi_getopt_long(int argc, char* const* argv, const char* options, const struct option* long_options,
32                      int* opt_index);
33 int smpi_getopt(int argc, char* const* argv, const char* options);
34
35 #ifdef __cplusplus
36 } // extern "C"
37 #endif
38 #endif