[][src]Function dart_sys::Dart_NotifyIdle

pub unsafe extern "C" fn Dart_NotifyIdle(deadline: i64)

Notifies the VM that the embedder expects to be idle until |deadline|. The VM may use this time to perform garbage collection or other tasks to avoid delays during execution of Dart code in the future.

|deadline| is measured in microseconds against the system's monotonic time. This clock can be accessed via Dart_TimelineGetMicros().

Requires there to be a current isolate.