mirror of
https://github.com/MariaDB/server.git
synced 2026-04-29 11:45:32 +02:00
workaround for sun compiler on sol9x86
This commit is contained in:
parent
0fc34660bb
commit
f36c4a9378
1 changed files with 2 additions and 2 deletions
|
|
@ -83,14 +83,14 @@ class TC_LOG_DUMMY: public TC_LOG // use it to disable the logging
|
|||
#ifdef HAVE_MMAP
|
||||
class TC_LOG_MMAP: public TC_LOG
|
||||
{
|
||||
private:
|
||||
|
||||
public: // only to keep Sun Forte on sol9x86 happy
|
||||
typedef enum {
|
||||
POOL, // page is in pool
|
||||
ERROR, // last sync failed
|
||||
DIRTY // new xids added since last sync
|
||||
} PAGE_STATE;
|
||||
|
||||
private:
|
||||
typedef struct st_page {
|
||||
struct st_page *next; // page a linked in a fifo queue
|
||||
my_xid *start, *end; // usable area of a page
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue