Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #272 from mpoquet/SMPI_convert
[simgrid.git] / include / smpi / smpi_helpers_internal.h
1 /* Copyright (c) 2018. 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 <unistd.h>
10
11 #include <sys/time.h>
12 #if _POSIX_TIMERS
13 #include <time.h>
14 #endif
15
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19
20 int smpi_usleep(useconds_t usecs);
21 #if _POSIX_TIMERS > 0
22 int smpi_nanosleep(const struct timespec* tp, struct timespec* t);
23 int smpi_clock_gettime(clockid_t clk_id, struct timespec* tp);
24 #endif
25 unsigned int smpi_sleep(unsigned int secs);
26 int smpi_gettimeofday(struct timeval* tv, struct timezone* tz);
27
28 struct option;
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