diff options
| author | Vadim B. Mikheev <vadim4o@yahoo.com> | 1999-09-27 15:48:12 +0000 |
|---|---|---|
| committer | Vadim B. Mikheev <vadim4o@yahoo.com> | 1999-09-27 15:48:12 +0000 |
| commit | 30659d43eb73272e20f2eb1d785a07ba3b553ed8 (patch) | |
| tree | ee2afd4d91ec8ae3038e1bf4c4cf4997d37741f8 /src/include/storage/proc.h | |
| parent | 2902c4c64070b796e51bc12ca31671c069a8345b (diff) | |
| download | postgresql-30659d43eb73272e20f2eb1d785a07ba3b553ed8.tar.gz | |
Transaction log manager core code.
It doesn't work currently but also don't break anything -:)
Diffstat (limited to 'src/include/storage/proc.h')
| -rw-r--r-- | src/include/storage/proc.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index d28e936b33..44a5fbd313 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -6,13 +6,14 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: proc.h,v 1.26 1999/09/24 00:25:27 tgl Exp $ + * $Id: proc.h,v 1.27 1999/09/27 15:48:06 vadim Exp $ * *------------------------------------------------------------------------- */ #ifndef _PROC_H_ #define _PROC_H_ +#include "access/xlog.h" #include "storage/lock.h" typedef struct @@ -47,7 +48,7 @@ typedef struct proc TransactionId xmin; /* minimal running XID as it was when we * were starting our xact: vacuum must not * remove tuples deleted by xid >= xmin ! */ - + XLogRecPtr logRec; LOCK *waitLock; /* Lock we're sleeping on ... */ int token; /* type of lock we sleeping for */ int holdLock; /* while holding these locks */ |
