Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZEO
Commits
564cc7a0
Commit
564cc7a0
authored
Oct 13, 1999
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed typo in fullgc that caused the time-change argument to be
ignored and an indeterminate value used instead.
parent
380c3981
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
12 deletions
+12
-12
src/Persistence/cPickleCache.c
src/Persistence/cPickleCache.c
+4
-4
src/ZODB/cPickleCache.c
src/ZODB/cPickleCache.c
+4
-4
src/persistent/cPickleCache.c
src/persistent/cPickleCache.c
+4
-4
No files found.
src/Persistence/cPickleCache.c
View file @
564cc7a0
...
...
@@ -82,7 +82,7 @@
attributions are listed in the accompanying credits file.
****************************************************************************/
static
char
*
what_string
=
"$Id: cPickleCache.c,v 1.3
0 1999/10/07 23:55:12
jim Exp $"
;
static
char
*
what_string
=
"$Id: cPickleCache.c,v 1.3
1 1999/10/13 12:35:19
jim Exp $"
;
#define ASSIGN(V,E) {PyObject *__e; __e=(E); Py_XDECREF(V); (V)=__e;}
#define UNLESS(E) if(!(E))
...
...
@@ -210,10 +210,10 @@ update_stats(ccobject *self, time_t now)
}
static
int
fullgc
(
ccobject
*
self
,
int
i
dt
)
fullgc
(
ccobject
*
self
,
int
dt
)
{
PyObject
*
key
,
*
v
;
int
i
,
dt
;
int
i
;
long
now
;
if
(
self
->
cache_size
<
1
)
return
0
;
...
...
@@ -675,7 +675,7 @@ void
initcPickleCache
()
{
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.3
0
$"
;
char
*
rev
=
"$Revision: 1.3
1
$"
;
Cctype
.
ob_type
=&
PyType_Type
;
...
...
src/ZODB/cPickleCache.c
View file @
564cc7a0
...
...
@@ -82,7 +82,7 @@
attributions are listed in the accompanying credits file.
****************************************************************************/
static
char
*
what_string
=
"$Id: cPickleCache.c,v 1.3
0 1999/10/07 23:55:12
jim Exp $"
;
static
char
*
what_string
=
"$Id: cPickleCache.c,v 1.3
1 1999/10/13 12:35:19
jim Exp $"
;
#define ASSIGN(V,E) {PyObject *__e; __e=(E); Py_XDECREF(V); (V)=__e;}
#define UNLESS(E) if(!(E))
...
...
@@ -210,10 +210,10 @@ update_stats(ccobject *self, time_t now)
}
static
int
fullgc
(
ccobject
*
self
,
int
i
dt
)
fullgc
(
ccobject
*
self
,
int
dt
)
{
PyObject
*
key
,
*
v
;
int
i
,
dt
;
int
i
;
long
now
;
if
(
self
->
cache_size
<
1
)
return
0
;
...
...
@@ -675,7 +675,7 @@ void
initcPickleCache
()
{
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.3
0
$"
;
char
*
rev
=
"$Revision: 1.3
1
$"
;
Cctype
.
ob_type
=&
PyType_Type
;
...
...
src/persistent/cPickleCache.c
View file @
564cc7a0
...
...
@@ -82,7 +82,7 @@
attributions are listed in the accompanying credits file.
****************************************************************************/
static
char
*
what_string
=
"$Id: cPickleCache.c,v 1.3
0 1999/10/07 23:55:12
jim Exp $"
;
static
char
*
what_string
=
"$Id: cPickleCache.c,v 1.3
1 1999/10/13 12:35:19
jim Exp $"
;
#define ASSIGN(V,E) {PyObject *__e; __e=(E); Py_XDECREF(V); (V)=__e;}
#define UNLESS(E) if(!(E))
...
...
@@ -210,10 +210,10 @@ update_stats(ccobject *self, time_t now)
}
static
int
fullgc
(
ccobject
*
self
,
int
i
dt
)
fullgc
(
ccobject
*
self
,
int
dt
)
{
PyObject
*
key
,
*
v
;
int
i
,
dt
;
int
i
;
long
now
;
if
(
self
->
cache_size
<
1
)
return
0
;
...
...
@@ -675,7 +675,7 @@ void
initcPickleCache
()
{
PyObject
*
m
,
*
d
;
char
*
rev
=
"$Revision: 1.3
0
$"
;
char
*
rev
=
"$Revision: 1.3
1
$"
;
Cctype
.
ob_type
=&
PyType_Type
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment