ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/BDB/BDB.xs
(Generate patch)

Comparing BDB/BDB.xs (file contents):
Revision 1.21 by root, Thu Dec 6 02:44:48 2007 UTC vs.
Revision 1.22 by root, Fri Dec 7 13:14:54 2007 UTC

1813 CODE: 1813 CODE:
1814 RETVAL = env->set_lg_max (env, max); 1814 RETVAL = env->set_lg_max (env, max);
1815 OUTPUT: 1815 OUTPUT:
1816 RETVAL 1816 RETVAL
1817 1817
1818int mutex_set_max (DB_ENV *env, U32 max)
1819 CODE:
1820 RETVAL = env->mutex_set_max (env, max);
1821 OUTPUT:
1822 RETVAL
1823
1824int mutex_set_increment (DB_ENV *env, U32 increment)
1825 CODE:
1826 RETVAL = env->mutex_set_increment (env, increment);
1827 OUTPUT:
1828 RETVAL
1829
1830int mutex_set_tas_spins (DB_ENV *env, U32 tas_spins)
1831 CODE:
1832 RETVAL = env->mutex_set_tas_spins (env, tas_spins);
1833 OUTPUT:
1834 RETVAL
1835
1836int mutex_set_align (DB_ENV *env, U32 align)
1837 CODE:
1838 RETVAL = env->mutex_set_align (env, align);
1839 OUTPUT:
1840 RETVAL
1841
1818DB_TXN * 1842DB_TXN *
1819txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0) 1843txn_begin (DB_ENV *env, DB_TXN_ornull *parent = 0, U32 flags = 0)
1820 CODE: 1844 CODE:
1821 errno = env->txn_begin (env, parent, &RETVAL, flags); 1845 errno = env->txn_begin (env, parent, &RETVAL, flags);
1822 if (errno) 1846 if (errno)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines