~ubuntu-branches/ubuntu/edgy/rpm/edgy

« back to all changes in this revision

Viewing changes to db/docs/api_c/env_set_pageyield.html

  • Committer: Bazaar Package Importer
  • Author(s): Joey Hess
  • Date: 2002-01-22 20:56:57 UTC
  • Revision ID: james.westby@ubuntu.com-20020122205657-l74j50mr9z8ofcl5
Tags: upstream-4.0.3
ImportĀ upstreamĀ versionĀ 4.0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!--$Id: env_set_pageyield.so,v 10.8 2001/05/01 14:23:10 bostic Exp $-->
 
2
<!--Copyright 1997-2001 by Sleepycat Software, Inc.-->
 
3
<!--All rights reserved.-->
 
4
<html>
 
5
<head>
 
6
<title>Berkeley DB: db_env_set_pageyield</title>
 
7
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
 
8
<meta name="keywords" content="embedded,database,programmatic,toolkit,b+tree,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,java,C,C++">
 
9
</head>
 
10
<body bgcolor=white>
 
11
<a name="2"><!--meow--></a>
 
12
<table width="100%"><tr valign=top>
 
13
<td>
 
14
<h1>db_env_set_pageyield</h1>
 
15
</td>
 
16
<td align=right>
 
17
<a href="../api_c/c_index.html"><img src="../images/api.gif" alt="API"></a><a href="../reftoc.html"><img src="../images/ref.gif" alt="Ref"></a>
 
18
</td></tr></table>
 
19
<hr size=1 noshade>
 
20
<tt>
 
21
<h3><pre>
 
22
#include &lt;db.h&gt;
 
23
<p>
 
24
int
 
25
db_env_set_pageyield(int pageyield);
 
26
</pre></h3>
 
27
<h1>Description</h1>
 
28
<p>Yield the processor whenever requesting a page from the cache.  Setting
 
29
<b>pageyield</b> to a non-zero value causes Berkeley DB to yield the processor
 
30
any time a thread requests a page from the cache.  This functionality
 
31
should never be used for any other purpose than stress testing.
 
32
<p>The db_env_set_pageyield interface affects the entire application, not a single
 
33
database or database environment.
 
34
<p>The db_env_set_pageyield interface may be used to configure Berkeley DB at any time
 
35
during the life of the application.
 
36
<p>The db_env_set_pageyield function returns a non-zero error value on failure and 0 on success.
 
37
<h1>Errors</h1>
 
38
<p>The db_env_set_pageyield function may fail and return a non-zero error for the following conditions:
 
39
<p><dl compact>
 
40
<p><dt>EINVAL<dd>An invalid flag value or parameter was specified.
 
41
</dl>
 
42
<p>The db_env_set_pageyield function may fail and return a non-zero error for errors specified for other Berkeley DB and C library or system functions.
 
43
If a catastrophic error has occurred, the db_env_set_pageyield function may fail and return
 
44
<a href="../ref/program/errorret.html#DB_RUNRECOVERY">DB_RUNRECOVERY</a>, in which case all subsequent Berkeley DB calls will fail
 
45
in the same way.
 
46
<h1>See Also</h1>
 
47
<a href="../api_c/env_create.html">db_env_create</a>,
 
48
<a href="../api_c/env_close.html">DB_ENV-&gt;close</a>,
 
49
<a href="../api_c/env_err.html">DB_ENV-&gt;err</a>, <a href="../api_c/env_err.html">DB_ENV-&gt;errx</a>
 
50
<a href="../api_c/env_open.html">DB_ENV-&gt;open</a>,
 
51
<a href="../api_c/env_remove.html">DB_ENV-&gt;remove</a>,
 
52
<a href="../api_c/env_set_alloc.html">DB_ENV-&gt;set_alloc</a>,
 
53
<a href="../api_c/env_set_cachesize.html">DB_ENV-&gt;set_cachesize</a>,
 
54
<a href="../api_c/env_set_data_dir.html">DB_ENV-&gt;set_data_dir</a>,
 
55
<a href="../api_c/env_set_errcall.html">DB_ENV-&gt;set_errcall</a>,
 
56
<a href="../api_c/env_set_errfile.html">DB_ENV-&gt;set_errfile</a>,
 
57
<a href="../api_c/env_set_errpfx.html">DB_ENV-&gt;set_errpfx</a>,
 
58
<a href="../api_c/env_set_feedback.html">DB_ENV-&gt;set_feedback</a>,
 
59
<a href="../api_c/env_set_flags.html">DB_ENV-&gt;set_flags</a>,
 
60
<a href="../api_c/env_set_mutexlocks.html">DB_ENV-&gt;set_mutexlocks</a>,
 
61
<a href="../api_c/env_set_pageyield.html">db_env_set_pageyield</a>,
 
62
<a href="../api_c/env_set_paniccall.html">DB_ENV-&gt;set_paniccall</a>,
 
63
<a href="../api_c/env_set_panicstate.html">db_env_set_panicstate</a>,
 
64
<a href="../api_c/env_set_rec_init.html">DB_ENV-&gt;set_recovery_init</a>,
 
65
<a href="../api_c/env_set_rpc_server.html">DB_ENV-&gt;set_rpc_server</a>,
 
66
<a href="../api_c/env_set_region_init.html">db_env_set_region_init</a>,
 
67
<a href="../api_c/env_set_shm_key.html">DB_ENV-&gt;set_shm_key</a>,
 
68
<a href="../api_c/env_set_tas_spins.html">db_env_set_tas_spins</a>,
 
69
<a href="../api_c/env_set_tmp_dir.html">DB_ENV-&gt;set_tmp_dir</a>,
 
70
<a href="../api_c/env_set_verbose.html">DB_ENV-&gt;set_verbose</a>,
 
71
<a href="../api_c/env_strerror.html">db_strerror</a>
 
72
and
 
73
<a href="../api_c/env_version.html">db_version</a>.
 
74
</tt>
 
75
<table width="100%"><tr><td><br></td><td align=right>
 
76
<a href="../api_c/c_index.html"><img src="../images/api.gif" alt="API"></a><a href="../reftoc.html"><img src="../images/ref.gif" alt="Ref"></a>
 
77
</td></tr></table>
 
78
<p><font size=1><a href="http://www.sleepycat.com">Copyright Sleepycat Software</a></font>
 
79
</body>
 
80
</html>