pcsc-lite 2.3.0
|
This handles abstract system level calls. More...
#include <sys/stat.h>
#include <sys/mman.h>
Go to the source code of this file.
Functions | |
int | SYS_Sleep (int) |
Makes the current process sleep for some seconds. | |
int | SYS_USleep (int) |
Makes the current process sleep for some microseconds. | |
int | SYS_RandomInt (void) |
Generate a pseudo random number. | |
void | SYS_InitRandom (void) |
Initialize the random generator. | |
const char * | SYS_GetEnv (const char *name) |
(More) secure version of getenv(3) | |
This handles abstract system level calls.
Definition in file sys_generic.h.
const char * SYS_GetEnv | ( | const char * | name | ) |
(More) secure version of getenv(3)
[in] | name | variable environment name |
Definition at line 168 of file sys_unix.c.
void SYS_InitRandom | ( | void | ) |
Initialize the random generator.
Definition at line 140 of file sys_unix.c.
int SYS_RandomInt | ( | void | ) |
Generate a pseudo random number.
2^31
. getrandom()
is available, LCG otherwise. getrandom()
syscall. getrandom()
syscall. Definition at line 108 of file sys_unix.c.
int SYS_Sleep | ( | int | iTimeVal | ) |
Makes the current process sleep for some seconds.
[in] | iTimeVal | Number of seconds to sleep. |
Definition at line 62 of file sys_unix.c.
int SYS_USleep | ( | int | iTimeVal | ) |
Makes the current process sleep for some microseconds.
[in] | iTimeVal | Number of microseconds to sleep. |
Definition at line 80 of file sys_unix.c.