~ubuntu-branches/ubuntu/natty/evolution-data-server/natty

« back to all changes in this revision

Viewing changes to libdb/docs/api_java/lock_stat.html

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-05-17 17:02:06 UTC
  • mfrom: (1.1.79 upstream) (1.6.12 experimental)
  • Revision ID: james.westby@ubuntu.com-20100517170206-4ufr52vwrhh26yh0
Tags: 2.30.1-1ubuntu1
* Merge from debian experimental. Remaining change:
  (LP: #42199, #229669, #173703, #360344, #508494)
  + debian/control:
    - add Vcs-Bzr tag
    - don't use libgnome
    - Use Breaks instead of Conflicts against evolution 2.25 and earlier.
  + debian/evolution-data-server.install,
    debian/patches/45_libcamel_providers_version.patch:
    - use the upstream versioning, not a Debian-specific one 
  + debian/libedata-book1.2-dev.install, debian/libebackend-1.2-dev.install,
    debian/libcamel1.2-dev.install, debian/libedataserverui1.2-dev.install:
    - install html documentation
  + debian/rules:
    - don't build documentation it's shipped with the tarball

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!--$Id$-->
2
 
<!--Copyright 1997-2002 by Sleepycat Software, Inc.-->
3
 
<!--All rights reserved.-->
4
 
<!--See the file LICENSE for redistribution information.-->
5
 
<html>
6
 
<head>
7
 
<title>Berkeley DB: DbEnv.lock_stat</title>
8
 
<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit.">
9
 
<meta name="keywords" content="embedded,database,programmatic,toolkit,b+tree,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,java,C,C++">
10
 
</head>
11
 
<body bgcolor=white>
12
 
<a name="2"><!--meow--></a>
13
 
<table width="100%"><tr valign=top>
14
 
<td>
15
 
<h1>DbEnv.lock_stat</h1>
16
 
</td>
17
 
<td align=right>
18
 
<a href="../api_java/c_index.html"><img src="../images/api.gif" alt="API"></a><a href="../reftoc.html"><img src="../images/ref.gif" alt="Ref"></a>
19
 
</td></tr></table>
20
 
<hr size=1 noshade>
21
 
<tt>
22
 
<h3><pre>
23
 
import com.sleepycat.db.*;
24
 
<p>
25
 
public DbLockStat lock_stat(int flags)
26
 
    throws DbException;
27
 
</pre></h3>
28
 
<h1>Description</h1>
29
 
<p>The DbEnv.lock_stat method returns the locking subsystem statistics.
30
 
<p>The <b>flags</b> value must be set to 0 or
31
 
the following value:
32
 
<p><dl compact>
33
 
<p><dt><a name="Db.DB_STAT_CLEAR">Db.DB_STAT_CLEAR</a><dd>Reset statistics after returning their values.
34
 
</dl>
35
 
<p>The DbEnv.lock_stat method creates a DbLockStat object encapsulating the
36
 
lock region statistics.  The following data fields are available from
37
 
the DbLockStat object:
38
 
<p><dl compact>
39
 
<dt>public int st_id;<dd>The last allocated locker ID.
40
 
<dt>public int st_cur_maxid;<dd>The current maximum unused locker ID.
41
 
<dt>public int st_nmodes;<dd>The number of lock modes.
42
 
<dt>public int st_maxlocks;<dd>The maximum number of locks possible.
43
 
<dt>public int st_maxlockers;<dd>The maximum number of lockers possible.
44
 
<dt>public int st_maxobjects;<dd>The maximum number of lock objects possible.
45
 
<dt>public int st_nlocks;<dd>The number of current locks.
46
 
<dt>public int st_maxnlocks;<dd>The maximum number of locks at any one time.
47
 
<dt>public int st_nlockers;<dd>The number of current lockers.
48
 
<dt>public int st_maxnlockers;<dd>The maximum number of lockers at any one time.
49
 
<dt>public int st_nobjects;<dd>The number of current lock objects.
50
 
<dt>public int st_maxnobjects;<dd>The maximum number of lock objects at any one time.
51
 
<dt>public int st_nrequests;<dd>The total number of locks requested.
52
 
<dt>public int st_nreleases;<dd>The total number of locks released.
53
 
<dt>public int st_nnowaits;<dd>The total number of lock requests failing because
54
 
<a href="../api_java/lock_vec.html#DB_LOCK_NOWAIT">Db.DB_LOCK_NOWAIT</a> was set.
55
 
<dt>public int st_nconflicts;<dd>The total number of locks not immediately available due to conflicts.
56
 
<dt>public int st_ndeadlocks;<dd>The number of deadlocks.
57
 
<dt>public int st_locktimeout;<dd>Lock timeout value.
58
 
<dt>public int st_nlocktimeouts;<dd>The number of locks that have timed out.
59
 
<dt>public int st_txntimeout;<dd>Transaction timeout value.
60
 
<dt>public int st_ntxntimeouts;<dd>The number of transactions that have timed out.  This value is also a
61
 
component of <b>st_ndeadlocks</b>, the total number of deadlocks
62
 
detected.
63
 
<dt>public int st_regsize;<dd>The size of the lock region.
64
 
<dt>public int st_region_wait;<dd>The number of times that a thread of control was forced to wait before
65
 
obtaining the region lock.
66
 
<dt>public int st_region_nowait;<dd>The number of times that a thread of control was able to obtain
67
 
the region lock without waiting.
68
 
</dl>
69
 
<p>The DbEnv.lock_stat method throws an exception that encapsulates a non-zero error value on
70
 
failure.
71
 
<h1>Errors</h1>
72
 
<p>The DbEnv.lock_stat method may fail and throw an exception for errors specified for other Berkeley DB and C library or system methods.
73
 
If a catastrophic error has occurred, the DbEnv.lock_stat method may fail and
74
 
throw a <a href="../api_java/runrec_class.html">DbRunRecoveryException</a>,
75
 
in which case all subsequent Berkeley DB calls will fail in the same way.
76
 
<h1>Class</h1>
77
 
<a href="../api_java/env_class.html">DbEnv</a>, <a href="../api_java/lock_class.html">DbLock</a>
78
 
<h1>See Also</h1>
79
 
<a href="../api_java/lock_list.html">Locking Subsystem and Related Methods</a>
80
 
</tt>
81
 
<table width="100%"><tr><td><br></td><td align=right>
82
 
<a href="../api_java/c_index.html"><img src="../images/api.gif" alt="API"></a><a href="../reftoc.html"><img src="../images/ref.gif" alt="Ref"></a>
83
 
</td></tr></table>
84
 
<p><font size=1><a href="http://www.sleepycat.com">Copyright Sleepycat Software</a></font>
85
 
</body>
86
 
</html>