summaryrefslogtreecommitdiff
path: root/storage/ndb/include/kernel/BlockNumbers.h
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2014-08-21 18:11:46 +0200
committerSergei Golubchik <serg@mariadb.org>2014-10-11 18:53:06 +0200
commit7f5e51b940d65cf541403a50af74163b9aed5cb8 (patch)
treee540d3cd4d678cd276a9d496490ac5e527f30a78 /storage/ndb/include/kernel/BlockNumbers.h
parent57dd1f6f3fcbc7a46e1b3e71257987315f7aa687 (diff)
downloadmariadb-git-7f5e51b940d65cf541403a50af74163b9aed5cb8.tar.gz
MDEV-34 delete storage/ndb and sql/*ndb* (and collateral changes)
remove: * NDB from everywhere * IM from mtr-v1 * packaging/rpm-oel and packaging/rpm-uln * few unused spec files * plug.in file * .bzrignore
Diffstat (limited to 'storage/ndb/include/kernel/BlockNumbers.h')
-rw-r--r--storage/ndb/include/kernel/BlockNumbers.h88
1 files changed, 0 insertions, 88 deletions
diff --git a/storage/ndb/include/kernel/BlockNumbers.h b/storage/ndb/include/kernel/BlockNumbers.h
deleted file mode 100644
index 1c02dee4f1f..00000000000
--- a/storage/ndb/include/kernel/BlockNumbers.h
+++ /dev/null
@@ -1,88 +0,0 @@
-/* Copyright (c) 2003-2005 MySQL AB
- Use is subject to license terms
-
- 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; version 2 of the License.
-
- 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
-
-#ifndef BLOCK_NUMBERS_H
-#define BLOCK_NUMBERS_H
-
-#include <kernel_types.h>
-#include <RefConvert.hpp>
-
-/* 240 */
-#define MIN_API_BLOCK_NO 0x8000
-
-/* 2047 */
-#define API_PACKED 0x07ff
-
-/* 4002 */
-#define API_CLUSTERMGR 0x0FA2
-
-#define BACKUP 0xF4
-#define DBTC 0xF5
-#define DBDIH 0xF6
-#define DBLQH 0xF7
-#define DBACC 0xF8
-#define DBTUP 0xF9
-#define DBDICT 0xFA
-#define NDBCNTR 0xFB
-#define CNTR 0xFB
-#define QMGR 0xFC
-#define NDBFS 0xFD
-#define CMVMI 0xFE
-#define TRIX 0xFF
-#define DBUTIL 0x100
-#define SUMA 0x101
-#define DBTUX 0x102
-#define TSMAN 0x103
-#define LGMAN 0x104
-#define PGMAN 0x105
-#define RESTORE 0x106
-
-const BlockReference BACKUP_REF = numberToRef(BACKUP, 0);
-const BlockReference DBTC_REF = numberToRef(DBTC, 0);
-const BlockReference DBDIH_REF = numberToRef(DBDIH, 0);
-const BlockReference DBLQH_REF = numberToRef(DBLQH, 0);
-const BlockReference DBACC_REF = numberToRef(DBACC, 0);
-const BlockReference DBTUP_REF = numberToRef(DBTUP, 0);
-const BlockReference DBDICT_REF = numberToRef(DBDICT, 0);
-const BlockReference NDBCNTR_REF = numberToRef(NDBCNTR, 0);
-const BlockReference QMGR_REF = numberToRef(QMGR, 0);
-const BlockReference NDBFS_REF = numberToRef(NDBFS, 0);
-const BlockReference CMVMI_REF = numberToRef(CMVMI, 0);
-const BlockReference TRIX_REF = numberToRef(TRIX, 0);
-const BlockReference DBUTIL_REF = numberToRef(DBUTIL, 0);
-const BlockReference SUMA_REF = numberToRef(SUMA, 0);
-const BlockReference DBTUX_REF = numberToRef(DBTUX, 0);
-const BlockReference TSMAN_REF = numberToRef(TSMAN, 0);
-const BlockReference LGMAN_REF = numberToRef(LGMAN, 0);
-const BlockReference PGMAN_REF = numberToRef(PGMAN, 0);
-const BlockReference RESTORE_REF = numberToRef(RESTORE, 0);
-
-const BlockNumber MIN_BLOCK_NO = BACKUP;
-const BlockNumber MAX_BLOCK_NO = RESTORE;
-const BlockNumber NO_OF_BLOCKS = (MAX_BLOCK_NO - MIN_BLOCK_NO + 1);
-
-/**
- * Used for printing and stuff
- */
-struct BlockName {
- const char* name;
- BlockNumber number;
-};
-
-extern const BlockName BlockNames[];
-extern const BlockNumber NO_OF_BLOCK_NAMES;
-
-#endif