summaryrefslogtreecommitdiff
path: root/utils/schedule.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-03-13 22:50:54 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-03-13 22:50:54 +0000
commit408f78b73793fd8ee3a9bff25afaf55b3b25a495 (patch)
treed4a01f220bb0015c1d931f12f0d281db209f7ead /utils/schedule.h
parentf2c97c39200d0d167e17d41f703bb91732901302 (diff)
downloadnetsurf-408f78b73793fd8ee3a9bff25afaf55b3b25a495.tar.gz
netsurf-408f78b73793fd8ee3a9bff25afaf55b3b25a495.tar.bz2
Move schedule.h to utils/
svn path=/trunk/netsurf/; revision=12039
Diffstat (limited to 'utils/schedule.h')
-rw-r--r--utils/schedule.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/utils/schedule.h b/utils/schedule.h
new file mode 100644
index 000000000..b5fe386cc
--- /dev/null
+++ b/utils/schedule.h
@@ -0,0 +1,32 @@
+/*
+ * Copyright 2011 Daniel Silverstone <dsilvers@netsurf-browser.org>
+ *
+ * This file is part of NetSurf, http://www.netsurf-browser.org/
+ *
+ * NetSurf is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * NetSurf is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/** \file
+ * Job scheduler (interface).
+ */
+
+#ifndef _NETSURF_UTILS_SCHEDULE_H_
+#define _NETSURF_UTILS_SCHEDULE_H_
+
+/* In platform specific schedule.c. */
+typedef void (*schedule_callback_fn)(void *p);
+
+void schedule(int t, schedule_callback_fn callback, void *p);
+void schedule_remove(schedule_callback_fn callback, void *p);
+
+#endif