Commit d717ea48 authored by Jim Fulton's avatar Jim Fulton

Changed persistent object header layout. This will require recompile

of all C Persistent objects.
parent 2e35857c
/* /*
$Id: cPersistence.h,v 1.8 1997/12/10 22:19:24 jim Exp $ $Id: cPersistence.h,v 1.9 1997/12/15 15:55:16 jim Exp $
Definitions to facilitate making cPersistent subclasses in C. Definitions to facilitate making cPersistent subclasses in C.
...@@ -56,6 +56,10 @@ ...@@ -56,6 +56,10 @@
$Log: cPersistence.h,v $ $Log: cPersistence.h,v $
Revision 1.9 1997/12/15 15:55:16 jim
Changed persistent object header layout. This will require recompile
of all C Persistent objects.
Revision 1.8 1997/12/10 22:19:24 jim Revision 1.8 1997/12/10 22:19:24 jim
Added PER_USE macro. Added PER_USE macro.
...@@ -93,8 +97,8 @@ ...@@ -93,8 +97,8 @@
#define cPersistent_HEAD PyObject_HEAD \ #define cPersistent_HEAD PyObject_HEAD \
PyObject *jar; \ PyObject *jar; \
int oid; \ int oid; \
int state; \
time_t atime; \ time_t atime; \
signed char state; \
#define cPersistent_GHOST_STATE -1 #define cPersistent_GHOST_STATE -1
......
/* /*
$Id: cPersistence.h,v 1.8 1997/12/10 22:19:24 jim Exp $ $Id: cPersistence.h,v 1.9 1997/12/15 15:55:16 jim Exp $
Definitions to facilitate making cPersistent subclasses in C. Definitions to facilitate making cPersistent subclasses in C.
...@@ -56,6 +56,10 @@ ...@@ -56,6 +56,10 @@
$Log: cPersistence.h,v $ $Log: cPersistence.h,v $
Revision 1.9 1997/12/15 15:55:16 jim
Changed persistent object header layout. This will require recompile
of all C Persistent objects.
Revision 1.8 1997/12/10 22:19:24 jim Revision 1.8 1997/12/10 22:19:24 jim
Added PER_USE macro. Added PER_USE macro.
...@@ -93,8 +97,8 @@ ...@@ -93,8 +97,8 @@
#define cPersistent_HEAD PyObject_HEAD \ #define cPersistent_HEAD PyObject_HEAD \
PyObject *jar; \ PyObject *jar; \
int oid; \ int oid; \
int state; \
time_t atime; \ time_t atime; \
signed char state; \
#define cPersistent_GHOST_STATE -1 #define cPersistent_GHOST_STATE -1
......
/* /*
$Id: cPersistence.h,v 1.8 1997/12/10 22:19:24 jim Exp $ $Id: cPersistence.h,v 1.9 1997/12/15 15:55:16 jim Exp $
Definitions to facilitate making cPersistent subclasses in C. Definitions to facilitate making cPersistent subclasses in C.
...@@ -56,6 +56,10 @@ ...@@ -56,6 +56,10 @@
$Log: cPersistence.h,v $ $Log: cPersistence.h,v $
Revision 1.9 1997/12/15 15:55:16 jim
Changed persistent object header layout. This will require recompile
of all C Persistent objects.
Revision 1.8 1997/12/10 22:19:24 jim Revision 1.8 1997/12/10 22:19:24 jim
Added PER_USE macro. Added PER_USE macro.
...@@ -93,8 +97,8 @@ ...@@ -93,8 +97,8 @@
#define cPersistent_HEAD PyObject_HEAD \ #define cPersistent_HEAD PyObject_HEAD \
PyObject *jar; \ PyObject *jar; \
int oid; \ int oid; \
int state; \
time_t atime; \ time_t atime; \
signed char state; \
#define cPersistent_GHOST_STATE -1 #define cPersistent_GHOST_STATE -1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment