summaryrefslogtreecommitdiff
path: root/src/os_windows/ce_util_sig.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/os_windows/ce_util_sig.c')
-rw-r--r--src/os_windows/ce_util_sig.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/os_windows/ce_util_sig.c b/src/os_windows/ce_util_sig.c
new file mode 100644
index 00000000..11fb4ad7
--- /dev/null
+++ b/src/os_windows/ce_util_sig.c
@@ -0,0 +1,35 @@
+/*-
+ * See the file LICENSE for redistribution information.
+ *
+ * Copyright (c) 2012, 2015 Oracle and/or its affiliates. All rights reserved.
+ *
+ * $Id$
+ */
+
+#include "db_config.h"
+
+#include "db_int.h"
+
+/*
+ * The stub functions for signal handling.
+ * WinCE does not support signal handling, so we just define stub functions to
+ * avoid linkage errors for utilities build.
+ */
+
+void
+__db_util_siginit()
+{
+ return;
+}
+
+int
+__db_util_interrupted()
+{
+ return (0);
+}
+
+void
+__db_util_sigresend()
+{
+ return;
+}