pthread.h | rw.h -> latches.h (Otherwise, -DPROFILE_LATCHES doesn't work.

This commit is contained in:
Sears Russell 2006-07-25 01:06:01 +00:00
parent 45a5996215
commit 8aad1b896a
8 changed files with 8 additions and 8 deletions

View file

@ -5,7 +5,7 @@
#include <assert.h>
#include <string.h>
#include <stdio.h>
#include <pthread.h>
#include "latches.h"
/**
@todo Look up the balls + bins stuff, and pick FILL_FACTOR in a
principled way...

View file

@ -3,7 +3,7 @@
#include <lladd/compensations.h>
#include <sys/time.h>
#include <time.h>
#include <pthread.h>
#include "latches.h"
#include <stdlib.h>
#include <errno.h>
#include <stdio.h>

View file

@ -1,5 +1,5 @@
#include "inMemoryLog.h"
#include <libdfa/rw.h>
#include "../latches.h"
#include <string.h>
#include <assert.h>
static rwl * flushedLSN_lock;

View file

@ -1,6 +1,6 @@
#define __USE_GNU
#define _GNU_SOURCE
#include <pthread.h>
#include "../latches.h"
#include <lladd/transactional.h>
#include <lladd/hash.h>
#include "../page.h"

View file

@ -1,6 +1,6 @@
#define __USE_GNU
#define _GNU_SOURCE
#include <pthread.h>
#include "../latches.h"
#include <lladd/transactional.h>
#include <lladd/hash.h>
#include "../page.h"

View file

@ -1,6 +1,6 @@
#define __USE_GNU
#define _GNU_SOURCE
#include <pthread.h>
#include "../latches.h"
#include <lladd/transactional.h>
#include <lladd/hash.h>

View file

@ -2,7 +2,7 @@
#include <lladd/hash.h>
#include <limits.h>
#include <assert.h>
#include <pthread.h>
#include "../latches.h"
/**
A from-scratch implementation of linear hashing. Uses the

View file

@ -51,7 +51,7 @@ terms specified in this license.
#include <pbl/pbl.h>
#include <string.h>
#include <stdlib.h>
#include <pthread.h>
#include "../latches.h"
#include <assert.h>
/** @todo Remove extern declaration of transactional_2_mutex from nestedTopActions.c */
extern pthread_mutex_t transactional_2_mutex;