From 7d112df94f97cec372bdb7f15eb265ded908da50 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Tue, 2 Nov 2004 02:11:35 +0000 Subject: [PATCH] Bump-up block size. --- Modules/collectionsmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/collectionsmodule.c b/Modules/collectionsmodule.c index f9eac8e1623..10b08f941f9 100644 --- a/Modules/collectionsmodule.c +++ b/Modules/collectionsmodule.c @@ -13,7 +13,7 @@ * length of a cache line. */ -#define BLOCKLEN 46 +#define BLOCKLEN 62 #define CENTER ((BLOCKLEN - 1) / 2) /* A `dequeobject` is composed of a doubly-linked list of `block` nodes.