added QSE_XXX_EPERM to some files

This commit is contained in:
2016-12-17 17:38:03 +00:00
parent 5a642d0dd6
commit 662fdec270
18 changed files with 84 additions and 46 deletions

View File

@ -1185,8 +1185,8 @@ enum qse_awk_errnum_t
QSE_AWK_ENOMEM, /**< insufficient memory */
QSE_AWK_EINVAL, /**< invalid parameter or data */
QSE_AWK_EACCES, /**< access denied */
QSE_AWK_EPERM, /**< operation not permitted */
QSE_AWK_ENOSUP, /**< not supported */
QSE_AWK_ENOPER, /**< operation not allowed */
QSE_AWK_ENOENT, /**< '${0}' not found */
QSE_AWK_EEXIST, /**< '${0}' already exists */
QSE_AWK_EIOERR, /**< I/O error */

View File

@ -57,8 +57,10 @@ enum qse_httpd_errnum_t
QSE_HTTPD_ENOMEM,
QSE_HTTPD_EINVAL,
QSE_HTTPD_EACCES,
QSE_HTTPD_EPERM,
QSE_HTTPD_ENOENT,
QSE_HTTPD_EEXIST,
QSE_HTTPD_ENOTDIR,
QSE_HTTPD_EINTR,
QSE_HTTPD_EPIPE,
QSE_HTTPD_EAGAIN,

View File

@ -47,8 +47,10 @@ enum qse_upxd_errnum_t
QSE_UPXD_ENOMEM,
QSE_UPXD_EINVAL,
QSE_UPXD_EACCES,
QSE_UPXD_EPERM,
QSE_UPXD_ENOENT,
QSE_UPXD_EEXIST,
QSE_UPXD_ENOTDIR,
QSE_UPXD_EINTR,
QSE_UPXD_EAGAIN
};

View File

@ -49,8 +49,10 @@ enum qse_dir_errnum_t
QSE_DIR_ENOMEM, /**< out of memory */
QSE_DIR_EINVAL, /**< invalid parameter */
QSE_DIR_EACCES, /**< access denied */
QSE_DIR_EPERM, /**< operation not permitted */
QSE_DIR_ENOENT, /**< no such file */
QSE_DIR_EEXIST, /**< already exist */
QSE_DIR_ENOTDIR, /**< not a directory */
QSE_DIR_EINTR, /**< interrupted */
QSE_DIR_EPIPE, /**< broken pipe */
QSE_DIR_EAGAIN /**< resource not available temporarily */

View File

@ -87,8 +87,10 @@ enum qse_fio_errnum_t
QSE_FIO_ENOMEM, /**< out of memory */
QSE_FIO_EINVAL, /**< invalid parameter */
QSE_FIO_EACCES, /**< access denied */
QSE_FIO_EPERM, /**< operation not permitted */
QSE_FIO_ENOENT, /**< no such file */
QSE_FIO_EEXIST, /**< already exist */
QSE_FIO_ENOTDIR, /**< not a directory */
QSE_FIO_EINTR, /**< interrupted */
QSE_FIO_EPIPE, /**< broken pipe */
QSE_FIO_EAGAIN /**< resource not available temporarily */

View File

@ -58,6 +58,7 @@ enum qse_fs_errnum_t
QSE_FS_ENOMEM, /**< out of memory */
QSE_FS_EINVAL, /**< invalid parameter */
QSE_FS_EACCES, /**< access denied */
QSE_FS_EPERM, /**< operation not permitted */
QSE_FS_ENOENT, /**< no such file or directory */
QSE_FS_EEXIST, /**< already exist */
QSE_FS_EINTR, /**< interrupted */

View File

@ -40,20 +40,22 @@ typedef struct qse_mux_evt_t qse_mux_evt_t;
enum qse_mux_errnum_t
{
QSE_MUX_ENOERR = 0, /**< no error */
QSE_MUX_EOTHER, /**< other error */
QSE_MUX_ENOIMPL, /**< not implemented */
QSE_MUX_ESYSERR, /**< subsystem(system call) error */
QSE_MUX_EINTERN, /**< internal error */
QSE_MUX_ENOERR = 0, /**< no error */
QSE_MUX_EOTHER, /**< other error */
QSE_MUX_ENOIMPL, /**< not implemented */
QSE_MUX_ESYSERR, /**< subsystem(system call) error */
QSE_MUX_EINTERN, /**< internal error */
QSE_MUX_ENOMEM, /**< out of memory */
QSE_MUX_EINVAL, /**< invalid parameter */
QSE_MUX_EACCES, /**< access denied */
QSE_MUX_ENOENT, /**< no such file */
QSE_MUX_EEXIST, /**< already exist */
QSE_MUX_EINTR, /**< interrupted */
QSE_MUX_EPIPE, /**< broken pipe */
QSE_MUX_EAGAIN, /**< resource not available temporarily */
QSE_MUX_ENOMEM, /**< out of memory */
QSE_MUX_EINVAL, /**< invalid parameter */
QSE_MUX_EACCES, /**< access denied */
QSE_MUX_EPERM, /**< operation not permitted */
QSE_MUX_ENOENT, /**< no such file */
QSE_MUX_EEXIST, /**< already exist */
QSE_MUX_ENOTDIR, /**< not a directory */
QSE_MUX_EINTR, /**< interrupted */
QSE_MUX_EPIPE, /**< broken pipe */
QSE_MUX_EAGAIN, /**< resource not available temporarily */
};
typedef enum qse_mux_errnum_t qse_mux_errnum_t;

View File

@ -68,8 +68,10 @@ enum qse_nwio_errnum_t
QSE_NWIO_ENOMEM, /**< out of memory */
QSE_NWIO_EINVAL, /**< invalid parameter */
QSE_NWIO_EACCES, /**< access denied */
QSE_NWIO_EPERM, /**< operation not permitted */
QSE_NWIO_ENOENT, /**< no such file */
QSE_NWIO_EEXIST, /**< already exist */
QSE_NWIO_ENOTDIR, /**< not a directory */
QSE_NWIO_EINTR, /**< interrupted */
QSE_NWIO_ETMOUT, /**< timed out */
QSE_NWIO_EPIPE, /**< broken pipe */

View File

@ -152,8 +152,10 @@ enum qse_pio_errnum_t
QSE_PIO_ENOMEM, /**< out of memory */
QSE_PIO_EINVAL, /**< invalid parameter */
QSE_PIO_EACCES, /**< access denied */
QSE_PIO_EPERM, /**< operation not permitted */
QSE_PIO_ENOENT, /**< no such file */
QSE_PIO_EEXIST, /**< already exist */
QSE_PIO_ENOTDIR, /**< not a directory */
QSE_PIO_EINTR, /**< interrupted */
QSE_PIO_EPIPE, /**< broken pipe */
QSE_PIO_EAGAIN, /**< resource not available temporarily */

View File

@ -79,8 +79,10 @@ enum qse_sio_errnum_t
QSE_SIO_ENOMEM, /**< out of memory */
QSE_SIO_EINVAL, /**< invalid parameter */
QSE_SIO_EACCES, /**< access denied */
QSE_SIO_EPERM, /**< operation not permitted */
QSE_SIO_ENOENT, /**< no such file */
QSE_SIO_EEXIST, /**< already exist */
QSE_SIO_ENOTDIR, /**< not a directory */
QSE_SIO_EINTR, /**< interrupted */
QSE_SIO_EPIPE, /**< broken pipe */
QSE_SIO_EAGAIN, /**< resource not available temporarily */

View File

@ -47,6 +47,7 @@ enum qse_tio_errnum_t
QSE_TIO_ENOMEM, /**< out of memory */
QSE_TIO_EINVAL, /**< invalid parameter */
QSE_TIO_EACCES, /**< access denied */
QSE_TIO_EPERM, /**< operation not permitted */
QSE_TIO_ENOENT, /**< no such file */
QSE_TIO_ENOSPC, /**< no more space */
QSE_TIO_EILSEQ, /**< illegal sequence */