1<!--$Id: memp_sync.so,v 10.43 2007/02/27 19:23:07 bostic Exp $-->
2<!--Copyright (c) 1997,2008 Oracle.  All rights reserved.-->
3<!--See the file LICENSE for redistribution information.-->
4<html>
5<head>
6<title>Berkeley DB: DB_ENV-&gt;memp_sync</title>
7<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
8<meta name="keywords" content="embedded,database,programmatic,toolkit,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,Java,C,C++">
9</head>
10<body bgcolor=white>
11<table width="100%"><tr valign=top>
12<td>
13<b>DB_ENV-&gt;memp_sync</b>
14</td>
15<td align=right>
16<a href="/api_c/api_core.html"><img src="/images/api.gif" alt="API"></a>
17<a href="/ref/toc.html"><img src="/images/ref.gif" alt="Ref"></a></td>
18</tr></table>
19<hr size=1 noshade>
20<tt>
21<b><pre>
22#include &lt;db.h&gt;
23<p>
24int
25DB_ENV-&gt;memp_sync(DB_ENV *env, DB_LSN *lsn);
26</pre></b>
27<hr size=1 noshade>
28<b>Description: DB_ENV-&gt;memp_sync</b>
29<p>The DB_ENV-&gt;memp_sync method flushes modified pages in the cache to their
30backing files.</p>
31<p>Pages in the pool that cannot be immediately written back to disk (for
32example, pages that are currently in use by another thread of control)
33are waited for and written to disk as soon as it is possible to do
34so.</p>
35<p>The DB_ENV-&gt;memp_sync method
36returns a non-zero error value on failure
37and 0 on success.
38</p>
39<b>Parameters</b> <br>
40 <b>lsn</b><ul compact><li>The purpose of the <b>lsn</b> parameter is to enable a transaction
41manager to ensure, as part of a checkpoint, that all pages modified by
42a certain time have been written to disk.
43<p>All modified pages with a a log sequence number (<a href="/api_c/lsn_class.html">DB_LSN</a>) less
44than the <b>lsn</b> parameter are written to disk.  If <b>lsn</b> is
45NULL, all modified pages in the pool are written to disk.</p></ul>
46<br>
47<hr size=1 noshade>
48<br><b>Class</b>
49<a href="/api_c/env_class.html">DB_ENV</a>, <a href="/api_c/mempfile_class.html">DB_MPOOLFILE</a>
50<br><b>See Also</b>
51<a href="/api_c/memp_list.html">Memory Pools and Related Methods</a>
52</tt>
53<table width="100%"><tr><td><br></td><td align=right>
54<a href="/api_c/api_core.html"><img src="/images/api.gif" alt="API"></a><a href="/ref/toc.html"><img src="/images/ref.gif" alt="Ref"></a>
55</td></tr></table>
56<p><font size=1>Copyright (c) 1996,2008 Oracle.  All rights reserved.</font>
57</body>
58</html>
59