summaryrefslogtreecommitdiff
path: root/desktop/schedule.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2011-03-13 18:26:46 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2011-03-13 18:26:46 +0000
commit93e9bfe3232fbcb3531acf07a870ed404c526f27 (patch)
tree7835b3cc4ac66d21fc64460c5f11f6e62760a042 /desktop/schedule.h
parentc615507e150592895980608d00601beed16d28b9 (diff)
downloadnetsurf-93e9bfe3232fbcb3531acf07a870ed404c526f27.tar.gz
netsurf-93e9bfe3232fbcb3531acf07a870ed404c526f27.tar.bz2
Shunt the schedule function definitions to desktop/schedule.h. Shunt the hlcache/llcache to using schedule to get their cleanups run.
svn path=/trunk/netsurf/; revision=12029
Diffstat (limited to 'desktop/schedule.h')
-rw-r--r--desktop/schedule.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/desktop/schedule.h b/desktop/schedule.h
new file mode 100644
index 000000000..8d5aa1e90
--- /dev/null
+++ b/desktop/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_DESKTOP_SCHEDULE_H_
+#define _NETSURF_DESKTOP_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