diff options
author | Fred Fish <fnf@specifix.com> | 1996-04-06 17:40:03 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1996-04-06 17:40:03 +0000 |
commit | a6b65627d4832109ddc4e4b3eb620607d8793a05 (patch) | |
tree | 3f7355aa93317246f5300acec1d2c99762a2592d | |
parent | eae8aa302e9a76565bca1cf381e76125e1d9ff89 (diff) | |
download | gdb-a6b65627d4832109ddc4e4b3eb620607d8793a05.zip gdb-a6b65627d4832109ddc4e4b3eb620607d8793a05.tar.gz gdb-a6b65627d4832109ddc4e4b3eb620607d8793a05.tar.bz2 |
* bcache.c (bcache): When size of chunk to cache is exactly equal to
BCACHE_MAXLENGTH, stash chunk as unique copy.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/bcache.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 655d566..24d80bc 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +Sat Apr 6 08:55:22 1996 Fred Fish <fnf@cygnus.com> + + * bcache.c (bcache): When size of chunk to cache is exactly equal to + BCACHE_MAXLENGTH, stash chunk as unique copy. + Sat Apr 6 00:46:26 1996 Fred Fish <fnf@cygnus.com> * symfile.c (INLINE_ADD_PSYMBOL): Remove ifdef. diff --git a/gdb/bcache.c b/gdb/bcache.c index c47893b..ae73c11 100644 --- a/gdb/bcache.c +++ b/gdb/bcache.c @@ -91,7 +91,7 @@ bcache (bytes, count, bcachep) struct hashlink **linkpp; struct hashlink ***hashtablepp; - if (count > BCACHE_MAXLENGTH) + if (count >= BCACHE_MAXLENGTH) { /* Rare enough to just stash unique copies */ location = (void *) obstack_alloc (&bcachep->cache, count); |