Changeset 648
- Timestamp:
- Nov 2, 2011, 7:27:32 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/server/lib/tdb/common/tdb.c ¶
r647 r648 923 923 924 924 tdb_trace(tdb, "tdb_repack"); 925 TDB_LOG((tdb, TDB_DEBUG_TRACE, "@remove me: repack enter\n"));926 925 927 926 if (tdb_transaction_start(tdb) != 0) { … … 929 928 return -1; 930 929 } 931 TDB_LOG((tdb, TDB_DEBUG_TRACE, "@remove me: nach start\n"));932 930 933 931 tmp_db = tdb_open("tmpdb", tdb_hash_size(tdb), TDB_INTERNAL, O_RDWR|O_CREAT, 0); … … 937 935 return -1; 938 936 } 939 TDB_LOG((tdb, TDB_DEBUG_TRACE, "@remove me: nach tmp open\n"));940 937 941 938 state.error = false; … … 948 945 return -1; 949 946 } 950 TDB_LOG((tdb, TDB_DEBUG_TRACE, "@remove me: nach travers\n"));951 947 952 948 if (state.error) { … … 963 959 return -1; 964 960 } 965 TDB_LOG((tdb, TDB_DEBUG_TRACE, "@remove me: nach wipe\n"));966 961 967 962 state.error = false; … … 974 969 return -1; 975 970 } 976 TDB_LOG((tdb, TDB_DEBUG_TRACE, "@remove me: nach read\n"));977 971 978 972 if (state.error) { … … 984 978 985 979 tdb_close(tmp_db); 986 TDB_LOG((tdb, TDB_DEBUG_TRACE, "@remove me: nach close\n"));987 980 988 981 if (tdb_transaction_commit(tdb) != 0) {
Note:
See TracChangeset
for help on using the changeset viewer.