summaryrefslogtreecommitdiff
path: root/include/mysys_err.h
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2001-05-31 12:18:53 +0300
committermonty@hundin.mysql.fi <>2001-05-31 12:18:53 +0300
commit6a387c7cdf57dfe7f9a136e31ffe463d5cd28efc (patch)
treec974b291b6b89be912a6aa935ac1185bf62dac53 /include/mysys_err.h
parentacf598c50cb84b17d69c576d54e92c4244f0e778 (diff)
downloadmariadb-git-6a387c7cdf57dfe7f9a136e31ffe463d5cd28efc.tar.gz
Added functions for symbolic link handling to make it possible to
backport things from 4.0. This is safe as the functions are not used! Fixed bug in new mutex handling in InnoDB Make allow_break() and dont_break() defines.
Diffstat (limited to 'include/mysys_err.h')
-rw-r--r--include/mysys_err.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/mysys_err.h b/include/mysys_err.h
index b379f5bcbc9..2d23ead36b6 100644
--- a/include/mysys_err.h
+++ b/include/mysys_err.h
@@ -22,7 +22,7 @@ extern "C" {
#endif
#define GLOB 0 /* Error maps */
-#define GLOBERRS 24 /* Max number of error messages in map's */
+#define GLOBERRS 27 /* Max number of error messages in map's */
#define EE(X) globerrs[ X ] /* Defines to add error to right map */
extern const char * NEAR globerrs[]; /* my_error_messages is here */
@@ -51,6 +51,9 @@ extern const char * NEAR globerrs[]; /* my_error_messages is here */
#define EE_CANT_MKDIR 21
#define EE_UNKNOWN_CHARSET 22
#define EE_OUT_OF_FILERESOURCES 23
+#define EE_CANT_READLINK 24
+#define EE_CANT_SYMLINK 25
+#define EE_REALPATH 26
#ifdef __cplusplus
}