summaryrefslogtreecommitdiff
path: root/src/os_windows/ce_util_sig.c
blob: 11fb4ad75d60472b16558a89acff7b6852d152a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
}