GRASS GIS 8 Programmer's Manual
8.5.0dev(2025)-3df7050671
sleep.c
Go to the documentation of this file.
1
#include <
grass/config.h
>
2
#ifndef _WIN32
3
#include <
unistd.h
>
4
#endif
5
#ifdef _WIN32
6
#include <windows.h>
7
#endif
8
#include <
grass/gis.h
>
9
10
/* Sleep */
11
void
G_sleep
(
unsigned
int
seconds)
12
{
13
#ifdef _WIN32
14
/* note: Sleep() cannot be interrupted */
15
Sleep((seconds) * 1000);
16
#else
17
sleep(seconds);
18
#endif
19
}
config.h
gis.h
G_sleep
void G_sleep(unsigned int seconds)
Definition:
sleep.c:11
unistd.h
lib
gis
sleep.c
Generated on Tue Mar 11 2025 07:34:02 for GRASS GIS 8 Programmer's Manual by
1.9.1