1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-07-15 01:04:37 +02:00

Add KernelError to report miscellaneous kernel errors.

This commit is contained in:
David Steele
2018-11-11 18:07:56 -05:00
parent 257df96b12
commit 72ea47bfb3
6 changed files with 14 additions and 0 deletions

View File

@ -167,6 +167,8 @@ use constant ERROR_FILE_INFO => 98;
push @EXPORT, qw(ERROR_FILE_INFO);
use constant ERROR_JSON_FORMAT => 99;
push @EXPORT, qw(ERROR_JSON_FORMAT);
use constant ERROR_KERNEL => 100;
push @EXPORT, qw(ERROR_KERNEL);
use constant ERROR_RUNTIME => 122;
push @EXPORT, qw(ERROR_RUNTIME);
use constant ERROR_INVALID => 123;