• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/docs/api_reference/CXX/
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml">
4  <head>
5    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6    <title>DbEnv::mutex_set_increment()</title>
7    <link rel="stylesheet" href="apiReference.css" type="text/css" />
8    <meta name="generator" content="DocBook XSL Stylesheets V1.73.2" />
9    <link rel="start" href="index.html" title="Berkeley DB C++ API Reference" />
10    <link rel="up" href="mutex.html" title="Chapter 10.  Mutex Methods" />
11    <link rel="prev" href="mutexset_align.html" title="DbEnv::mutex_set_align()" />
12    <link rel="next" href="mutexset_max.html" title="DbEnv::mutex_set_max()" />
13  </head>
14  <body>
15    <div class="navheader">
16      <table width="100%" summary="Navigation header">
17        <tr>
18          <th colspan="3" align="center">DbEnv::mutex_set_increment()</th>
19        </tr>
20        <tr>
21          <td width="20%" align="left"><a accesskey="p" href="mutexset_align.html">Prev</a> </td>
22          <th width="60%" align="center">Chapter 10. 
23                Mutex Methods 
24        </th>
25          <td width="20%" align="right"> <a accesskey="n" href="mutexset_max.html">Next</a></td>
26        </tr>
27      </table>
28      <hr />
29    </div>
30    <div class="sect1" lang="en" xml:lang="en">
31      <div class="titlepage">
32        <div>
33          <div>
34            <h2 class="title" style="clear: both"><a id="mutexset_increment"></a>DbEnv::mutex_set_increment()</h2>
35          </div>
36        </div>
37      </div>
38      <pre class="programlisting">#include &lt;db_cxx.h&gt;
39
40int
41DbEnv::mutex_set_increment(u_int32_t increment); </pre>
42      <p>
43        Configure the number of additional mutexes to allocate.
44    </p>
45      <p>
46         If an application will allocate mutexes for its own use, 
47         the <code class="methodname">DbEnv::mutex_set_increment()</code> method is used to add a
48         number of mutexes to the default allocation.
49    </p>
50      <p>
51         Calling the <code class="methodname">DbEnv::mutex_set_increment()</code> method discards any value
52         previously set using the <code class="methodname">DbEnv::mutex_set_max()</code> method.
53    </p>
54      <p>
55         The database environment's number of additional mutexes may also be
56         configured using the environment's <a href="../../programmer_reference/env_db_config.html#env_db_config.DB_CONFIG" class="olink">DB_CONFIG</a> file.  The
57         syntax of the entry in that file is a single line with the string
58         "mutex_set_increment", one or more whitespace characters, and the
59         number of additional mutexes. Because the <a href="../../programmer_reference/env_db_config.html#env_db_config.DB_CONFIG" class="olink">DB_CONFIG</a> file is
60         read when the database environment is opened, it will silently
61         overrule configuration done before that time.
62    </p>
63      <p>
64         The <code class="methodname">DbEnv::mutex_set_increment()</code> method configures a database
65         environment, not only operations performed using the specified 
66         <a class="link" href="env.html" title="Chapter 5.  The DbEnv Handle">DbEnv</a>  handle.
67    </p>
68      <p>
69         The <code class="methodname">DbEnv::mutex_set_increment()</code> method may not be called after the
70         <a class="xref" href="envopen.html" title="DbEnv::open()">DbEnv::open()</a>  method is
71         called. If the database environment already exists when 
72         <a class="xref" href="envopen.html" title="DbEnv::open()">DbEnv::open()</a>  is called, the
73         information specified to <code class="methodname">DbEnv::mutex_set_increment()</code> will be
74         ignored.
75    </p>
76      <p>
77         The <code class="methodname">DbEnv::mutex_set_increment()</code> <span>
78            
79            <span>
80                method either returns a non-zero error value or throws an
81                exception that encapsulates a non-zero error value on
82                failure, and returns 0 on success.
83            </span>
84        </span>
85    </p>
86      <div class="sect2" lang="en" xml:lang="en">
87        <div class="titlepage">
88          <div>
89            <div>
90              <h3 class="title"><a id="id1699257"></a>Parameters</h3>
91            </div>
92          </div>
93        </div>
94        <div class="sect3" lang="en" xml:lang="en">
95          <div class="titlepage">
96            <div>
97              <div>
98                <h4 class="title"><a id="id1699064"></a>increment</h4>
99              </div>
100            </div>
101          </div>
102          <p>
103                          The <span class="bold"><strong>increment</strong></span> parameter is the number
104                          of additional mutexes to allocate.
105                     </p>
106        </div>
107      </div>
108      <div class="sect2" lang="en" xml:lang="en">
109        <div class="titlepage">
110          <div>
111            <div>
112              <h3 class="title"><a id="id1699420"></a>Errors</h3>
113            </div>
114          </div>
115        </div>
116        <p>
117                         The <code class="methodname">DbEnv::mutex_set_increment()</code> <span>
118            
119            <span>
120                method may fail and throw a <a class="link" href="dbexception.html" title="Chapter 6. The DbException Class">DbException</a> 
121                exception, encapsulating one of the following non-zero errors, or return one
122                of the following non-zero errors:
123            </span>
124        </span>
125                    </p>
126        <div class="sect3" lang="en" xml:lang="en">
127          <div class="titlepage">
128            <div>
129              <div>
130                <h4 class="title"><a id="id1699194"></a>EINVAL</h4>
131              </div>
132            </div>
133          </div>
134          <p>
135                If the method was called after <a class="xref" href="envopen.html" title="DbEnv::open()">DbEnv::open()</a> 
136                was called; or if an invalid flag value or parameter was specified.
137            </p>
138        </div>
139      </div>
140      <div class="sect2" lang="en" xml:lang="en">
141        <div class="titlepage">
142          <div>
143            <div>
144              <h3 class="title"><a id="id1699352"></a>Class</h3>
145            </div>
146          </div>
147        </div>
148        <p>
149                <a class="link" href="env.html" title="Chapter 5.  The DbEnv Handle">DbEnv</a>  
150            </p>
151      </div>
152      <div class="sect2" lang="en" xml:lang="en">
153        <div class="titlepage">
154          <div>
155            <div>
156              <h3 class="title"><a id="id1699148"></a>See Also</h3>
157            </div>
158          </div>
159        </div>
160        <p>
161                     <a class="xref" href="mutex.html#mutexlist" title="Mutex Methods">Mutex Methods</a> 
162                </p>
163      </div>
164    </div>
165    <div class="navfooter">
166      <hr />
167      <table width="100%" summary="Navigation footer">
168        <tr>
169          <td width="40%" align="left"><a accesskey="p" href="mutexset_align.html">Prev</a> </td>
170          <td width="20%" align="center">
171            <a accesskey="u" href="mutex.html">Up</a>
172          </td>
173          <td width="40%" align="right"> <a accesskey="n" href="mutexset_max.html">Next</a></td>
174        </tr>
175        <tr>
176          <td width="40%" align="left" valign="top">DbEnv::mutex_set_align() </td>
177          <td width="20%" align="center">
178            <a accesskey="h" href="index.html">Home</a>
179          </td>
180          <td width="40%" align="right" valign="top"> DbEnv::mutex_set_max()</td>
181        </tr>
182      </table>
183    </div>
184  </body>
185</html>
186