summaryrefslogtreecommitdiff
path: root/storage/perfschema/pfs.h
diff options
context:
space:
mode:
authorKonstantin Osipov <kostja@sun.com>2010-02-04 20:34:15 +0300
committerKonstantin Osipov <kostja@sun.com>2010-02-04 20:34:15 +0300
commita9e22b589677df9035c73e61b80be0fc54d175a5 (patch)
treebf6e8bd7de75f7f9ec6dbf8903d150ed3511a6da /storage/perfschema/pfs.h
parent1edca1d7ef6a77d406ea2c1bcaf5d9aff2f4c04c (diff)
parent8dfc3fbbab0dc7b3be98a47423ae74a6b4933864 (diff)
downloadmariadb-git-a9e22b589677df9035c73e61b80be0fc54d175a5.tar.gz
Merge next-mr -> next-4284-merge.
Diffstat (limited to 'storage/perfschema/pfs.h')
-rw-r--r--storage/perfschema/pfs.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/storage/perfschema/pfs.h b/storage/perfschema/pfs.h
new file mode 100644
index 00000000000..7af59ffce57
--- /dev/null
+++ b/storage/perfschema/pfs.h
@@ -0,0 +1,34 @@
+/* Copyright (C) 2008-2009 Sun Microsystems, Inc
+
+ 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+
+#ifndef PFS_H
+#define PFS_H
+
+/**
+ @file storage/perfschema/pfs.h
+ Performance schema instrumentation (declarations).
+*/
+
+#define HAVE_PSI_1
+
+#include <mysql_priv.h>
+#include <mysql/psi/psi.h>
+
+extern struct PSI_bootstrap PFS_bootstrap;
+extern pthread_key(PFS_thread*, THR_PFS);
+extern bool THR_PFS_initialized;
+
+#endif
+