add changelog
[platform/upstream/gdbm.git] / src / gdbmsync.c
1 /* gdbmsync.c - Sync the disk with the in memory state. */
2
3 /* This file is part of GDBM, the GNU data base manager.
4    Copyright (C) 1990, 1991, 1993, 2007, 2011, 2013 Free Software Foundation,
5    Inc.
6
7    GDBM is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3, or (at your option)
10    any later version.
11
12    GDBM is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with GDBM. If not, see <http://www.gnu.org/licenses/>.   */
19
20 /* Include system configuration before all else. */
21 #include "autoconf.h"
22
23 #include "gdbmdefs.h"
24
25 /* Make sure the database is all on disk. */
26
27 void
28 gdbm_sync (GDBM_FILE dbf)
29 {
30
31   /* Initialize the gdbm_errno variable. */
32   gdbm_errno = GDBM_NO_ERROR;
33
34   /* Do the sync on the file. */
35   __fsync (dbf);
36
37 }