Flutter Engine
The Flutter Engine
|
#include "flutter/fml/time/time_point.h"
#include <sys/types.h>
#include <linux/time.h>
Go to the source code of this file.
Namespaces | |
namespace | fml |
Macros | |
#define | FML_TIMERFD_AVAILABLE 0 |
#define | TFD_TIMER_ABSTIME (1 << 0) |
#define | TFD_TIMER_CANCEL_ON_SET (1 << 1) |
#define | TFD_CLOEXEC O_CLOEXEC |
#define | TFD_NONBLOCK O_NONBLOCK |
Functions | |
int | timerfd_create (int clockid, int flags) |
int | timerfd_settime (int ufc, int flags, const struct itimerspec *utmr, struct itimerspec *otmr) |
bool | fml::TimerRearm (int fd, fml::TimePoint time_point) |
Rearms the timer to expire at the given time point. More... | |
bool | fml::TimerDrain (int fd) |
Definition at line 19 of file timerfd.cc.