mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
cd976d1637
fix undo of bitmap storage/ndb/include/kernel/signaldata/PgmanContinueB.hpp: Handle locked pages last storage/ndb/src/kernel/blocks/dblqh/DblqhMain.cpp: Remove LCP_PREPARE to pgman storage/ndb/src/kernel/blocks/dblqh/Makefile.am: Fix make of redo reader storage/ndb/src/kernel/blocks/dbtup/DbtupCommit.cpp: Fix assert storage/ndb/src/kernel/blocks/dbtup/DbtupDiskAlloc.cpp: Fix bitmap undo storage/ndb/src/kernel/blocks/lgman.cpp: Better lgman dump storage/ndb/src/kernel/blocks/pgman.cpp: LCP locked pages last storage/ndb/src/kernel/blocks/pgman.hpp: Handle locked pages last storage/ndb/src/kernel/blocks/tsman.cpp: Fix bitmap undo
37 lines
1 KiB
C++
37 lines
1 KiB
C++
/* Copyright (C) 2003 MySQL AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
#ifndef PGMAN_CONTINUEB_H
|
|
#define PGMAN_CONTINUEB_H
|
|
|
|
#include "SignalData.hpp"
|
|
|
|
class PgmanContinueB {
|
|
/**
|
|
* Sender(s)/Reciver(s)
|
|
*/
|
|
friend class Pgman;
|
|
private:
|
|
enum {
|
|
STATS_LOOP = 0,
|
|
BUSY_LOOP = 1,
|
|
CLEANUP_LOOP = 2,
|
|
LCP_LOOP = 3,
|
|
LCP_LOCKED = 4
|
|
};
|
|
};
|
|
|
|
#endif
|