|
|
@ -57,7 +57,8 @@ const char *globerrs[GLOBERRS]= |
|
|
|
"Can't change mode for file '%s' to 0x%lx (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" |
|
|
|
"Lock Pages in memory access rights required", |
|
|
|
"Memcntl %s cmd %s error" |
|
|
|
}; |
|
|
|
|
|
|
|
void init_glob_errs(void) |
|
|
@ -105,6 +106,7 @@ void init_glob_errs() |
|
|
|
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"; |
|
|
|
} |
|
|
|
#endif |
|
|
|
|
|
|
|