- Revision
- 11198
- Author
- vajda
- Date
- 2006-07-19 05:42:31 -0700 (Wed, 19 Jul 2006)
Log Message
- added COMMITREQ view flag
- version 0.6-33
- version 0.6-33
Modified Paths
Diff
Modified: trunk/internal/chandlerdb/Makefile (11197 => 11198)
--- trunk/internal/chandlerdb/Makefile 2006-07-18 23:37:55 UTC (rev 11197) +++ trunk/internal/chandlerdb/Makefile 2006-07-19 12:42:31 UTC (rev 11198) @@ -1,5 +1,5 @@ -RELVER=0.6-$(BRANCH_REV_PREFIX)32 +RELVER=0.6-$(BRANCH_REV_PREFIX)33 CHANDLERDB=$(INTERNAL)/chandlerdb DB_VER=4.4 SRC=""
Modified: trunk/internal/chandlerdb/chandlerdb/persistence/view.c (11197 => 11198)
--- trunk/internal/chandlerdb/chandlerdb/persistence/view.c 2006-07-18 23:37:55 UTC (rev 11197) +++ trunk/internal/chandlerdb/chandlerdb/persistence/view.c 2006-07-19 12:42:31 UTC (rev 11198) @@ -1004,6 +1004,7 @@ PyDict_SetItemString_Int(dict, "RECORDING", RECORDING); PyDict_SetItemString_Int(dict, "REFRESHING", REFRESHING); PyDict_SetItemString_Int(dict, "VERIFY", VERIFY); + PyDict_SetItemString_Int(dict, "COMMITREQ", COMMITREQ); refresh_NAME = PyString_FromString("refresh"); delete_NAME = PyString_FromString("delete");
Modified: trunk/internal/chandlerdb/chandlerdb/persistence/view.h (11197 => 11198)
--- trunk/internal/chandlerdb/chandlerdb/persistence/view.h 2006-07-18 23:37:55 UTC (rev 11197) +++ trunk/internal/chandlerdb/chandlerdb/persistence/view.h 2006-07-19 12:42:31 UTC (rev 11198) @@ -35,22 +35,23 @@ } t_view; enum { - OPEN = 0x0001, - REFCOUNTED = 0x0002, - LOADING = 0x0004, - COMMITTING = 0x0008, - /* FDIRTY = 0x0010, from CItem */ - RECORDING = 0x0020, - MONITORING = 0x0040, - /* STALE = 0x0080, from CItem */ - REFRESHING = 0x0100, - /* CDIRTY = 0x0200, from CItem */ - DEFERDEL = 0x0400, - BGNDINDEX = 0x0800, - VERIFY = 0x1000, - DEBUG = 0x2000, - RAMDB = 0x4000, - CLOSED = 0x8000, + OPEN = 0x00000001, + REFCOUNTED = 0x00000002, + LOADING = 0x00000004, + COMMITTING = 0x00000008, + /* FDIRTY = 0x00000010, from CItem */ + RECORDING = 0x00000020, + MONITORING = 0x00000040, + /* STALE = 0x00000080, from CItem */ + REFRESHING = 0x00000100, + /* CDIRTY = 0x00000200, from CItem */ + DEFERDEL = 0x00000400, + BGNDINDEX = 0x00000800, + VERIFY = 0x00001000, + DEBUG = 0x00002000, + RAMDB = 0x00004000, + CLOSED = 0x00008000, + COMMITREQ = 0x00010000, /* * merge flags from CItem
_______________________________________________ Commits mailing list [email protected] http://lists.osafoundation.org/mailman/listinfo/commits
