summaryrefslogtreecommitdiff
path: root/mysys/errors.c
diff options
context:
space:
mode:
Diffstat (limited to 'mysys/errors.c')
-rw-r--r--mysys/errors.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/mysys/errors.c b/mysys/errors.c
index 45a77d8c129..d88540fe277 100644
--- a/mysys/errors.c
+++ b/mysys/errors.c
@@ -55,7 +55,11 @@ const char *globerrs[GLOBERRS]=
"Can't change permissions of the file '%s' (Errcode: %M)",
"Can't seek in file '%s' (Errcode: %M)",
"Can't change mode for file '%s' to 0x%lx (Errcode: %M)",
- "Warning: Can't copy ownership for file '%s' (Errcode: %M)"
+ "Warning: Can't copy ownership for file '%s' (Errcode: %M)",
+ "Failed to release memory pointer %p, %zu bytes (Errcode: %M)",
+ "Lock Pages in memory access rights required",
+ "Memcntl %s cmd %s error",
+ "Warning: Charset id '%d' csname '%s' trying to replace existing csname '%s'",
};
void init_glob_errs(void)
@@ -101,6 +105,10 @@ void init_glob_errs()
EE(EE_CANT_SEEK) = "Can't seek in file '%s' (Errcode: %M)";
EE(EE_CANT_CHMOD) = "Can't change mode for file '%s' to 0x%lx (Errcode: %M)";
EE(EE_CANT_COPY_OWNERSHIP)= "Warning: Can't copy ownership for file '%s' (Errcode: %M)";
+ EE(EE_BADMEMORYRELEASE)= "Failed to release memory pointer %p, %zu bytes (Errcode: %M)";
+ EE(EE_PERM_LOCK_MEMORY)= "Lock Pages in memory access rights required";
+ EE(EE_MEMCNTL) = "Memcntl %s cmd %s error";
+ EE(EE_DUPLICATE_CHARSET)= "Warning: Charset id %d trying to replace csname %s with %s";
}
#endif