Function
Gmtimeout_add_seconds_once_full
Declaration [src]
guint
gm_timeout_add_seconds_once_full (
int priority,
gulong seconds,
GSourceFunc function,
gpointer data,
GDestroyNotify notify
)
Description [src]
Sets a function to be called after a timeout with priority priority
.
Correctly calculates the timeout even when the system is suspended in between.
This internally creates a main loop source using
g_timeout_source_new_seconds()
and attaches it to the main loop context
using g_source_attach().
The timeout given is in terms of CLOCK_BOOTTIME
time, it hence is also
correct across suspend and resume. If that doesn’t matter use
g_timeout_add_seconds_full
instead.
Note that glib’s g_timeout_add_seconds()
doesn’t take system
suspend/resume into account: https://gitlab.gnome.org/GNOME/glib/-/issues/2739
This method is renamed to gm_timeout_add_seconds_once()
in language bindings
Parameters
priority
-
Type:
int
The priority of the timeout source. Typically this will be in the range between
G_PRIORITY_DEFAULT
andG_PRIORITY_HIGH
. seconds
-
Type:
gulong
The timeout in seconds.
function
-
Type:
GSourceFunc
Function to call.
data
-
Type:
gpointer
Data to pass to
function
.The argument can be NULL
.The data is owned by the caller of the function. notify
-
Type:
GDestroyNotify
Function to call when the timeout is removed, or
NULL
.The argument can be NULL
.