All tests that pass with LOG_TO_FILE now pass with LOG_TO_MEMORY, but LOG_TO_MEMORY is slow, and seems to be

killing malloc's performance for some reason.  (linearHashNTA spends many seconds in free() between unit
tests...)
This commit is contained in:
Sears Russell 2006-04-08 00:05:09 +00:00
parent d3d7f2c788
commit 7decae7172
3 changed files with 3 additions and 5 deletions

View file

@ -51,7 +51,7 @@ terms specified in this license.
#include <stdio.h>
#include <assert.h>
int loggerType = LOG_TO_FILE; //MEMORY;
int loggerType = LOG_TO_MEMORY;
void genericLogWrite(LogEntry * e) {
assert(loggerType != -1); // Otherwise, we haven't been initialized.

View file

@ -94,7 +94,7 @@ void setupOperationsTable() {
int Tinit() {
pthread_mutex_init(&transactional_2_mutex, NULL);
numActiveXactions = 0;
setupOperationsTable();
bufInit();
@ -144,8 +144,6 @@ int Tbegin() {
xidCount_tmp = xidCount;
assert( i < MAX_TRANSACTIONS );
XactionTable[index].xid = PENDING_XTABLE_XID;
pthread_mutex_unlock(&transactional_2_mutex);

View file

@ -81,7 +81,7 @@ START_TEST(linearHashNTAtest)
assert(val2->size == val2->slot * NUM_ENTRIES);
free(val2);
}
if(1) { return; }
Tcommit(xid);
printf("\n"); fflush(stdout);