diff options
author | unknown <guilhem@gbichot3.local> | 2006-12-03 17:06:27 +0100 |
---|---|---|
committer | unknown <guilhem@gbichot3.local> | 2006-12-03 17:06:27 +0100 |
commit | b72903fe54cf83c3dcbec7e3532e23bf946249ba (patch) | |
tree | 4323db3f4d1941e5e8924912ffafbe60a8c4bdc5 /mysys/lf_hash.c | |
parent | 8993dab52dbacff5cc220b80e1679cd99dc2235c (diff) | |
download | mariadb-git-b72903fe54cf83c3dcbec7e3532e23bf946249ba.tar.gz |
Maria:
* merging changes done to the key cache since May 2006 into Maria
* enabling two small enough page cache's unit tests by default
* fix to have non-buffered output in unit tests (to not have a false
timeout killing in pushbuild) (patch given by Serg)
* removing some warnings of gcc -ansi
include/lf.h:
getting rid of "warning: ISO C does not allow extra `;' outside of a function"
(gcc -ansi)
mysys/lf_hash.c:
getting rid of "warning: ISO C does not allow extra `;' outside of a function"
(gcc -ansi)
mysys/mf_pagecache.c:
Cosmetic changes to minimize the diff with the key cache.
#define PAGECACHE_DEBUG_LOG is not needed (just define PAGECACHE_DEBUG
if you want) (this change removes "warning: 'pagecache_debug_print'
declared `static' but never defined").
Importing changes made to mf_keycache.c since May 2006, into the page cache.
Disabling online resizing in the page cache.
Fix for "warning: ISO C90 forbids mixed declarations and code".
unittest/mysys/Makefile.am:
Of the page cache's unit tests, two are small enough to run on pushbuild,
renaming them to a -t suffix.
unittest/mytap/tap.c:
pushbuild kills a test after seeing no output from it for 10 minutes;
so we set the mytap framework to not buffer output (patch given by
Serg) so that output is seen more frequently and not "all at the end
of the test".
Diffstat (limited to 'mysys/lf_hash.c')
-rw-r--r-- | mysys/lf_hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/lf_hash.c b/mysys/lf_hash.c index 7e61ef690c6..e13c5f64f54 100644 --- a/mysys/lf_hash.c +++ b/mysys/lf_hash.c @@ -28,7 +28,7 @@ #include <my_bit.h> #include <lf.h> -LF_REQUIRE_PINS(3); +LF_REQUIRE_PINS(3) /* An element of the list */ typedef struct { |