pcsc-lite  1.8.8
sys_generic.h
Go to the documentation of this file.
1 /*
2  * MUSCLE SmartCard Development ( http://www.linuxnet.com )
3  *
4  * Copyright (C) 1999
5  * David Corcoran <corcoran@linuxnet.com>
6  * Copyright (C) 2002-2010
7  * Ludovic Rousseau <ludovic.rousseau@free.fr>
8  *
9  * $Id: sys_generic.h 5434 2010-12-08 14:13:21Z rousseau $
10  */
11 
17 #ifndef __sys_generic_h__
18 #define __sys_generic_h__
19 
20 #include <sys/stat.h>
21 #include <sys/mman.h>
22 
23  int SYS_Sleep(int);
24 
25  int SYS_USleep(int);
26 
27  int SYS_Daemon(int, int);
28 
29  int SYS_RandomInt(int, int);
30 
31  int SYS_GetSeed(void);
32 
33 #endif /* __sys_generic_h__ */
int SYS_Sleep(int)
Makes the current process sleep for some seconds.
Definition: sys_unix.c:44
int SYS_USleep(int)
Makes the current process sleep for some microseconds.
Definition: sys_unix.c:62