DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 
Berkeley DB
version 4.4.20

com.sleepycat.db
Class MutexStats

java.lang.Object
  extended bycom.sleepycat.db.MutexStats

public class MutexStats
extends Object

Statistics about mutexes in a Berkeley DB database environment, returned by Environment.getMutexStats(com.sleepycat.db.StatsConfig)


Method Summary
 int getMutexAlign()
          The mutex alignment, in bytes.
 int getMutexCount()
          The total number of mutexes configured.
 int getMutexFree()
          The number of mutexes currently available.
 int getMutexInuse()
          The number of mutexes currently in use.
 int getMutexInuseMax()
          The maximum number of mutexes ever in use.
 int getMutexTasSpins()
          The number of times test-and-set mutexes will spin without blocking.
 int getRegionNowait()
          The number of times that a thread of control was able to obtain the mutex region mutex without waiting.
 int getRegionWait()
          The number of times that a thread of control was forced to wait before obtaining the mutex region mutex.
 int getRegSize()
          The size of the mutex region, in bytes.
 String toString()
          For convenience, the MutexStats class has a toString method that lists all the data fields.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Method Detail

getMutexAlign

public int getMutexAlign()
The mutex alignment, in bytes.


getMutexTasSpins

public int getMutexTasSpins()
The number of times test-and-set mutexes will spin without blocking.


getMutexCount

public int getMutexCount()
The total number of mutexes configured.


getMutexFree

public int getMutexFree()
The number of mutexes currently available.


getMutexInuse

public int getMutexInuse()
The number of mutexes currently in use.


getMutexInuseMax

public int getMutexInuseMax()
The maximum number of mutexes ever in use.


getRegionWait

public int getRegionWait()
The number of times that a thread of control was forced to wait before obtaining the mutex region mutex.


getRegionNowait

public int getRegionNowait()
The number of times that a thread of control was able to obtain the mutex region mutex without waiting.


getRegSize

public int getRegSize()
The size of the mutex region, in bytes.


toString

public String toString()
For convenience, the MutexStats class has a toString method that lists all the data fields.


Berkeley DB
version 4.4.20

Copyright (c) 1996-2005 Sleepycat Software, Inc. - All rights reserved.