summary refs log tree commit diff stats
path: root/src/fe-text
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2016-05-08 21:51:38 +0200
committerPatrick Griffis <tingping@tingping.se>2016-06-29 15:42:11 -0400
commitbcbe42dd7a4b7bca0e699c3e52f2c9bf7b37deba (patch)
tree0e93a7ba613dcdbfd0c27961578afa624a4ae13a /src/fe-text
parent25e197a6c84463e967065c64b5760b79884787cc (diff)
Introduce and use fe_timeout_add_seconds
This should allow the operating system to be a bit more lax about
timeouts, allowing more efficient power management.
Diffstat (limited to 'src/fe-text')
-rw-r--r--src/fe-text/fe-text.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/fe-text/fe-text.c b/src/fe-text/fe-text.c
index 209a3d03..7345ac6f 100644
--- a/src/fe-text/fe-text.c
+++ b/src/fe-text/fe-text.c
@@ -415,6 +415,12 @@ fe_timeout_add (int interval, void *callback, void *userdata)
 	return g_timeout_add (interval, (GSourceFunc) callback, userdata);
 }
 
+int
+fe_timeout_add_seconds (int interval, void *callback, void *userdata)
+{
+	return g_timeout_add_seconds (interval, (GSourceFunc) callback, userdata);
+}
+
 void
 fe_input_remove (int tag)
 {