1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 1998,2008 Oracle.  All rights reserved.
5 *
6 * $Id: os_config.c,v 1.5 2008/01/08 20:58:45 bostic Exp $
7 */
8
9#include "db_config.h"
10
11#include "db_int.h"
12
13/*
14 * __os_fs_notzero --
15 *	Return 1 if allocated filesystem blocks are not zeroed.
16 */
17int
18__os_fs_notzero()
19{
20	/*
21	 * The S60 filesystem does not always zero-fill newly allocated
22	 * filesystem blocks.
23	 */
24	return (1);
25}
26
27/*
28 * __os_support_direct_io --
29 *	Return 1 if we support direct I/O.
30 */
31int
32__os_support_direct_io()
33{
34	return (0);
35}
36
37/*
38 * __os_support_db_register --
39 *	Return 1 if the system supports DB_REGISTER.
40 */
41int
42__os_support_db_register()
43{
44	return (0);
45}
46
47/*
48 * __os_support_replication --
49 *	Return 1 if the system supports replication.
50 */
51int
52__os_support_replication()
53{
54	return (0);
55}
56