#include <stdint.h>
Go to the source code of this file.
Classes | |
struct | ec_timet |
struct | osal_timer |
Macros | |
#define | FALSE 0 |
#define | TRUE 1 |
Typedefs | |
typedef uint8_t | boolean |
typedef float | float32 |
typedef double | float64 |
typedef int16_t | int16 |
typedef int32_t | int32 |
typedef int64_t | int64 |
typedef int8_t | int8 |
typedef struct osal_timer | osal_timert |
typedef uint16_t | uint16 |
typedef uint32_t | uint32 |
typedef uint64_t | uint64 |
typedef uint8_t | uint8 |
Functions | |
ec_timet | osal_current_time (void) |
boolean | osal_timer_is_expired (const osal_timert *self) |
void | osal_timer_start (osal_timert *self, uint32 timeout_us) |
int | osal_usleep (uint32 usec) |
typedef struct osal_timer osal_timert |
ec_timet osal_current_time | ( | void | ) |
Definition at line 52 of file linux/osal.c.
boolean osal_timer_is_expired | ( | const osal_timert * | self | ) |
Definition at line 78 of file linux/osal.c.
void osal_timer_start | ( | osal_timert * | self, |
uint32 | timeout_us | ||
) |
Definition at line 63 of file linux/osal.c.
int osal_usleep | ( | uint32 | usec | ) |
Definition at line 28 of file linux/osal.c.