From: Kevin Day Date: Wed, 26 Nov 2025 23:28:18 +0000 (-0600) Subject: Update: Make more socket error codes more granular, add additional status codes,... X-Git-Tag: 0.8.0~79 X-Git-Url: https://www.git.kevux.org/?a=commitdiff_plain;h=2ab05aab849d30105ab06f8fbe2aabb76f7dd0f9;p=fll Update: Make more socket error codes more granular, add additional status codes, rename some others. This particularly adds an underscore between file and system to be more proper. --- diff --git a/level_0/f_directory/c/directory.h b/level_0/f_directory/c/directory.h index b924b0a..6605cca 100644 --- a/level_0/f_directory/c/directory.h +++ b/level_0/f_directory/c/directory.h @@ -63,7 +63,7 @@ extern "C" { * F_directory_link_max (with error bit) max links limit reached or exceeded. * F_file_found (with error bit) of a directory aleady exists at the path. * F_file_found_not (with error bit) if a file within the path is not found (such as a broken symbolic link). - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_name (with error bit) on path name error. @@ -99,7 +99,7 @@ extern "C" { * F_directory_link_max (with error bit) max links limit reached or exceeded. * F_file_found (with error bit) of a directory aleady exists at the path. * F_file_found_not (with error bit) if a file within the path is not found (such as a broken symbolic link). - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_name (with error bit) on path name error. @@ -646,8 +646,8 @@ extern "C" { * F_directory_descriptor (with error bit) for bad directory descriptor for at_id. * F_file_found (with error bit) if a file aleady exists at the path. * F_file_open_max (with error bit) when system-wide max open files is reached. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. - * F_filesystem_quota_reached (with error bit) quota reached of file system is out of space. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_reached (with error bit) quota reached of file system is out of space. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. @@ -690,8 +690,8 @@ extern "C" { * F_directory_descriptor (with error bit) for bad directory descriptor for at_id. * F_file_found (with error bit) if a file aleady exists at the path (when calling utimensat()). * F_file_open_max (with error bit) when system-wide max open files is reached. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. - * F_filesystem_quota_reached (with error bit) quota reached of file system is out of space. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_reached (with error bit) quota reached of file system is out of space. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. diff --git a/level_0/f_directory/c/private-directory.c b/level_0/f_directory/c/private-directory.c index 557dcad..c5a469e 100644 --- a/level_0/f_directory/c/private-directory.c +++ b/level_0/f_directory/c/private-directory.c @@ -10,7 +10,7 @@ extern "C" { if (mkdir(path.string, mode) < 0) { if (errno == EACCES) return F_status_set_error(F_access_denied); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EEXIST) return F_status_set_error(F_file_found); if (errno == EFAULT) return F_status_set_error(F_buffer); if (errno == EINVAL) return F_status_set_error(F_parameter); @@ -37,7 +37,7 @@ extern "C" { if (mkdirat(at_id, path.string, mode) < 0) { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EBADF) return F_status_set_error(F_directory_descriptor); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EEXIST) return F_status_set_error(F_file_found); if (errno == EFAULT) return F_status_set_error(F_buffer); if (errno == EINVAL) return F_status_set_error(F_parameter); diff --git a/level_0/f_directory/c/private-directory.h b/level_0/f_directory/c/private-directory.h index 6703833..54083bf 100644 --- a/level_0/f_directory/c/private-directory.h +++ b/level_0/f_directory/c/private-directory.h @@ -32,7 +32,7 @@ extern "C" { * F_directory_link_max (with error bit) max links limit reached or exceeded. * F_file_found (with error bit) of a directory aleady exists at the path. * F_file_found_not (with error bit) if a file within the path is not found (such as a broken symbolic link). - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_name (with error bit) on path name error. @@ -70,7 +70,7 @@ extern "C" { * F_directory_link_max (with error bit) max links limit reached or exceeded. * F_file_found (with error bit) of a directory aleady exists at the path. * F_file_found_not (with error bit) if a file within the path is not found (such as a broken symbolic link). - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_name (with error bit) on path name error. diff --git a/level_0/f_directory/tests/unit/c/test-directory-create.c b/level_0/f_directory/tests/unit/c/test-directory-create.c index 4e82e35..7066f4d 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-create.c +++ b/level_0/f_directory/tests/unit/c/test-directory-create.c @@ -32,7 +32,7 @@ void test__f_directory_create__fails(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_parameter, diff --git a/level_0/f_directory/tests/unit/c/test-directory-create_at.c b/level_0/f_directory/tests/unit/c/test-directory-create_at.c index 099a989..da91987 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-create_at.c +++ b/level_0/f_directory/tests/unit/c/test-directory-create_at.c @@ -34,7 +34,7 @@ void test__f_directory_create_at__fails(void **state) { f_status_t statuss[] = { F_access_denied, F_directory_descriptor, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_parameter, diff --git a/level_0/f_directory/tests/unit/c/test-directory-touch.c b/level_0/f_directory/tests/unit/c/test-directory-touch.c index 58900a1..6891bbe 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-touch.c +++ b/level_0/f_directory/tests/unit/c/test-directory-touch.c @@ -67,7 +67,7 @@ void test__f_directory_touch__fails(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_parameter, diff --git a/level_0/f_directory/tests/unit/c/test-directory-touch_at.c b/level_0/f_directory/tests/unit/c/test-directory-touch_at.c index 561e7ec..a18908f 100644 --- a/level_0/f_directory/tests/unit/c/test-directory-touch_at.c +++ b/level_0/f_directory/tests/unit/c/test-directory-touch_at.c @@ -67,7 +67,7 @@ void test__f_directory_touch_at__fails(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_parameter, diff --git a/level_0/f_file/c/file.c b/level_0/f_file/c/file.c index f55acd3..7cfdc2c 100644 --- a/level_0/f_file/c/file.c +++ b/level_0/f_file/c/file.c @@ -323,7 +323,7 @@ extern "C" { if (mkfifoat(directory.id, path.string, mode) < 0) { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EBADF) return F_status_set_error(F_directory_descriptor); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EEXIST) return F_status_set_error(F_file_found); if (errno == ENAMETOOLONG) return F_status_set_error(F_name); if (errno == ENOENT) return F_status_set_error(F_file_found_not); @@ -542,7 +542,7 @@ extern "C" { if (link(target.string, point.string) < 0) { if (errno == EACCES) return F_status_set_error(F_access_denied); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EEXIST) return F_status_set_error(F_file_found); if (errno == ENAMETOOLONG) return F_status_set_error(F_name); if (errno == EFAULT) return F_status_set_error(F_buffer); @@ -574,7 +574,7 @@ extern "C" { if (linkat(file_target.id, target.string, file_point.id, point.string, flag) < 0) { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EBADF) return F_status_set_error(F_file_descriptor); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EEXIST) return F_status_set_error(F_file_found); if (errno == EFAULT) return F_status_set_error(F_buffer); if (errno == EFBIG || errno == EOVERFLOW) return F_status_set_error(F_number_overflow); @@ -1738,7 +1738,7 @@ extern "C" { if (rename(source.string, destination.string) < 0) { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EBUSY) return F_status_set_error(F_busy); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EFAULT) return F_status_set_error(F_buffer); if (errno == EINVAL) return F_status_set_error(F_parameter); if (errno == EISDIR) return F_status_set_error(F_file_type_directory); @@ -1776,7 +1776,7 @@ extern "C" { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EBADF) return F_status_set_error(F_directory_descriptor); if (errno == EBUSY) return F_status_set_error(F_busy); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EFAULT) return F_status_set_error(F_buffer); if (errno == EINVAL) return F_status_set_error(F_parameter); if (errno == EISDIR) return F_status_set_error(F_file_type_directory); diff --git a/level_0/f_file/c/file.h b/level_0/f_file/c/file.h index af9a1a9..8d75672 100644 --- a/level_0/f_file/c/file.h +++ b/level_0/f_file/c/file.h @@ -160,7 +160,7 @@ extern "C" { * F_file_open_max (with error bit) when system-wide max open files is reached. * F_file_read (with error bit) on file read error. * F_file_write (with error bit) on file write error. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. @@ -192,7 +192,7 @@ extern "C" { * F_file_close (with error bit) if fclose() failed for any other reason. * F_file_descriptor (with error bit) if file descriptor is invalid. * F_file_synchronize (with error bit) on flush failure. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). @@ -218,7 +218,7 @@ extern "C" { * F_file_close (with error bit) if fclose() failed for any other reason. * F_file_descriptor (with error bit) if file descriptor is invalid. * F_file_synchronize (with error bit) on flush failure. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). @@ -269,7 +269,7 @@ extern "C" { * F_file_open_max (with error bit) when system-wide max open files is reached. * F_file_read (with error bit) on file read error. * F_file_write (with error bit) on file write error. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. @@ -308,7 +308,7 @@ extern "C" { * F_directory_not (with error bit) if a supposed directory in path is not actually a directory. * F_file_found (with error bit) if a file was found while exclusive is TRUE. * F_file_open_max (with error bit) when system-wide max open files is reached. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. @@ -352,7 +352,7 @@ extern "C" { * F_directory_not (with error bit) if a supposed directory in path is not actually a directory. * F_file_found (with error bit) if a file was found while exclusive is TRUE. * F_file_open_max (with error bit) when system-wide max open files is reached. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. @@ -393,7 +393,7 @@ extern "C" { * F_access_denied (with error bit) on access denied. * F_directory_not (with error bit) if a supposed directory in path is not actually a directory. * F_file_found (with error bit) if a file was found while exclusive is TRUE. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_name (with error bit) on path name error. @@ -437,7 +437,7 @@ extern "C" { * F_directory_descriptor (with error bit) when at_id is not a valid file descriptor (at_id must point to a directory). * F_directory_not (with error bit) if a supposed directory in path is not actually a directory. * F_file_found (with error bit) if a file was found while exclusive is TRUE. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_name (with error bit) on path name error. @@ -469,7 +469,7 @@ extern "C" { * F_access_denied (with error bit) on access denied. * F_directory_not (with error bit) if a supposed directory in path is not actually a directory. * F_file_found (with error bit) if a file was found while exclusive is TRUE. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or ififos are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or ififos are exhausted. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_name (with error bit) on path name error. @@ -504,7 +504,7 @@ extern "C" { * F_directory_descriptor (with error bit) when at_id is not a valid file descriptor (at_id must point to a directory). * F_directory_not (with error bit) if a supposed directory in path is not actually a directory. * F_file_found (with error bit) if a file was found while exclusive is TRUE. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or ififos are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or ififos are exhausted. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_name (with error bit) on path name error. @@ -538,7 +538,7 @@ extern "C" { * F_access_denied (with error bit) on access denied. * F_directory_not (with error bit) if a supposed directory in path is not actually a directory. * F_file_found (with error bit) if a file was found while exclusive is TRUE. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_name (with error bit) on path name error. @@ -576,7 +576,7 @@ extern "C" { * F_directory_descriptor (with error bit) when at_id is not a valid file descriptor (at_id must point to a directory). * F_directory_not (with error bit) if a supposed directory in path is not actually a directory. * F_file_found (with error bit) if a file was found while exclusive is TRUE. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_name (with error bit) on path name error. @@ -689,7 +689,7 @@ extern "C" { * F_file_descriptor_not if file.id is -1. * * F_file_descriptor (with error bit) if file descriptor is invalid. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_input_output (with error bit) on I/O error. * F_parameter (with error bit) if a parameter is invalid. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). @@ -839,7 +839,7 @@ extern "C" { * F_busy (with error bit) if file system is too busy to perform write. * F_file_found (with error bit) if a file aleady exists at the path. * F_file_found_not (with error bit) if a parent path in point does not exist or is a broken symlink. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_directory_not (with error bit) if a supposed directory in path is not actually a directory. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. @@ -882,7 +882,7 @@ extern "C" { * F_directory_not (with error bit) if a supposed directory in path is not actually a directory. * F_file_found (with error bit) if a file aleady exists at the path. * F_file_found_not (with error bit) if a parent path in point does not exist or is a broken symlink. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. @@ -919,7 +919,7 @@ extern "C" { * F_directory_not (with error bit) if a supposed directory in path is not actually a directory. * F_file_found (with error bit) if a file aleady exists at the path. * F_file_found_not (with error bit) if a parent path in point does not exist or is a broken symlink. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. @@ -965,7 +965,7 @@ extern "C" { * F_file_descriptor (with error bit) if file descriptor is invalid. * F_file_found (with error bit) if a file aleady exists at the path. * F_file_found_not (with error bit) if a parent path in point does not exist or is a broken symlink. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. @@ -1484,7 +1484,7 @@ extern "C" { * F_file_found_not (with error bit) if the file was not found. * F_file_open_max (with error bit) when system-wide max open files is reached. * F_file_type_not_directory (with error bit) if F_NOTIFY was specified and file.id is not a directory. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. @@ -1799,11 +1799,11 @@ extern "C" { * F_directory_empty_not (with error bit) if the destination is a non-empty directory. * F_file_found_not (with error bit) if file at path was not found. * F_file_type_directory (with error bit) if destination is a directory but source is not. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_link (with error bit) if source or destination has the maxiumum associated links. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. - * F_mount (with error bit) if source and destination are not within the same mounted filesystems. + * F_mount (with error bit) if source and destination are not within the same mounted file systems. * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if file system does not allow for making changes. @@ -1854,11 +1854,11 @@ extern "C" { * F_directory_empty_not (with error bit) if the destination is a non-empty directory. * F_file_found_not (with error bit) if file at path was not found. * F_file_type_directory (with error bit) if destination is a directory but source is not. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_link (with error bit) if source or destination has the maxiumum associated links. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. - * F_mount (with error bit) if source and destination are not within the same mounted filesystems. + * F_mount (with error bit) if source and destination are not within the same mounted file systems. * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_prohibited (with error bit) if file system does not allow for making changes. @@ -2291,8 +2291,8 @@ extern "C" { * F_directory_descriptor (with error bit) for bad directory descriptor for at_id. * F_file_found (with error bit) if a file aleady exists at the path. * F_file_open_max (with error bit) when system-wide max open files is reached. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. - * F_filesystem_quota_reached (with error bit) quota reached of file system is out of space. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_reached (with error bit) quota reached of file system is out of space. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. @@ -2335,8 +2335,8 @@ extern "C" { * F_directory_not (with error bit) if a supposed directory in path is not actually a directory. * F_file_found (with error bit) if a file aleady exists at the path (when calling utimensat()). * F_file_open_max (with error bit) when system-wide max open files is reached. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. - * F_filesystem_quota_reached (with error bit) quota reached of file system is out of space. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_reached (with error bit) quota reached of file system is out of space. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. diff --git a/level_0/f_file/c/file/stream.c b/level_0/f_file/c/file/stream.c index 4f5f692..4ede81a 100644 --- a/level_0/f_file/c/file/stream.c +++ b/level_0/f_file/c/file/stream.c @@ -107,7 +107,7 @@ extern "C" { if (!file->stream) { if (errno == EACCES) return F_status_set_error(F_access_denied); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EEXIST) return F_status_set_error(F_file_found); if (errno == ENAMETOOLONG) return F_status_set_error(F_name); if (errno == EFAULT) return F_status_set_error(F_buffer); diff --git a/level_0/f_file/c/file/stream.h b/level_0/f_file/c/file/stream.h index 82e62c6..9ec9032 100644 --- a/level_0/f_file/c/file/stream.h +++ b/level_0/f_file/c/file/stream.h @@ -155,7 +155,7 @@ extern "C" { * F_file_found_not (with error bit) if the file was not found. * F_file_open_max (with error bit) when system-wide max open files is reached. * F_file_type_not_directory (with error bit) if F_NOTIFY was specified and file.id is not a directory. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. @@ -350,7 +350,7 @@ extern "C" { * F_file_found_not (with error bit) if the file was not found. * F_file_open_max (with error bit) when system-wide max open files is reached. * F_file_type_not_directory (with error bit) if F_NOTIFY was specified and file.id is not a directory. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. diff --git a/level_0/f_file/c/private-file.c b/level_0/f_file/c/private-file.c index cbcb981..d4ee115 100644 --- a/level_0/f_file/c/private-file.c +++ b/level_0/f_file/c/private-file.c @@ -16,7 +16,7 @@ extern "C" { } if (errno == EBADF) return F_status_set_error(F_file_descriptor); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EINTR) return F_status_set_error(F_interrupt); if (errno == EIO) return F_status_set_error(F_input_output); if (errno == ENOSPC) return F_status_set_error(F_space_not); @@ -139,7 +139,7 @@ extern "C" { if (mkdir(path.string, mode) < 0) { if (errno == EACCES) return F_status_set_error(F_access_denied); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EEXIST) return F_status_set_error(F_file_found); if (errno == EFAULT) return F_status_set_error(F_buffer); if (errno == EINVAL) return F_status_set_error(F_parameter); @@ -165,7 +165,7 @@ extern "C" { if (mkfifo(path.string, mode) < 0) { if (errno == EACCES) return F_status_set_error(F_access_denied); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EEXIST) return F_status_set_error(F_file_found); if (errno == ENAMETOOLONG) return F_status_set_error(F_name); if (errno == ENOENT) return F_status_set_error(F_file_found_not); @@ -186,7 +186,7 @@ extern "C" { if (mknod(path.string, mode, device) < 0) { if (errno == EACCES) return F_status_set_error(F_access_denied); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EEXIST) return F_status_set_error(F_file_found); if (errno == EFAULT) return F_status_set_error(F_buffer); if (errno == EINVAL) return F_status_set_error(F_parameter); @@ -213,7 +213,7 @@ extern "C" { if (mknodat(file.id, path.string, mode, device) < 0) { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EBADF) return F_status_set_error(F_directory_descriptor); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EEXIST) return F_status_set_error(F_file_found); if (errno == EFAULT) return F_status_set_error(F_buffer); if (errno == EINVAL) return F_status_set_error(F_parameter); @@ -239,7 +239,7 @@ extern "C" { if (fsync(file.id) < 0) { if (errno == EBADF) return F_status_set_error(F_file_descriptor); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EINVAL) return F_status_set_error(F_support_not); if (errno == EIO) return F_status_set_error(F_input_output); if (errno == ENOSPC) return F_status_set_error(F_space_not); @@ -257,7 +257,7 @@ extern "C" { if (symlink(target.string, point.string) < 0) { if (errno == EACCES) return F_status_set_error(F_access_denied); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EEXIST) return F_status_set_error(F_file_found); if (errno == EFAULT) return F_status_set_error(F_buffer); if (errno == EFBIG || errno == EOVERFLOW) return F_status_set_error(F_number_overflow); @@ -286,7 +286,7 @@ extern "C" { if (symlinkat(target.string, directory.id, point.string) < 0) { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EBADF) return F_status_set_error(F_directory_descriptor); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EFAULT) return F_status_set_error(F_buffer); if (errno == EEXIST) return F_status_set_error(F_file_found); if (errno == EFBIG || errno == EOVERFLOW) return F_status_set_error(F_number_overflow); @@ -405,7 +405,7 @@ extern "C" { if (file->id == -1) { if (errno == EACCES) return F_status_set_error(F_access_denied); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EEXIST) return F_status_set_error(F_file_found); if (errno == EFAULT) return F_status_set_error(F_buffer); if (errno == EFBIG || errno == EOVERFLOW) return F_status_set_error(F_number_overflow); @@ -439,7 +439,7 @@ extern "C" { if (file->id == -1) { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EBADF) return F_status_set_error(F_directory_descriptor); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EEXIST) return F_status_set_error(F_file_found); if (errno == EFAULT) return F_status_set_error(F_buffer); if (errno == EFBIG || errno == EOVERFLOW) return F_status_set_error(F_number_overflow); diff --git a/level_0/f_file/c/private-file.h b/level_0/f_file/c/private-file.h index 5393ada..895d2d2 100644 --- a/level_0/f_file/c/private-file.h +++ b/level_0/f_file/c/private-file.h @@ -30,7 +30,7 @@ extern "C" { * F_file_close (with error bit) if fclose() failed for any other reason. * F_file_descriptor (with error bit) if file descriptor is invalid. * F_file_synchronize (with error bit) on flush failure. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_parameter (with error bit) if a parameter is invalid. @@ -79,7 +79,7 @@ extern "C" { * F_file_open_max (with error bit) when system-wide max open files is reached. * F_file_read (with error bit) on file read error. * F_file_write (with error bit) on file write error. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. @@ -126,7 +126,7 @@ extern "C" { * F_directory (with error bit) if a supposed directory in path is not actually a directory. * F_file_found (with error bit) if a file was found while exclusive is TRUE. * F_file_open_max (with error bit) when system-wide max open files is reached. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. @@ -174,7 +174,7 @@ extern "C" { * F_directory (with error bit) if a supposed directory in path is not actually a directory. * F_file_found (with error bit) if a file was found while exclusive is TRUE. * F_file_open_max (with error bit) when system-wide max open files is reached. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. @@ -213,7 +213,7 @@ extern "C" { * F_directory_link_max (with error bit) max links limit reached or exceeded. * F_file_found (with error bit) if a file was found while exclusive is TRUE. * F_file_found_not (with error bit) if file at path was not found. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_name (with error bit) on path name error. @@ -247,7 +247,7 @@ extern "C" { * F_access_denied (with error bit) on access denied. * F_directory (with error bit) if a supposed directory in path is not actually a directory. * F_file_found (with error bit) if a file was found while exclusive is TRUE. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or ififos are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or ififos are exhausted. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_name (with error bit) on path name error. @@ -288,7 +288,7 @@ extern "C" { * F_access_denied (with error bit) on access denied. * F_directory (with error bit) if a supposed directory in path is not actually a directory. * F_file_found (with error bit) if a file was found while exclusive is TRUE. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_name (with error bit) on path name error. @@ -333,7 +333,7 @@ extern "C" { * F_directory (with error bit) if a supposed directory in path is not actually a directory. * F_directory_descriptor (with error bit) for bad directory descriptor for at_id. * F_file_found (with error bit) if a file was found while exclusive is TRUE. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_name (with error bit) on path name error. @@ -364,7 +364,7 @@ extern "C" { * F_okay is returned on success. * * F_file_descriptor (with error bit) if file descriptor is invalid. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_input_output (with error bit) on I/O error. * F_parameter (with error bit) if a parameter is invalid. * F_space_not (with error bit) if file system is out of space (or file system quota is reached). @@ -403,7 +403,7 @@ extern "C" { * F_busy (with error bit) if file system is too busy to perform write. * F_file_found (with error bit) if a file aleady exists at the path. * F_file_found_not (with error bit) if a parent path in point does not exist or is a broken symlink. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_directory (with error bit) if a supposed directory in path is not actually a directory. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. @@ -446,7 +446,7 @@ extern "C" { * F_directory_descriptor (with error bit) for bad directory descriptor for at_id. * F_file_found (with error bit) if a file aleady exists at the path. * F_file_found_not (with error bit) if a parent path in point does not exist or is a broken symlink. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. diff --git a/level_0/f_file/tests/unit/c/test-file-clone.c b/level_0/f_file/tests/unit/c/test-file-clone.c index 89bc065..64b819b 100644 --- a/level_0/f_file/tests/unit/c/test-file-clone.c +++ b/level_0/f_file/tests/unit/c/test-file-clone.c @@ -97,7 +97,7 @@ void test__f_file_clone__fails_for_link(void **state) { f_status_t statuss[] = { F_access_denied, F_number_overflow, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_interrupt, @@ -442,7 +442,7 @@ void test__f_file_clone__fails_for_regular(void **state) { F_file_found, F_buffer, F_number_overflow, - F_filesystem_quota_block, + F_file_system_quota_block, F_interrupt, F_parameter, F_directory, @@ -494,7 +494,7 @@ void test__f_file_clone__fails_for_regular(void **state) { f_status_t statuss[] = { F_file_descriptor, - F_filesystem_quota_block, + F_file_system_quota_block, F_interrupt, F_input_output, F_space_not, @@ -744,7 +744,7 @@ void test__f_file_clone__fails_for_regular(void **state) { F_file_found, F_buffer, F_number_overflow, - F_filesystem_quota_block, + F_file_system_quota_block, F_interrupt, F_parameter, F_directory, @@ -826,7 +826,7 @@ void test__f_file_clone__fails_for_regular(void **state) { F_file_found, F_buffer, F_number_overflow, - F_filesystem_quota_block, + F_file_system_quota_block, F_interrupt, F_parameter, F_directory, diff --git a/level_0/f_file/tests/unit/c/test-file-close.c b/level_0/f_file/tests/unit/c/test-file-close.c index c068ada..18816e6 100644 --- a/level_0/f_file/tests/unit/c/test-file-close.c +++ b/level_0/f_file/tests/unit/c/test-file-close.c @@ -22,7 +22,7 @@ void test__f_file_close__fails(void **state) { F_interrupt, F_input_output, F_space_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_close, }; diff --git a/level_0/f_file/tests/unit/c/test-file-close_id.c b/level_0/f_file/tests/unit/c/test-file-close_id.c index 5cbcc04..6a8b2b5 100644 --- a/level_0/f_file/tests/unit/c/test-file-close_id.c +++ b/level_0/f_file/tests/unit/c/test-file-close_id.c @@ -22,7 +22,7 @@ void test__f_file_close_id__fails(void **state) { F_interrupt, F_input_output, F_space_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_close, }; diff --git a/level_0/f_file/tests/unit/c/test-file-copy.c b/level_0/f_file/tests/unit/c/test-file-copy.c index 628c901..a203459 100644 --- a/level_0/f_file/tests/unit/c/test-file-copy.c +++ b/level_0/f_file/tests/unit/c/test-file-copy.c @@ -96,7 +96,7 @@ void test__f_file_copy__fails_for_block(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_parameter, @@ -232,7 +232,7 @@ void test__f_file_copy__fails_for_character(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_parameter, @@ -368,7 +368,7 @@ void test__f_file_copy__fails_for_directory(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_parameter, @@ -499,7 +499,7 @@ void test__f_file_copy__fails_for_fifo(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_name, F_file_found_not, @@ -683,7 +683,7 @@ void test__f_file_copy__fails_for_link(void **state) { f_status_t statuss[] = { F_access_denied, F_number_overflow, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_interrupt, @@ -808,7 +808,7 @@ void test__f_file_copy__fails_for_regular(void **state) { F_file_found, F_buffer, F_number_overflow, - F_filesystem_quota_block, + F_file_system_quota_block, F_interrupt, F_parameter, F_directory, @@ -864,7 +864,7 @@ void test__f_file_copy__fails_for_regular(void **state) { F_interrupt, F_input_output, F_space_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_close, }; @@ -986,7 +986,7 @@ void test__f_file_copy__fails_for_regular(void **state) { F_file_found, F_buffer, F_number_overflow, - F_filesystem_quota_block, + F_file_system_quota_block, F_interrupt, F_parameter, F_directory, @@ -1069,7 +1069,7 @@ void test__f_file_copy__fails_for_regular(void **state) { F_file_found, F_buffer, F_number_overflow, - F_filesystem_quota_block, + F_file_system_quota_block, F_interrupt, F_parameter, F_directory, @@ -1338,7 +1338,7 @@ void test__f_file_copy__fails_for_socket(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_parameter, diff --git a/level_0/f_file/tests/unit/c/test-file-create.c b/level_0/f_file/tests/unit/c/test-file-create.c index 02716ba..126d26e 100644 --- a/level_0/f_file/tests/unit/c/test-file-create.c +++ b/level_0/f_file/tests/unit/c/test-file-create.c @@ -36,7 +36,7 @@ void test__f_file_create__fails(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_number_overflow, @@ -81,7 +81,7 @@ void test__f_file_create__fails(void **state) { f_status_t statuss[] = { F_file_descriptor, - F_filesystem_quota_block, + F_file_system_quota_block, F_interrupt, F_input_output, F_space_not, diff --git a/level_0/f_file/tests/unit/c/test-file-create_at.c b/level_0/f_file/tests/unit/c/test-file-create_at.c index 9e29b13..de04b6e 100644 --- a/level_0/f_file/tests/unit/c/test-file-create_at.c +++ b/level_0/f_file/tests/unit/c/test-file-create_at.c @@ -39,7 +39,7 @@ void test__f_file_create_at__fails(void **state) { f_status_t statuss[] = { F_access_denied, F_directory_descriptor, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_number_overflow, @@ -87,7 +87,7 @@ void test__f_file_create_at__fails(void **state) { F_interrupt, F_input_output, F_space_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_close, }; diff --git a/level_0/f_file/tests/unit/c/test-file-create_device.c b/level_0/f_file/tests/unit/c/test-file-create_device.c index d713be0..7487303 100644 --- a/level_0/f_file/tests/unit/c/test-file-create_device.c +++ b/level_0/f_file/tests/unit/c/test-file-create_device.c @@ -30,7 +30,7 @@ void test__f_file_create_device__fails(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_parameter, diff --git a/level_0/f_file/tests/unit/c/test-file-create_device_at.c b/level_0/f_file/tests/unit/c/test-file-create_device_at.c index 78b5b64..875b622 100644 --- a/level_0/f_file/tests/unit/c/test-file-create_device_at.c +++ b/level_0/f_file/tests/unit/c/test-file-create_device_at.c @@ -33,7 +33,7 @@ void test__f_file_create_device_at__fails(void **state) { f_status_t statuss[] = { F_access_denied, F_directory_descriptor, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_parameter, diff --git a/level_0/f_file/tests/unit/c/test-file-create_fifo.c b/level_0/f_file/tests/unit/c/test-file-create_fifo.c index 1837bad..dc877f9 100644 --- a/level_0/f_file/tests/unit/c/test-file-create_fifo.c +++ b/level_0/f_file/tests/unit/c/test-file-create_fifo.c @@ -25,7 +25,7 @@ void test__f_file_create_fifo__fails(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_name, F_file_found_not, diff --git a/level_0/f_file/tests/unit/c/test-file-create_fifo_at.c b/level_0/f_file/tests/unit/c/test-file-create_fifo_at.c index a0e5087..9c95ffe 100644 --- a/level_0/f_file/tests/unit/c/test-file-create_fifo_at.c +++ b/level_0/f_file/tests/unit/c/test-file-create_fifo_at.c @@ -28,7 +28,7 @@ void test__f_file_create_fifo_at__fails(void **state) { f_status_t statuss[] = { F_access_denied, F_directory_descriptor, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_name, F_file_found_not, diff --git a/level_0/f_file/tests/unit/c/test-file-create_node.c b/level_0/f_file/tests/unit/c/test-file-create_node.c index 8c7084b..dcdb3b1 100644 --- a/level_0/f_file/tests/unit/c/test-file-create_node.c +++ b/level_0/f_file/tests/unit/c/test-file-create_node.c @@ -30,7 +30,7 @@ void test__f_file_create_node__fails(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_parameter, diff --git a/level_0/f_file/tests/unit/c/test-file-create_node_at.c b/level_0/f_file/tests/unit/c/test-file-create_node_at.c index 2a2c87e..cf5a456 100644 --- a/level_0/f_file/tests/unit/c/test-file-create_node_at.c +++ b/level_0/f_file/tests/unit/c/test-file-create_node_at.c @@ -33,7 +33,7 @@ void test__f_file_create_node_at__fails(void **state) { f_status_t statuss[] = { F_access_denied, F_directory_descriptor, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_parameter, diff --git a/level_0/f_file/tests/unit/c/test-file-flush.c b/level_0/f_file/tests/unit/c/test-file-flush.c index 7346b18..41404ba 100644 --- a/level_0/f_file/tests/unit/c/test-file-flush.c +++ b/level_0/f_file/tests/unit/c/test-file-flush.c @@ -21,7 +21,7 @@ void test__f_file_flush__fails(void **state) { f_status_t statuss[] = { F_file_descriptor, - F_filesystem_quota_block, + F_file_system_quota_block, F_support_not, F_input_output, F_space_not, diff --git a/level_0/f_file/tests/unit/c/test-file-link.c b/level_0/f_file/tests/unit/c/test-file-link.c index 1f4caba..849c408 100644 --- a/level_0/f_file/tests/unit/c/test-file-link.c +++ b/level_0/f_file/tests/unit/c/test-file-link.c @@ -32,7 +32,7 @@ void test__f_file_link__fails(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_number_overflow, diff --git a/level_0/f_file/tests/unit/c/test-file-link_at.c b/level_0/f_file/tests/unit/c/test-file-link_at.c index 9f26764..4f3e9e1 100644 --- a/level_0/f_file/tests/unit/c/test-file-link_at.c +++ b/level_0/f_file/tests/unit/c/test-file-link_at.c @@ -35,7 +35,7 @@ void test__f_file_link_at__fails(void **state) { f_status_t statuss[] = { F_access_denied, F_directory_descriptor, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_number_overflow, diff --git a/level_0/f_file/tests/unit/c/test-file-link_hard.c b/level_0/f_file/tests/unit/c/test-file-link_hard.c index 762cc52..7f63c90 100644 --- a/level_0/f_file/tests/unit/c/test-file-link_hard.c +++ b/level_0/f_file/tests/unit/c/test-file-link_hard.c @@ -32,7 +32,7 @@ void test__f_file_link_hard__fails(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_number_overflow, diff --git a/level_0/f_file/tests/unit/c/test-file-link_hard_at.c b/level_0/f_file/tests/unit/c/test-file-link_hard_at.c index 28eb691..3344c39 100644 --- a/level_0/f_file/tests/unit/c/test-file-link_hard_at.c +++ b/level_0/f_file/tests/unit/c/test-file-link_hard_at.c @@ -36,7 +36,7 @@ void test__f_file_link_hard_at__fails(void **state) { f_status_t statuss[] = { F_access_denied, F_file_descriptor, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_number_overflow, diff --git a/level_0/f_file/tests/unit/c/test-file-open.c b/level_0/f_file/tests/unit/c/test-file-open.c index 7fa259a..cd4c912 100644 --- a/level_0/f_file/tests/unit/c/test-file-open.c +++ b/level_0/f_file/tests/unit/c/test-file-open.c @@ -35,7 +35,7 @@ void test__f_file_open__fails(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_number_overflow, diff --git a/level_0/f_file/tests/unit/c/test-file-open_at.c b/level_0/f_file/tests/unit/c/test-file-open_at.c index 2650672..eaacd30 100644 --- a/level_0/f_file/tests/unit/c/test-file-open_at.c +++ b/level_0/f_file/tests/unit/c/test-file-open_at.c @@ -37,7 +37,7 @@ void test__f_file_open_at__fails(void **state) { f_status_t statuss[] = { F_access_denied, F_directory_descriptor, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_buffer, F_number_overflow, diff --git a/level_0/f_file/tests/unit/c/test-file-rename.c b/level_0/f_file/tests/unit/c/test-file-rename.c index 2bfa4f0..b28f2d8 100644 --- a/level_0/f_file/tests/unit/c/test-file-rename.c +++ b/level_0/f_file/tests/unit/c/test-file-rename.c @@ -34,7 +34,7 @@ void test__f_file_rename__fails(void **state) { f_status_t statuss[] = { F_access_denied, F_busy, - F_filesystem_quota_block, + F_file_system_quota_block, F_buffer, F_parameter, F_file_type_directory, diff --git a/level_0/f_file/tests/unit/c/test-file-rename_at.c b/level_0/f_file/tests/unit/c/test-file-rename_at.c index 8851220..74f617a 100644 --- a/level_0/f_file/tests/unit/c/test-file-rename_at.c +++ b/level_0/f_file/tests/unit/c/test-file-rename_at.c @@ -38,7 +38,7 @@ void test__f_file_rename_at__fails(void **state) { F_access_denied, F_directory_descriptor, F_busy, - F_filesystem_quota_block, + F_file_system_quota_block, F_buffer, F_parameter, F_file_type_directory, diff --git a/level_0/f_file/tests/unit/c/test-file-stream_open.c b/level_0/f_file/tests/unit/c/test-file-stream_open.c index 679955e..0ead511 100644 --- a/level_0/f_file/tests/unit/c/test-file-stream_open.c +++ b/level_0/f_file/tests/unit/c/test-file-stream_open.c @@ -35,7 +35,7 @@ void test__f_file_stream_open__fails(void **state) { f_status_t statuss[] = { F_access_denied, - F_filesystem_quota_block, + F_file_system_quota_block, F_file_found, F_name, F_buffer, diff --git a/level_0/f_print/c/print/private-to.c b/level_0/f_print/c/print/private-to.c index 8651aac..5073452 100644 --- a/level_0/f_print/c/print/private-to.c +++ b/level_0/f_print/c/print/private-to.c @@ -20,7 +20,7 @@ extern "C" { if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block); if (errno == EBADF) return F_status_set_error(F_file_descriptor); if (errno == EDESTADDRREQ) return F_status_set_error(F_socket_not); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EFBIG) return F_status_set_error(F_number_overflow); if (errno == EFAULT) return F_status_set_error(F_buffer); if (errno == EINTR) return F_status_set_error(F_interrupt); diff --git a/level_0/f_print/c/print/private-to.h b/level_0/f_print/c/print/private-to.h index c988a72..0577805 100644 --- a/level_0/f_print/c/print/private-to.h +++ b/level_0/f_print/c/print/private-to.h @@ -36,7 +36,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -77,7 +77,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -132,7 +132,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -328,7 +328,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -375,7 +375,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -423,7 +423,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -466,7 +466,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -508,7 +508,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -551,7 +551,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -592,7 +592,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. diff --git a/level_0/f_print/c/print/to.c b/level_0/f_print/c/print/to.c index 52254c8..8a1d50d 100644 --- a/level_0/f_print/c/print/to.c +++ b/level_0/f_print/c/print/to.c @@ -20,7 +20,7 @@ extern "C" { if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_block); if (errno == EBADF) return F_status_set_error(F_file_descriptor); if (errno == EDESTADDRREQ) return F_status_set_error(F_socket_not); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EFBIG) return F_status_set_error(F_number_overflow); if (errno == EFAULT) return F_status_set_error(F_buffer); if (errno == EINTR) return F_status_set_error(F_interrupt); diff --git a/level_0/f_print/c/print/to.h b/level_0/f_print/c/print/to.h index f73a53b..5e5eec0 100644 --- a/level_0/f_print/c/print/to.h +++ b/level_0/f_print/c/print/to.h @@ -42,7 +42,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -79,7 +79,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -120,7 +120,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -159,7 +159,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -200,7 +200,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -243,7 +243,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -291,7 +291,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -335,7 +335,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -376,7 +376,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -422,7 +422,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -464,7 +464,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -511,7 +511,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -554,7 +554,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -599,7 +599,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -646,7 +646,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -698,7 +698,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -746,7 +746,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -791,7 +791,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -841,7 +841,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -887,7 +887,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -942,7 +942,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -991,7 +991,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1042,7 +1042,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1095,7 +1095,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1148,7 +1148,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1199,7 +1199,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1252,7 +1252,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1306,7 +1306,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1358,7 +1358,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1417,7 +1417,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1477,7 +1477,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1535,7 +1535,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1586,7 +1586,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1640,7 +1640,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1690,7 +1690,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1733,7 +1733,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1781,7 +1781,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1821,7 +1821,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1865,7 +1865,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1908,7 +1908,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. @@ -1950,7 +1950,7 @@ extern "C" { * F_file_closed (with error bit) if file is not open. * F_file_descriptor (with error bit) if the file descriptor is invalid. * F_file_type_directory (with error bit) if file descriptor represents a directory. - * F_filesystem_quota_block (with error bit) if quota is reached or exceeded. + * F_file_system_quota_block (with error bit) if quota is reached or exceeded. * F_input_output (with error bit) on I/O error. * F_interrupt (with error bit) if interrupt is received. * F_number_overflow (with error bit) if maximum size reached while writing or attempting to write beyond maximum allowed offset. diff --git a/level_0/f_print/tests/unit/c/test-print-to.c b/level_0/f_print/tests/unit/c/test-print-to.c index a4f431d..c5af60a 100644 --- a/level_0/f_print/tests/unit/c/test-print-to.c +++ b/level_0/f_print/tests/unit/c/test-print-to.c @@ -31,7 +31,7 @@ void test__f_print_to__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_character.c b/level_0/f_print/tests/unit/c/test-print-to_character.c index a7228cf..f9e5e78 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_character.c +++ b/level_0/f_print/tests/unit/c/test-print-to_character.c @@ -31,7 +31,7 @@ void test__f_print_to_character__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_character_safely.c b/level_0/f_print/tests/unit/c/test-print-to_character_safely.c index 6a16a2a..5ea9d04 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_character_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_character_safely.c @@ -31,7 +31,7 @@ void test__f_print_to_character_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic.c b/level_0/f_print/tests/unit/c/test-print-to_dynamic.c index 75b0d90..c4150c3 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic.c +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic.c @@ -31,7 +31,7 @@ void test__f_print_to_dynamic__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial.c b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial.c index f3d0c2c..095aa2a 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial.c +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial.c @@ -32,7 +32,7 @@ void test__f_print_to_dynamic_partial__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw.c b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw.c index 64a7451..96b5cc4 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw.c +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw.c @@ -32,7 +32,7 @@ void test__f_print_to_dynamic_partial_raw__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw_safely.c b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw_safely.c index 55274de..e4ba8e7 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_raw_safely.c @@ -32,7 +32,7 @@ void test__f_print_to_dynamic_partial_raw_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_safely.c b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_safely.c index 4d6e7c0..6a6d38c 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic_partial_safely.c @@ -32,7 +32,7 @@ void test__f_print_to_dynamic_partial_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw.c b/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw.c index b71191c..cf9a2b0 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw.c +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw.c @@ -31,7 +31,7 @@ void test__f_print_to_dynamic_raw__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw_safely.c b/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw_safely.c index b55c804..a9f1b4f 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic_raw_safely.c @@ -31,7 +31,7 @@ void test__f_print_to_dynamic_raw_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_dynamic_safely.c b/level_0/f_print/tests/unit/c/test-print-to_dynamic_safely.c index 39a9f62..6971c64 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_dynamic_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_dynamic_safely.c @@ -31,7 +31,7 @@ void test__f_print_to_dynamic_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except.c b/level_0/f_print/tests/unit/c/test-print-to_except.c index c808621..6244be4 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except.c @@ -32,7 +32,7 @@ void test__f_print_to_except__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic.c b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic.c index 1ef7153..152be54 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic.c @@ -32,7 +32,7 @@ void test__f_print_to_except_dynamic__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial.c b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial.c index 9026ecc..30974c1 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial.c @@ -33,7 +33,7 @@ void test__f_print_to_except_dynamic_partial__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw.c b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw.c index 02789ab..fae3e80 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw.c @@ -33,7 +33,7 @@ void test__f_print_to_except_dynamic_partial_raw__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw_safely.c b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw_safely.c index cb83f85..0402165 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_raw_safely.c @@ -33,7 +33,7 @@ void test__f_print_to_except_dynamic_partial_raw_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_safely.c b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_safely.c index 01aa1e7..cd4e4dd 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_partial_safely.c @@ -33,7 +33,7 @@ void test__f_print_to_except_dynamic_partial_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw.c b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw.c index b22b0f4..6a82bb2 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw.c @@ -32,7 +32,7 @@ void test__f_print_to_except_dynamic_raw__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw_safely.c b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw_safely.c index 7f272a0..140bddb 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_raw_safely.c @@ -32,7 +32,7 @@ void test__f_print_to_except_dynamic_raw_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_safely.c b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_safely.c index da24371..362d668 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_dynamic_safely.c @@ -32,7 +32,7 @@ void test__f_print_to_except_dynamic_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in.c b/level_0/f_print/tests/unit/c/test-print-to_except_in.c index 1cfb29a..2e2be3b 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in.c @@ -33,7 +33,7 @@ void test__f_print_to_except_in__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic.c b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic.c index 52666cc..e48534d 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic.c @@ -33,7 +33,7 @@ void test__f_print_to_except_in_dynamic__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial.c b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial.c index 13be823..2deda49 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial.c @@ -34,7 +34,7 @@ void test__f_print_to_except_in_dynamic_partial__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw.c b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw.c index f11897b..36cf65d 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw.c @@ -34,7 +34,7 @@ void test__f_print_to_except_in_dynamic_partial_raw__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw_safely.c b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw_safely.c index e1ff66c..87f42e9 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_raw_safely.c @@ -34,7 +34,7 @@ void test__f_print_to_except_in_dynamic_partial_raw_safely__fails(void **state) F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_safely.c b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_safely.c index c0aa185..fdedb83 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_partial_safely.c @@ -34,7 +34,7 @@ void test__f_print_to_except_in_dynamic_partial_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw.c b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw.c index fe0d35d..962ff78 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw.c @@ -33,7 +33,7 @@ void test__f_print_to_except_in_dynamic_raw__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw_safely.c b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw_safely.c index f76f261..2927494 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_raw_safely.c @@ -33,7 +33,7 @@ void test__f_print_to_except_in_dynamic_raw_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_safely.c b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_safely.c index ca24396..091ed0e 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_dynamic_safely.c @@ -33,7 +33,7 @@ void test__f_print_to_except_in_dynamic_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_raw.c b/level_0/f_print/tests/unit/c/test-print-to_except_in_raw.c index b425111..9fb5485 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_raw.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_raw.c @@ -33,7 +33,7 @@ void test__f_print_to_except_in_raw__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_raw_safely.c b/level_0/f_print/tests/unit/c/test-print-to_except_in_raw_safely.c index 50c893b..4b9d43f 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_raw_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_raw_safely.c @@ -33,7 +33,7 @@ void test__f_print_to_except_in_raw_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_in_safely.c b/level_0/f_print/tests/unit/c/test-print-to_except_in_safely.c index 927b8a7..cd4bb17 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_in_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_in_safely.c @@ -33,7 +33,7 @@ void test__f_print_to_except_in_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_raw.c b/level_0/f_print/tests/unit/c/test-print-to_except_raw.c index cf6f03c..d942028 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_raw.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_raw.c @@ -32,7 +32,7 @@ void test__f_print_to_except_raw__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_raw_safely.c b/level_0/f_print/tests/unit/c/test-print-to_except_raw_safely.c index 0f64e94..551a2db 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_raw_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_raw_safely.c @@ -32,7 +32,7 @@ void test__f_print_to_except_raw_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_except_safely.c b/level_0/f_print/tests/unit/c/test-print-to_except_safely.c index 774936a..699a5b3 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_except_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_except_safely.c @@ -32,7 +32,7 @@ void test__f_print_to_except_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_raw.c b/level_0/f_print/tests/unit/c/test-print-to_raw.c index 750f035..a4d9f6c 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_raw.c +++ b/level_0/f_print/tests/unit/c/test-print-to_raw.c @@ -31,7 +31,7 @@ void test__f_print_to_raw__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_raw_safely.c b/level_0/f_print/tests/unit/c/test-print-to_raw_safely.c index 5846a93..cc73314 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_raw_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_raw_safely.c @@ -31,7 +31,7 @@ void test__f_print_to_raw_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_raw_terminated.c b/level_0/f_print/tests/unit/c/test-print-to_raw_terminated.c index 48268da..9099b27 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_raw_terminated.c +++ b/level_0/f_print/tests/unit/c/test-print-to_raw_terminated.c @@ -31,7 +31,7 @@ void test__f_print_to_raw_terminated__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_safely.c b/level_0/f_print/tests/unit/c/test-print-to_safely.c index 9f3b083..b3a7116 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_safely.c +++ b/level_0/f_print/tests/unit/c/test-print-to_safely.c @@ -31,7 +31,7 @@ void test__f_print_to_safely__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_safely_terminated.c b/level_0/f_print/tests/unit/c/test-print-to_safely_terminated.c index 3dcaf11..d71e85c 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_safely_terminated.c +++ b/level_0/f_print/tests/unit/c/test-print-to_safely_terminated.c @@ -31,7 +31,7 @@ void test__f_print_to_safely_terminated__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_print/tests/unit/c/test-print-to_terminated.c b/level_0/f_print/tests/unit/c/test-print-to_terminated.c index 01624aa..8fcc19c 100644 --- a/level_0/f_print/tests/unit/c/test-print-to_terminated.c +++ b/level_0/f_print/tests/unit/c/test-print-to_terminated.c @@ -31,7 +31,7 @@ void test__f_print_to_terminated__fails(void **state) { F_block, F_file_descriptor, F_socket_not, - F_filesystem_quota_block, + F_file_system_quota_block, F_number_overflow, F_buffer, F_interrupt, diff --git a/level_0/f_signal/c/signal.c b/level_0/f_signal/c/signal.c index 28a0702..79e1a51 100644 --- a/level_0/f_signal/c/signal.c +++ b/level_0/f_signal/c/signal.c @@ -33,7 +33,7 @@ extern "C" { if (close(signal->id) == -1) { if (errno == EBADF) return F_status_set_error(F_descriptor); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EINTR) return F_status_set_error(F_interrupt); if (errno == EIO) return F_status_set_error(F_input_output); if (errno == ENOSPC) return F_status_set_error(F_parameter); diff --git a/level_0/f_signal/c/signal.h b/level_0/f_signal/c/signal.h index 40b8f42..604e2f3 100644 --- a/level_0/f_signal/c/signal.h +++ b/level_0/f_signal/c/signal.h @@ -71,7 +71,7 @@ extern "C" { * F_data_not on success, but no descriptor was provided to close. * * F_descriptor (with error bit) if id is an invalid descriptor. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_input_output (with error bit) if an I/O error occurred. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_parameter (with error bit) if a parameter is invalid. diff --git a/level_0/f_signal/tests/unit/c/test-signal-close.c b/level_0/f_signal/tests/unit/c/test-signal-close.c index 1a4db72..d9b448c 100644 --- a/level_0/f_signal/tests/unit/c/test-signal-close.c +++ b/level_0/f_signal/tests/unit/c/test-signal-close.c @@ -20,7 +20,7 @@ void test__f_signal_close__fails(void **state) { f_status_t statuss[] = { F_descriptor, - F_filesystem_quota_block, + F_file_system_quota_block, F_interrupt, F_input_output, F_parameter, diff --git a/level_0/f_socket/c/socket.c b/level_0/f_socket/c/socket.c index 0bc9e4a..3d9f792 100644 --- a/level_0/f_socket/c/socket.c +++ b/level_0/f_socket/c/socket.c @@ -15,7 +15,7 @@ extern "C" { if (result == -1) { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_socket_block); - if (errno == EBADF) return F_status_set_error(F_file_descriptor); + if (errno == EBADF) return F_status_set_error(F_file_descriptor_not); if (errno == EFAULT) return F_status_set_error(F_buffer_scope_out); if (errno == EHOSTDOWN) return F_status_set_error(F_network_client_not); if (errno == EHOSTUNREACH) return F_status_set_error(F_network_client_reach_not); @@ -155,6 +155,7 @@ extern "C" { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EADDRINUSE) return F_status_set_error(F_busy_address); if (errno == EADDRNOTAVAIL) return F_status_set_error(F_available_not_address); + if (errno == EBADF) return F_status_set_error(F_file_descriptor_not); if (errno == EFAULT) return F_status_set_error(F_buffer_scope_out); if (errno == EINVAL) return F_status_set_error(F_parameter); if (errno == ELOOP) return F_status_set_error(F_loop); @@ -163,6 +164,7 @@ extern "C" { if (errno == ENOMEM) return F_status_set_error(F_memory_not); if (errno == ENOTDIR) return F_status_set_error(F_directory_found_not); if (errno == ENOTSOCK) return F_status_set_error(F_socket_not); + if (errno == EROFS) return F_status_set_error(F_file_system_read_only); return F_status_set_error(F_failure); } @@ -177,7 +179,7 @@ extern "C" { if (!socket) return F_status_set_error(F_parameter); #endif // _di_level_0_parameter_checking_ - if (socket->id == -1) return F_file_descriptor; + if (socket->id == -1) return F_file_descriptor_not; struct sockaddr * address = 0; @@ -274,8 +276,8 @@ extern "C" { if (errno == EADDRNOTAVAIL) return F_status_set_error(F_available_not_address); if (errno == EAFNOSUPPORT) return F_status_set_error(F_domain_not); if (errno == EAGAIN) return F_status_set_error(F_socket_block); - if (errno == EALREADY) return F_status_set_error(F_complete_not); - if (errno == EBADF) return F_status_set_error(F_file_descriptor); + if (errno == EALREADY) return F_status_set_error(F_connect_busy); + if (errno == EBADF) return F_status_set_error(F_file_descriptor_not); if (errno == ECONNREFUSED) return F_status_set_error(F_connect_refuse); if (errno == EINPROGRESS) return F_status_set_error(F_progress); if (errno == EINTR) return F_status_set_error(F_interrupt); @@ -283,7 +285,7 @@ extern "C" { if (errno == EISCONN) return F_status_set_error(F_connect); if (errno == ENETUNREACH) return F_status_set_error(F_network_reach_not); if (errno == ENOTSOCK) return F_status_set_error(F_socket_not); - if (errno == EPERM) return F_status_set_error(F_prohibited); + if (errno == EPERM) return F_status_set_error(F_fire_wall_block); if (errno == EPROTONOSUPPORT) return F_status_set_error(F_protocol_not); if (errno == ETIMEDOUT) return F_status_set_error(F_socket_time_out); @@ -311,7 +313,7 @@ extern "C" { if (errno == ENOBUFS) return F_status_set_error(F_buffer_sufficient_not); if (errno == ENOMEM) return F_status_set_error(F_memory_not); if (errno == EPROTONOSUPPORT) return F_status_set_error(F_protocol_not); - if (errno == ESOCKTNOSUPPORT) return F_status_set_error(F_type_not); + if (errno == ESOCKTNOSUPPORT) return F_status_set_error(F_socket_support_not); return F_status_set_error(F_failure); } @@ -384,8 +386,8 @@ extern "C" { socket->id = -1; } - if (errno == EBADF) return F_status_set_error(F_file_descriptor); - if (errno == EDQUOT) return F_status_set_error(F_filesystem_quota_block); + if (errno == EBADF) return F_status_set_error(F_file_descriptor_not); + if (errno == EDQUOT) return F_status_set_error(F_file_system_quota_block); if (errno == EINTR) return F_status_set_error(F_interrupt); if (errno == EINVAL) return F_status_set_error(F_value); if (errno == EIO) return F_status_set_error(F_input_output); @@ -412,7 +414,7 @@ extern "C" { if (listen(socket->id, backlog_max) == -1) { if (errno == EADDRINUSE) return F_status_set_error(F_busy_address); - if (errno == EBADF) return F_status_set_error(F_file_descriptor); + if (errno == EBADF) return F_status_set_error(F_file_descriptor_not); if (errno == ENOTSOCK) return F_status_set_error(F_socket_not); if (errno == EOPNOTSUPP) return F_status_set_error(F_support_not); @@ -432,7 +434,7 @@ extern "C" { #endif // _di_level_0_parameter_checking_ if (getsockopt(socket->id, level, option, value, length) == -1) { - if (errno == EBADF) return F_status_set_error(F_file_descriptor); + if (errno == EBADF) return F_status_set_error(F_file_descriptor_not); if (errno == EFAULT) return F_status_set_error(F_buffer_scope_out); if (errno == EINVAL) return F_status_set_error(F_value); if (errno == ENOTSOCK) return F_status_set_error(F_socket_not); @@ -453,7 +455,7 @@ extern "C" { #endif // _di_level_0_parameter_checking_ if (setsockopt(socket->id, level, option, value, length) == -1) { - if (errno == EBADF) return F_status_set_error(F_file_descriptor); + if (errno == EBADF) return F_status_set_error(F_file_descriptor_not); if (errno == EFAULT) return F_status_set_error(F_buffer_scope_out); if (errno == EINVAL) return F_status_set_error(F_value); if (errno == ENOTSOCK) return F_status_set_error(F_socket_not); @@ -504,7 +506,7 @@ extern "C" { #endif // _di_level_0_parameter_checking_ if (getpeername(socket->id, (struct sockaddr *) &socket->address.generic, &socket->length) == -1) { - if (errno == EBADF) return F_status_set_error(F_file_descriptor); + if (errno == EBADF) return F_status_set_error(F_file_descriptor_not); if (errno == EFAULT) return F_status_set_error(F_buffer_scope_out); if (errno == EINVAL) return F_status_set_error(F_parameter); if (errno == ENOBUFS) return F_status_set_error(F_buffer_sufficient_not); @@ -533,7 +535,7 @@ extern "C" { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_socket_block); if (errno == EALREADY) return F_status_set_error(F_complete_not); - if (errno == EBADF) return F_status_set_error(F_file_descriptor); + if (errno == EBADF) return F_status_set_error(F_file_descriptor_not); if (errno == ECONNREFUSED) return F_status_set_error(F_connect_refuse); if (errno == ECONNRESET) return F_status_set_error(F_connect_reset); if (errno == EDESTADDRREQ) return F_status_set_error(F_address_not); @@ -545,7 +547,7 @@ extern "C" { if (errno == ENOTSOCK) return F_status_set_error(F_socket_not); if (errno == EOPNOTSUPP) return F_status_set_error(F_socket_option_not); if (errno == EPERM) return F_status_set_error(F_prohibited); - if (errno == EPIPE) return F_status_set_error(F_pipe); + if (errno == EPIPE) return F_status_set_error(F_socket_pipe_close); if (errno == ETIMEDOUT) return F_status_set_error(F_socket_time_out); return F_status_set_error(F_failure); @@ -574,7 +576,7 @@ extern "C" { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_socket_block); if (errno == EALREADY) return F_status_set_error(F_complete_not); - if (errno == EBADF) return F_status_set_error(F_file_descriptor); + if (errno == EBADF) return F_status_set_error(F_file_descriptor_not); if (errno == ECONNREFUSED) return F_status_set_error(F_connect_refuse); if (errno == ECONNRESET) return F_status_set_error(F_connect_reset); if (errno == EDESTADDRREQ) return F_status_set_error(F_address_not); @@ -586,7 +588,7 @@ extern "C" { if (errno == ENOTSOCK) return F_status_set_error(F_socket_not); if (errno == EOPNOTSUPP) return F_status_set_error(F_option_not); if (errno == EPERM) return F_status_set_error(F_prohibited); - if (errno == EPIPE) return F_status_set_error(F_pipe); + if (errno == EPIPE) return F_status_set_error(F_socket_pipe_close); if (errno == ETIMEDOUT) return F_status_set_error(F_socket_time_out); return F_status_set_error(F_failure); @@ -615,7 +617,7 @@ extern "C" { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_socket_block); if (errno == EALREADY) return F_status_set_error(F_complete_not); - if (errno == EBADF) return F_status_set_error(F_file_descriptor); + if (errno == EBADF) return F_status_set_error(F_file_descriptor_not); if (errno == ECONNREFUSED) return F_status_set_error(F_connect_refuse); if (errno == ECONNRESET) return F_status_set_error(F_connect_reset); if (errno == EDESTADDRREQ) return F_status_set_error(F_address_not); @@ -627,7 +629,7 @@ extern "C" { if (errno == ENOTSOCK) return F_status_set_error(F_socket_not); if (errno == EOPNOTSUPP) return F_status_set_error(F_option_not); if (errno == EPERM) return F_status_set_error(F_prohibited); - if (errno == EPIPE) return F_status_set_error(F_pipe); + if (errno == EPIPE) return F_status_set_error(F_socket_pipe_close); if (errno == ETIMEDOUT) return F_status_set_error(F_socket_time_out); return F_status_set_error(F_failure); @@ -656,7 +658,7 @@ extern "C" { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_socket_block); if (errno == EALREADY) return F_status_set_error(F_complete_not); - if (errno == EBADF) return F_status_set_error(F_file_descriptor); + if (errno == EBADF) return F_status_set_error(F_file_descriptor_not); if (errno == ECONNREFUSED) return F_status_set_error(F_connect_refuse); if (errno == ECONNRESET) return F_status_set_error(F_connect_reset); if (errno == EDESTADDRREQ) return F_status_set_error(F_address_not); @@ -671,7 +673,7 @@ extern "C" { if (errno == ENOTSOCK) return F_status_set_error(F_socket_not); if (errno == EOPNOTSUPP) return F_status_set_error(F_option_not); if (errno == EPERM) return F_status_set_error(F_prohibited); - if (errno == EPIPE) return F_status_set_error(F_pipe); + if (errno == EPIPE) return F_status_set_error(F_socket_pipe_close); if (errno == ETIMEDOUT) return F_status_set_error(F_socket_time_out); return F_status_set_error(F_failure); @@ -700,7 +702,7 @@ extern "C" { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_socket_block); if (errno == EALREADY) return F_status_set_error(F_complete_not); - if (errno == EBADF) return F_status_set_error(F_file_descriptor); + if (errno == EBADF) return F_status_set_error(F_file_descriptor_not); if (errno == ECONNREFUSED) return F_status_set_error(F_connect_refuse); if (errno == ECONNRESET) return F_status_set_error(F_connect_reset); if (errno == EDESTADDRREQ) return F_status_set_error(F_address_not); @@ -715,7 +717,7 @@ extern "C" { if (errno == ENOTSOCK) return F_status_set_error(F_socket_not); if (errno == EOPNOTSUPP) return F_status_set_error(F_option_not); if (errno == EPERM) return F_status_set_error(F_prohibited); - if (errno == EPIPE) return F_status_set_error(F_pipe); + if (errno == EPIPE) return F_status_set_error(F_socket_pipe_close); if (errno == ETIMEDOUT) return F_status_set_error(F_socket_time_out); return F_status_set_error(F_failure); @@ -744,7 +746,7 @@ extern "C" { if (errno == EACCES) return F_status_set_error(F_access_denied); if (errno == EAGAIN || errno == EWOULDBLOCK) return F_status_set_error(F_socket_block); if (errno == EALREADY) return F_status_set_error(F_complete_not); - if (errno == EBADF) return F_status_set_error(F_file_descriptor); + if (errno == EBADF) return F_status_set_error(F_file_descriptor_not); if (errno == ECONNREFUSED) return F_status_set_error(F_connect_refuse); if (errno == ECONNRESET) return F_status_set_error(F_connect_reset); if (errno == EDESTADDRREQ) return F_status_set_error(F_address_not); @@ -759,7 +761,7 @@ extern "C" { if (errno == ENOTSOCK) return F_status_set_error(F_socket_not); if (errno == EOPNOTSUPP) return F_status_set_error(F_option_not); if (errno == EPERM) return F_status_set_error(F_prohibited); - if (errno == EPIPE) return F_status_set_error(F_pipe); + if (errno == EPIPE) return F_status_set_error(F_socket_pipe_close); if (errno == ETIMEDOUT) return F_status_set_error(F_socket_time_out); return F_status_set_error(F_failure); diff --git a/level_0/f_socket/c/socket.h b/level_0/f_socket/c/socket.h index 41bb414..7bec59c 100644 --- a/level_0/f_socket/c/socket.h +++ b/level_0/f_socket/c/socket.h @@ -73,7 +73,7 @@ extern "C" { * F_access_denied (with error bit) on access denied. * F_buffer_scope_out (with error bit) if the buffer is invalid. * F_buffer_sufficient_not (with error bit) if unable to create socket due to resource restrictions (maps to ENOBUFS). - * F_file_descriptor (with error bit) if ID is an invalid descriptor. + * F_file_descriptor_not (with error bit) if ID is an invalid descriptor. * F_file_descriptor_max (with error bit) if max file descriptors is reached. * F_file_open_max (with error bit) too many open files. * F_interrupt (with error bit) if interrupt is received. @@ -148,9 +148,10 @@ extern "C" { * F_buffer_scope_out (with error bit) if the buffer is out of scope. * F_busy_address (with error bit) if address is already in use (therefore unavailable). * F_directory_found_not (with error bit) if directory was not found. + * F_file_descriptor_not (with error bit) if ID is an invalid descriptor. * F_file_found_not (with error bit) if file not found. + * F_file_system_read_only (with error bit) if the file system is read-only when a write is needed. * F_memory_not (with error bit) if out of memory. - * F_name (with error bit) on path name error. * F_parameter (with error bit) if a parameter is invalid. * F_socket_not (with error bit) if the ID is not a socket descriptor. * F_string_too_large (with error bit) if string is too large to store in the buffer. @@ -180,21 +181,21 @@ extern "C" { * * @return * F_okay on success. - * F_file_descriptor if socket file descriptor is not valid (socket.id == -1). + * F_file_descriptor_not if socket file descriptor is not valid (socket.id == -1). * * F_access_denied (with error bit) on access denied. * F_available_not_address (with error bit) if address is unavailable (is non-existent or not local). * F_busy_address (with error bit) if address is already in use (therefore unavailable). - * F_complete_not (with error bit) if a non-blocking connection attempt is not yet completed. * F_connect (with error bit) if already connected. + * F_connect_busy (with error bit) if a non-blocking connection attempt is not yet completed. * F_connect_refuse (with error bit) if connection is refused because there is nothing listening. * F_domain_not (with error bit) if the given domain is unknown or is unsupported. - * F_file_descriptor (with error bit) if ID is an invalid descriptor. + * F_file_descriptor_not (with error bit) if ID is an invalid descriptor. + * F_fire_wall_block (with error bit) if the blocked by fire wall (or if broadcast without broadcast flag is attempted). * F_interrupt (with error bit) if interrupt is received. * F_network_reach_not (with error bit) if the network is unreachable. * F_parameter (with error bit) if a parameter is invalid. * F_progress (with error bit) if if a non-blocking connection cannot be completed immediately. - * F_prohibited (with error bit) if the file system does not permit this operation. * F_protocol_not (with error bit) if the given protocol is unknown or is unsupported. * F_socket_block (with error bit) if socket is blocked. * F_socket_not (with error bit) if the ID is not a socket descriptor. @@ -232,7 +233,7 @@ extern "C" { * F_memory_not (with error bit) if out of memory. * F_parameter (with error bit) if a parameter is invalid. * F_protocol_not (with error bit) if the given protocol is unknown or is unsupported. - * F_type_not (with error bit) if the given type is unknown or is unsupported. + * F_socket_support_not (with error bit) if the given socket type is unknown or is unsupported. * * F_failure (with error bit) for any other error. * @@ -318,8 +319,8 @@ extern "C" { * F_file_descriptor_not if socket.id is -1. * * F_busy_address (with error bit) if address is already in use (therefore unavailable). - * F_file_descriptor (with error bit) if ID is an invalid descriptor. - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_descriptor_not (with error bit) if ID is an invalid descriptor. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_input_output (with error bit) if an I/O error occurred. * F_interrupt (with error bit) when program received an interrupt signal, halting operation. * F_parameter (with error bit) if a parameter is invalid. @@ -352,7 +353,7 @@ extern "C" { * F_okay on success. * * F_busy_address (with error bit) if address is already in use (therefore unavailable). - * F_file_descriptor (with error bit) if ID is an invalid descriptor. + * F_file_descriptor_not (with error bit) if ID is an invalid descriptor. * F_socket_not (with error bit) if the ID is not a socket descriptor. * F_support_not (with error bit) if this socket does not support the listen() operation. * @@ -390,7 +391,7 @@ extern "C" { * F_okay on success. * * F_buffer_scope_out (with error bit) if the given address is out of scope. - * F_file_descriptor (with error bit) if ID is an invalid descriptor. + * F_file_descriptor_not (with error bit) if ID is an invalid descriptor. * F_protocol_option_not (with error bit) if the given protocol option is unknown or is unsupported. * F_socket_not (with error bit) if the ID is not a socket descriptor. * F_value (with error bit) if either the value or the length is invalid. @@ -427,7 +428,7 @@ extern "C" { * F_okay on success. * * F_buffer_scope_out (with error bit) if the given value is out of scope. - * F_file_descriptor (with error bit) if ID is an invalid descriptor. + * F_file_descriptor_not (with error bit) if ID is an invalid descriptor. * F_protocol_option_not (with error bit) if the given protocol option is unknown or is unsupported. * F_socket_not (with error bit) if the ID is not a socket descriptor. * F_value (with error bit) if either the value or the length is invalid. @@ -498,7 +499,7 @@ extern "C" { * F_buffer_scope_out (with error bit) if the buffer is invalid. * F_buffer_sufficient_not (with error bit) due to resource restrictions (maps to ENOBUFS). * F_connect_not (with error bit) if the socket is not connected. - * F_file_descriptor (with error bit) if ID is an invalid descriptor. + * F_file_descriptor_not (with error bit) if ID is an invalid descriptor. * F_parameter (with error bit) if a parameter is invalid. * F_socket_not (with error bit) if the ID is not a socket descriptor. * @@ -547,15 +548,15 @@ extern "C" { * F_connect_not (with error bit) if the socket is not connected. * F_connect_refuse (with error bit) if connection is refused. * F_connect_reset (with error bit) if connection is reset. - * F_file_descriptor (with error bit) if ID is an invalid descriptor. + * F_file_descriptor_not (with error bit) if ID is an invalid descriptor. * F_interrupt (with error bit) if interrupt is received. * F_memory_not (with error bit) if out of memory. * F_socket_option_not (with error bit) if the given protocol option is unknown or is unsupported. * F_parameter (with error bit) if a parameter is invalid. - * F_pipe (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received. * F_prohibited (with error bit) if the insufficient privileges to perform read. * F_socket_block (with error bit) if socket is blocked. * F_socket_not (with error bit) if the ID is not a valid socket descriptor. + * F_socket_pipe_close (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received. * F_socket_time_out (with error bit) if a socket timeout occurred. * * F_failure (with error bit) for any other error. @@ -598,15 +599,15 @@ extern "C" { * F_connect_not (with error bit) if the socket is not connected. * F_connect_refuse (with error bit) if connection is refused. * F_connect_reset (with error bit) if connection is reset. - * F_file_descriptor (with error bit) if ID is an invalid descriptor. + * F_file_descriptor_not (with error bit) if ID is an invalid descriptor. * F_interrupt (with error bit) if interrupt is received. * F_memory_not (with error bit) if out of memory. * F_option_not (with error bit) if a flag is not supported. * F_parameter (with error bit) if a parameter is invalid. - * F_pipe (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received. * F_prohibited (with error bit) if the insufficient privileges to perform read. * F_socket_block (with error bit) if socket is blocked. * F_socket_not (with error bit) if the ID is not a socket descriptor. + * F_socket_pipe_close (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received. * F_socket_time_out (with error bit) if a socket timeout occurred. * * F_failure (with error bit) for any other error. @@ -654,15 +655,15 @@ extern "C" { * F_connect_not (with error bit) if the socket is not connected. * F_connect_refuse (with error bit) if connection is refused. * F_connect_reset (with error bit) if connection is reset. - * F_file_descriptor (with error bit) if ID is an invalid descriptor. + * F_file_descriptor_not (with error bit) if ID is an invalid descriptor. * F_interrupt (with error bit) if interrupt is received. * F_memory_not (with error bit) if out of memory. * F_option_not (with error bit) if a flag is not supported. * F_parameter (with error bit) if a parameter is invalid. - * F_pipe (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received. * F_prohibited (with error bit) if the insufficient privileges to perform read. * F_socket_block (with error bit) if socket is blocked. * F_socket_not (with error bit) if the ID is not a socket descriptor. + * F_socket_pipe_close (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received. * F_socket_time_out (with error bit) if a socket timeout occurred. * * F_failure (with error bit) for any other error. @@ -712,16 +713,16 @@ extern "C" { * F_connect_not (with error bit) if the socket is not connected. * F_connect_refuse (with error bit) if connection is refused. * F_connect_reset (with error bit) if connection is reset. - * F_file_descriptor (with error bit) if ID is an invalid descriptor. + * F_file_descriptor_not (with error bit) if ID is an invalid descriptor. * F_interrupt (with error bit) if interrupt is received. * F_memory_not (with error bit) if out of memory. * F_option_not (with error bit) if a flag is not supported. * F_parameter (with error bit) if a parameter is invalid. - * F_pipe (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received (Linux might return this isntead if F_connect_not). * F_prohibited (with error bit) if the insufficient privileges to perform send. * F_size (with error bit) if size of message makes atomically sending message impossible on a socket type that requires this to be atomic. * F_socket_block (with error bit) if socket is blocked. * F_socket_not (with error bit) if the ID is not a socket descriptor. + * F_socket_pipe_close (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received (Linux might return this isntead if F_connect_not). * F_socket_time_out (with error bit) if a socket timeout occurred. * * F_failure (with error bit) for any other error. @@ -766,16 +767,16 @@ extern "C" { * F_connect_not (with error bit) if the socket is not connected. * F_connect_refuse (with error bit) if connection is refused. * F_connect_reset (with error bit) if connection is reset. - * F_file_descriptor (with error bit) if ID is an invalid descriptor. + * F_file_descriptor_not (with error bit) if ID is an invalid descriptor. * F_interrupt (with error bit) if interrupt is received. * F_memory_not (with error bit) if out of memory. * F_option_not (with error bit) if a flag is not supported. * F_parameter (with error bit) if a parameter is invalid. - * F_pipe (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received (Linux might return this isntead if F_connect_not). * F_prohibited (with error bit) if the insufficient privileges to perform send. * F_size (with error bit) if size of message makes atomically sending message impossible on a socket type that requires this to be atomic. * F_socket_block (with error bit) if socket is blocked. * F_socket_not (with error bit) if the ID is not a socket descriptor. + * F_socket_pipe_close (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received (Linux might return this isntead if F_connect_not). * F_socket_time_out (with error bit) if a socket timeout occurred. * * F_failure (with error bit) for any other error. @@ -825,16 +826,16 @@ extern "C" { * F_connect_not (with error bit) if the socket is not connected. * F_connect_refuse (with error bit) if connection is refused. * F_connect_reset (with error bit) if connection is reset. - * F_file_descriptor (with error bit) if ID is an invalid descriptor. + * F_file_descriptor_not (with error bit) if ID is an invalid descriptor. * F_interrupt (with error bit) if interrupt is received. * F_memory_not (with error bit) if out of memory. * F_option_not (with error bit) if a flag is not supported. * F_parameter (with error bit) if a parameter is invalid. - * F_pipe (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received (Linux might return this isntead if F_connect_not). * F_prohibited (with error bit) if the insufficient privileges to perform send. * F_size (with error bit) if size of message makes atomically sending message impossible on a socket type that requires this to be atomic. * F_socket_block (with error bit) if socket is blocked. * F_socket_not (with error bit) if the ID is not a socket descriptor. + * F_socket_pipe_close (with error bit) if the local end of a connection oriented socket is closed or SIGPIPE is received (Linux might return this isntead if F_connect_not). * F_socket_time_out (with error bit) if a socket timeout occurred. * * F_failure (with error bit) for any other error. diff --git a/level_0/f_socket/tests/unit/c/test-socket-accept.c b/level_0/f_socket/tests/unit/c/test-socket-accept.c index 7f2ad79..0a4982e 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-accept.c +++ b/level_0/f_socket/tests/unit/c/test-socket-accept.c @@ -40,7 +40,7 @@ void test__f_socket_accept__fails(void **state) { f_status_t statuss[] = { F_access_denied, F_socket_block, - F_file_descriptor, + F_file_descriptor_not, F_buffer_scope_out, F_network_client_not, F_network_client_reach_not, diff --git a/level_0/f_socket/tests/unit/c/test-socket-bind.c b/level_0/f_socket/tests/unit/c/test-socket-bind.c index bd670a3..5285975 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-bind.c +++ b/level_0/f_socket/tests/unit/c/test-socket-bind.c @@ -11,6 +11,7 @@ void test__f_socket_bind__fails(void **state) { EACCES, EADDRINUSE, EADDRNOTAVAIL, + EBADF, EFAULT, EINVAL, ELOOP, @@ -19,6 +20,7 @@ void test__f_socket_bind__fails(void **state) { ENOMEM, ENOTDIR, ENOTSOCK, + EROFS, mock_errno_generic, }; @@ -26,6 +28,7 @@ void test__f_socket_bind__fails(void **state) { F_access_denied, F_busy_address, F_available_not_address, + F_file_descriptor_not, F_buffer_scope_out, F_parameter, F_loop, @@ -34,13 +37,14 @@ void test__f_socket_bind__fails(void **state) { F_memory_not, F_directory_found_not, F_socket_not, + F_file_system_read_only, F_failure, }; { f_socket_t socket = f_socket_t_initialize; - for (uint8_t i = 0; i < 12; ++i) { + for (uint8_t i = 0; i < 14; ++i) { will_return(__wrap_bind, true); will_return(__wrap_bind, errnos[i]); diff --git a/level_0/f_socket/tests/unit/c/test-socket-connect.c b/level_0/f_socket/tests/unit/c/test-socket-connect.c index a5a3dca..1962bc6 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-connect.c +++ b/level_0/f_socket/tests/unit/c/test-socket-connect.c @@ -38,8 +38,8 @@ void test__f_socket_connect__fails(void **state) { F_available_not_address, F_domain_not, F_socket_block, - F_complete_not, - F_file_descriptor, + F_connect_busy, + F_file_descriptor_not, F_connect_refuse, F_progress, F_interrupt, @@ -47,7 +47,7 @@ void test__f_socket_connect__fails(void **state) { F_connect, F_network_reach_not, F_socket_not, - F_prohibited, + F_fire_wall_block, F_protocol_not, F_socket_time_out, F_failure, @@ -73,7 +73,7 @@ void test__f_socket_connect__returns_file_descriptor(void **state) { const f_status_t status = f_socket_connect(&socket); - assert_int_equal(status, F_file_descriptor); + assert_int_equal(status, F_file_descriptor_not); } } diff --git a/level_0/f_socket/tests/unit/c/test-socket-create.c b/level_0/f_socket/tests/unit/c/test-socket-create.c index ae9effa..f82bbb8 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-create.c +++ b/level_0/f_socket/tests/unit/c/test-socket-create.c @@ -31,7 +31,7 @@ void test__f_socket_create__fails(void **state) { F_buffer_sufficient_not, F_memory_not, F_protocol_not, - F_type_not, + F_socket_support_not, F_failure, }; diff --git a/level_0/f_socket/tests/unit/c/test-socket-disconnect.c b/level_0/f_socket/tests/unit/c/test-socket-disconnect.c index 32833b4..0ca2b4e 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-disconnect.c +++ b/level_0/f_socket/tests/unit/c/test-socket-disconnect.c @@ -22,8 +22,8 @@ void test__f_socket_disconnect__fails_for_close_fast(void **state) { }; f_status_t statuss[] = { - F_status_set_error(F_file_descriptor), - F_status_set_error(F_filesystem_quota_block), + F_status_set_error(F_file_descriptor_not), + F_status_set_error(F_file_system_quota_block), F_status_set_error(F_interrupt), F_status_set_error(F_value), F_status_set_error(F_input_output), @@ -67,8 +67,8 @@ void test__f_socket_disconnect__fails_for_close_read(void **state) { }; f_status_t statuss[] = { - F_status_set_error(F_file_descriptor), - F_status_set_error(F_filesystem_quota_block), + F_status_set_error(F_file_descriptor_not), + F_status_set_error(F_file_system_quota_block), F_status_set_error(F_interrupt), F_status_set_error(F_value), F_status_set_error(F_input_output), @@ -123,8 +123,8 @@ void test__f_socket_disconnect__fails_for_close_write(void **state) { }; f_status_t statuss[] = { - F_status_set_error(F_file_descriptor), - F_status_set_error(F_filesystem_quota_block), + F_status_set_error(F_file_descriptor_not), + F_status_set_error(F_file_system_quota_block), F_status_set_error(F_interrupt), F_status_set_error(F_value), F_status_set_error(F_input_output), diff --git a/level_0/f_socket/tests/unit/c/test-socket-listen.c b/level_0/f_socket/tests/unit/c/test-socket-listen.c index 3a172c9..70ecb5b 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-listen.c +++ b/level_0/f_socket/tests/unit/c/test-socket-listen.c @@ -19,7 +19,7 @@ void test__f_socket_listen__fails(void **state) { f_status_t statuss[] = { F_busy_address, - F_file_descriptor, + F_file_descriptor_not, F_socket_not, F_support_not, F_failure, diff --git a/level_0/f_socket/tests/unit/c/test-socket-name_peer.c b/level_0/f_socket/tests/unit/c/test-socket-name_peer.c index def7b9f..8075c6f 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-name_peer.c +++ b/level_0/f_socket/tests/unit/c/test-socket-name_peer.c @@ -20,7 +20,7 @@ void test__f_socket_name_peer__fails(void **state) { }; f_status_t statuss[] = { - F_file_descriptor, + F_file_descriptor_not, F_buffer_scope_out, F_parameter, F_buffer_sufficient_not, diff --git a/level_0/f_socket/tests/unit/c/test-socket-option_get.c b/level_0/f_socket/tests/unit/c/test-socket-option_get.c index 7296d2d..4e8060d 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-option_get.c +++ b/level_0/f_socket/tests/unit/c/test-socket-option_get.c @@ -21,7 +21,7 @@ void test__f_socket_option_get__fails(void **state) { }; f_status_t statuss[] = { - F_file_descriptor, + F_file_descriptor_not, F_buffer_scope_out, F_value, F_socket_not, diff --git a/level_0/f_socket/tests/unit/c/test-socket-option_set.c b/level_0/f_socket/tests/unit/c/test-socket-option_set.c index 6e7e1c3..95977b8 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-option_set.c +++ b/level_0/f_socket/tests/unit/c/test-socket-option_set.c @@ -20,7 +20,7 @@ void test__f_socket_option_set__fails(void **state) { }; f_status_t statuss[] = { - F_file_descriptor, + F_file_descriptor_not, F_buffer_scope_out, F_value, F_socket_not, diff --git a/level_0/f_socket/tests/unit/c/test-socket-read.c b/level_0/f_socket/tests/unit/c/test-socket-read.c index 5d7809c..ecd7f5b 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-read.c +++ b/level_0/f_socket/tests/unit/c/test-socket-read.c @@ -37,7 +37,7 @@ void test__f_socket_read__fails(void **state) { F_access_denied, F_socket_block, F_complete_not, - F_file_descriptor, + F_file_descriptor_not, F_connect_refuse, F_connect_reset, F_address_not, @@ -49,7 +49,7 @@ void test__f_socket_read__fails(void **state) { F_socket_not, F_socket_option_not, F_prohibited, - F_pipe, + F_socket_pipe_close, F_socket_time_out, F_socket_block, F_failure, diff --git a/level_0/f_socket/tests/unit/c/test-socket-read_message.c b/level_0/f_socket/tests/unit/c/test-socket-read_message.c index 7919468..0c423ae 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-read_message.c +++ b/level_0/f_socket/tests/unit/c/test-socket-read_message.c @@ -39,7 +39,7 @@ void test__f_socket_read_message__fails(void **state) { F_access_denied, F_socket_block, F_complete_not, - F_file_descriptor, + F_file_descriptor_not, F_connect_refuse, F_connect_reset, F_address_not, @@ -51,7 +51,7 @@ void test__f_socket_read_message__fails(void **state) { F_socket_not, F_option_not, F_prohibited, - F_pipe, + F_socket_pipe_close, F_socket_time_out, F_socket_block, F_failure, diff --git a/level_0/f_socket/tests/unit/c/test-socket-read_stream.c b/level_0/f_socket/tests/unit/c/test-socket-read_stream.c index d8f27bc..2386669 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-read_stream.c +++ b/level_0/f_socket/tests/unit/c/test-socket-read_stream.c @@ -37,7 +37,7 @@ void test__f_socket_read_stream__fails(void **state) { F_access_denied, F_socket_block, F_complete_not, - F_file_descriptor, + F_file_descriptor_not, F_connect_refuse, F_connect_reset, F_address_not, @@ -49,7 +49,7 @@ void test__f_socket_read_stream__fails(void **state) { F_socket_not, F_option_not, F_prohibited, - F_pipe, + F_socket_pipe_close, F_socket_time_out, F_socket_block, F_failure, diff --git a/level_0/f_socket/tests/unit/c/test-socket-write.c b/level_0/f_socket/tests/unit/c/test-socket-write.c index 3c9daa1..2508a95 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-write.c +++ b/level_0/f_socket/tests/unit/c/test-socket-write.c @@ -40,7 +40,7 @@ void test__f_socket_write__fails(void **state) { F_access_denied, F_socket_block, F_complete_not, - F_file_descriptor, + F_file_descriptor_not, F_connect_refuse, F_connect_reset, F_address_not, @@ -55,7 +55,7 @@ void test__f_socket_write__fails(void **state) { F_socket_not, F_option_not, F_prohibited, - F_pipe, + F_socket_pipe_close, F_socket_time_out, F_socket_block, F_failure, diff --git a/level_0/f_socket/tests/unit/c/test-socket-write_message.c b/level_0/f_socket/tests/unit/c/test-socket-write_message.c index d3c4013..2adc80e 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-write_message.c +++ b/level_0/f_socket/tests/unit/c/test-socket-write_message.c @@ -42,7 +42,7 @@ void test__f_socket_write_message__fails(void **state) { F_access_denied, F_socket_block, F_complete_not, - F_file_descriptor, + F_file_descriptor_not, F_connect_refuse, F_connect_reset, F_address_not, @@ -57,7 +57,7 @@ void test__f_socket_write_message__fails(void **state) { F_socket_not, F_option_not, F_prohibited, - F_pipe, + F_socket_pipe_close, F_socket_time_out, F_socket_block, F_failure, diff --git a/level_0/f_socket/tests/unit/c/test-socket-write_stream.c b/level_0/f_socket/tests/unit/c/test-socket-write_stream.c index 11d4d58..2136340 100644 --- a/level_0/f_socket/tests/unit/c/test-socket-write_stream.c +++ b/level_0/f_socket/tests/unit/c/test-socket-write_stream.c @@ -40,7 +40,7 @@ void test__f_socket_write_stream__fails(void **state) { F_access_denied, F_socket_block, F_complete_not, - F_file_descriptor, + F_file_descriptor_not, F_connect_refuse, F_connect_reset, F_address_not, @@ -55,7 +55,7 @@ void test__f_socket_write_stream__fails(void **state) { F_socket_not, F_option_not, F_prohibited, - F_pipe, + F_socket_pipe_close, F_socket_time_out, F_socket_block, F_failure, diff --git a/level_0/f_status/c/status.h b/level_0/f_status/c/status.h index 5d48998..5b42eb2 100644 --- a/level_0/f_status/c/status.h +++ b/level_0/f_status/c/status.h @@ -362,6 +362,7 @@ extern "C" { F_condition, F_condition_not, F_connect, + F_connect_busy, F_connect_not, F_connect_refuse, F_connect_reset, @@ -519,6 +520,14 @@ extern "C" { F_file_seek, F_file_stat, F_file_synchronize, + F_file_system, + F_file_system_not, + F_file_system_prohibit, + F_file_system_quota_block, + F_file_system_quota_reached, + F_file_system_read_only, + F_file_system_read_write, + F_file_system_write_only, F_file_type_block, F_file_type_character, F_file_type_directory, @@ -541,10 +550,12 @@ extern "C" { F_file_utf, F_file_utf_not, F_file_write, - F_filesystem, - F_filesystem_not, - F_filesystem_quota_block, - F_filesystem_quota_reached, + F_fire_wall, + F_fire_wall_block, + F_fire_wall_close, + F_fire_wall_not, + F_fire_wall_open, + F_fire_wall_pass, F_fine, F_fine_not, F_first, @@ -840,6 +851,10 @@ extern "C" { F_socket_not, F_socket_option, F_socket_option_not, + F_socket_pipe, + F_socket_pipe_close, + F_socket_pipe_not, + F_socket_pipe_open, F_socket_receive, F_socket_receive_not, F_socket_send, diff --git a/level_0/f_status_string/c/status_string.c b/level_0/f_status_string/c/status_string.c index 9ac8d57..20cd513 100644 --- a/level_0/f_status_string/c/status_string.c +++ b/level_0/f_status_string/c/status_string.c @@ -203,6 +203,7 @@ extern "C" { const f_string_static_t f_status_condition_s = macro_f_string_static_t_initialize_1(F_status_condition_s, 0, F_status_condition_s_length); const f_string_static_t f_status_condition_not_s = macro_f_string_static_t_initialize_1(F_status_condition_not_s, 0, F_status_condition_not_s_length); const f_string_static_t f_status_connect_s = macro_f_string_static_t_initialize_1(F_status_connect_s, 0, F_status_connect_s_length); + const f_string_static_t f_status_connect_busy_s = macro_f_string_static_t_initialize_1(F_status_connect_busy_s, 0, F_status_connect_busy_s_length); const f_string_static_t f_status_connect_not_s = macro_f_string_static_t_initialize_1(F_status_connect_not_s, 0, F_status_connect_not_s_length); const f_string_static_t f_status_connect_refuse_s = macro_f_string_static_t_initialize_1(F_status_connect_refuse_s, 0, F_status_connect_refuse_s_length); const f_string_static_t f_status_connect_reset_s = macro_f_string_static_t_initialize_1(F_status_connect_reset_s, 0, F_status_connect_reset_s_length); @@ -360,6 +361,14 @@ extern "C" { const f_string_static_t f_status_file_seek_s = macro_f_string_static_t_initialize_1(F_status_file_seek_s, 0, F_status_file_seek_s_length); const f_string_static_t f_status_file_stat_s = macro_f_string_static_t_initialize_1(F_status_file_stat_s, 0, F_status_file_stat_s_length); const f_string_static_t f_status_file_synchronize_s = macro_f_string_static_t_initialize_1(F_status_file_synchronize_s, 0, F_status_file_synchronize_s_length); + const f_string_static_t f_status_file_system_s = macro_f_string_static_t_initialize_1(F_status_file_system_s, 0, F_status_file_system_s_length); + const f_string_static_t f_status_file_system_not_s = macro_f_string_static_t_initialize_1(F_status_file_system_not_s, 0, F_status_file_system_not_s_length); + const f_string_static_t f_status_file_system_prohibit_s = macro_f_string_static_t_initialize_1(F_status_file_system_prohibit_s, 0, F_status_file_system_prohibit_s_length); + const f_string_static_t f_status_file_system_quota_block_s = macro_f_string_static_t_initialize_1(F_status_file_system_quota_block_s, 0, F_status_file_system_quota_block_s_length); + const f_string_static_t f_status_file_system_quota_reached_s = macro_f_string_static_t_initialize_1(F_status_file_system_quota_reached_s, 0, F_status_file_system_quota_reached_s_length); + const f_string_static_t f_status_file_system_read_only_s = macro_f_string_static_t_initialize_1(F_status_file_system_read_only_s, 0, F_status_file_system_read_only_s_length); + const f_string_static_t f_status_file_system_read_write_s = macro_f_string_static_t_initialize_1(F_status_file_system_read_write_s, 0, F_status_file_system_read_write_s_length); + const f_string_static_t f_status_file_system_write_only_s = macro_f_string_static_t_initialize_1(F_status_file_system_write_only_s, 0, F_status_file_system_write_only_s_length); const f_string_static_t f_status_file_type_block_s = macro_f_string_static_t_initialize_1(F_status_file_type_block_s, 0, F_status_file_type_block_s_length); const f_string_static_t f_status_file_type_character_s = macro_f_string_static_t_initialize_1(F_status_file_type_character_s, 0, F_status_file_type_character_s_length); const f_string_static_t f_status_file_type_directory_s = macro_f_string_static_t_initialize_1(F_status_file_type_directory_s, 0, F_status_file_type_directory_s_length); @@ -382,12 +391,14 @@ extern "C" { const f_string_static_t f_status_file_utf_s = macro_f_string_static_t_initialize_1(F_status_file_utf_s, 0, F_status_file_utf_s_length); const f_string_static_t f_status_file_utf_not_s = macro_f_string_static_t_initialize_1(F_status_file_utf_not_s, 0, F_status_file_utf_not_s_length); const f_string_static_t f_status_file_write_s = macro_f_string_static_t_initialize_1(F_status_file_write_s, 0, F_status_file_write_s_length); - const f_string_static_t f_status_filesystem_s = macro_f_string_static_t_initialize_1(F_status_filesystem_s, 0, F_status_filesystem_s_length); - const f_string_static_t f_status_filesystem_not_s = macro_f_string_static_t_initialize_1(F_status_filesystem_not_s, 0, F_status_filesystem_not_s_length); - const f_string_static_t f_status_filesystem_quota_block_s = macro_f_string_static_t_initialize_1(F_status_filesystem_quota_block_s, 0, F_status_filesystem_quota_block_s_length); - const f_string_static_t f_status_filesystem_quota_reached_s = macro_f_string_static_t_initialize_1(F_status_filesystem_quota_reached_s, 0, F_status_filesystem_quota_reached_s_length); const f_string_static_t f_status_fine_s = macro_f_string_static_t_initialize_1(F_status_fine_s, 0, F_status_fine_s_length); const f_string_static_t f_status_fine_not_s = macro_f_string_static_t_initialize_1(F_status_fine_not_s, 0, F_status_fine_not_s_length); + const f_string_static_t f_status_fire_wall_s = macro_f_string_static_t_initialize_1(F_status_fire_wall_s, 0, F_status_fire_wall_s_length); + const f_string_static_t f_status_fire_wall_block_s = macro_f_string_static_t_initialize_1(F_status_fire_wall_block_s, 0, F_status_fire_wall_block_s_length); + const f_string_static_t f_status_fire_wall_close_s = macro_f_string_static_t_initialize_1(F_status_fire_wall_close_s, 0, F_status_fire_wall_close_s_length); + const f_string_static_t f_status_fire_wall_not_s = macro_f_string_static_t_initialize_1(F_status_fire_wall_not_s, 0, F_status_fire_wall_not_s_length); + const f_string_static_t f_status_fire_wall_open_s = macro_f_string_static_t_initialize_1(F_status_fire_wall_open_s, 0, F_status_fire_wall_open_s_length); + const f_string_static_t f_status_fire_wall_pass_s = macro_f_string_static_t_initialize_1(F_status_fire_wall_pass_s, 0, F_status_fire_wall_pass_s_length); const f_string_static_t f_status_first_s = macro_f_string_static_t_initialize_1(F_status_first_s, 0, F_status_first_s_length); const f_string_static_t f_status_first_not_s = macro_f_string_static_t_initialize_1(F_status_first_not_s, 0, F_status_first_not_s_length); const f_string_static_t f_status_footer_s = macro_f_string_static_t_initialize_1(F_status_footer_s, 0, F_status_footer_s_length); @@ -688,6 +699,10 @@ extern "C" { const f_string_static_t f_status_socket_not_s = macro_f_string_static_t_initialize_1(F_status_socket_not_s, 0, F_status_socket_not_s_length); const f_string_static_t f_status_socket_option_s = macro_f_string_static_t_initialize_1(F_status_socket_option_s, 0, F_status_socket_option_s_length); const f_string_static_t f_status_socket_option_not_s = macro_f_string_static_t_initialize_1(F_status_socket_option_not_s, 0, F_status_socket_option_not_s_length); + const f_string_static_t f_status_socket_pipe_s = macro_f_string_static_t_initialize_1(F_status_socket_pipe_s, 0, F_status_socket_pipe_s_length); + const f_string_static_t f_status_socket_pipe_close_s = macro_f_string_static_t_initialize_1(F_status_socket_pipe_close_s, 0, F_status_socket_pipe_close_s_length); + const f_string_static_t f_status_socket_pipe_not_s = macro_f_string_static_t_initialize_1(F_status_socket_pipe_not_s, 0, F_status_socket_pipe_not_s_length); + const f_string_static_t f_status_socket_pipe_open_s = macro_f_string_static_t_initialize_1(F_status_socket_pipe_open_s, 0, F_status_socket_pipe_open_s_length); const f_string_static_t f_status_socket_receive_s = macro_f_string_static_t_initialize_1(F_status_socket_receive_s, 0, F_status_socket_receive_s_length); const f_string_static_t f_status_socket_receive_not_s = macro_f_string_static_t_initialize_1(F_status_socket_receive_not_s, 0, F_status_socket_receive_not_s_length); const f_string_static_t f_status_socket_send_s = macro_f_string_static_t_initialize_1(F_status_socket_send_s, 0, F_status_socket_send_s_length); @@ -1793,6 +1808,11 @@ extern "C" { break; + case F_connect_busy: + *name = f_status_connect_busy_s; + + break; + case F_connect_not: *name = f_status_connect_not_s; @@ -2578,6 +2598,46 @@ extern "C" { break; + case F_file_system: + *name = f_status_file_system_s; + + break; + + case F_file_system_not: + *name = f_status_file_system_not_s; + + break; + + case F_file_system_prohibit: + *name = f_status_file_system_prohibit_s; + + break; + + case F_file_system_quota_block: + *name = f_status_file_system_quota_block_s; + + break; + + case F_file_system_quota_reached: + *name = f_status_file_system_quota_reached_s; + + break; + + case F_file_system_read_only: + *name = f_status_file_system_read_only_s; + + break; + + case F_file_system_read_write: + *name = f_status_file_system_read_write_s; + + break; + + case F_file_system_write_only: + *name = f_status_file_system_write_only_s; + + break; + case F_file_type_block: *name = f_status_file_type_block_s; @@ -2688,33 +2748,43 @@ extern "C" { break; - case F_filesystem: - *name = f_status_filesystem_s; + case F_fine: + *name = f_status_fine_s; break; - case F_filesystem_not: - *name = f_status_filesystem_not_s; + case F_fine_not: + *name = f_status_fine_not_s; break; - case F_filesystem_quota_block: - *name = f_status_filesystem_quota_block_s; + case F_fire_wall: + *name = f_status_fire_wall_s; break; - case F_filesystem_quota_reached: - *name = f_status_filesystem_quota_reached_s; + case F_fire_wall_block: + *name = f_status_fire_wall_block_s; break; - case F_fine: - *name = f_status_fine_s; + case F_fire_wall_close: + *name = f_status_fire_wall_close_s; break; - case F_fine_not: - *name = f_status_fine_not_s; + case F_fire_wall_not: + *name = f_status_fire_wall_not_s; + + break; + + case F_fire_wall_open: + *name = f_status_fire_wall_open_s; + + break; + + case F_fire_wall_pass: + *name = f_status_fire_wall_pass_s; break; @@ -4184,6 +4254,26 @@ extern "C" { break; + case F_socket_pipe: + *name = f_status_socket_pipe_s; + + break; + + case F_socket_pipe_close: + *name = f_status_socket_pipe_close_s; + + break; + + case F_socket_pipe_not: + *name = f_status_socket_pipe_not_s; + + break; + + case F_socket_pipe_open: + *name = f_status_socket_pipe_open_s; + + break; + case F_socket_receive: *name = f_status_socket_receive_s; diff --git a/level_0/f_status_string/c/status_string.h b/level_0/f_status_string/c/status_string.h index 686da66..6dd5533 100644 --- a/level_0/f_status_string/c/status_string.h +++ b/level_0/f_status_string/c/status_string.h @@ -230,1427 +230,1457 @@ extern "C" { extern const f_string_static_t f_status_signal_reserved_64_s; // Basic. - #define F_status_okay_s "F_okay" - #define F_status_okay_block_s "F_okay_block" - #define F_status_okay_eoa_s "F_okay_eoa" - #define F_status_okay_eof_s "F_okay_eof" - #define F_status_okay_eol_s "F_okay_eol" - #define F_status_okay_eos_s "F_okay_eos" - #define F_status_okay_not_s "F_okay_not" - #define F_status_okay_start_s "F_okay_start" - #define F_status_okay_stop_s "F_okay_stop" - #define F_status_abort_s "F_abort" - #define F_status_abort_not_s "F_abort_not" - #define F_status_absolute_s "F_absolute" - #define F_status_absolute_not_s "F_absolute_not" - #define F_status_access_s "F_access" - #define F_status_access_denied_s "F_access_denied" - #define F_status_access_denied_user_s "F_access_denied_user" - #define F_status_access_denied_group_s "F_access_denied_group" - #define F_status_access_denied_world_s "F_access_denied_world" - #define F_status_access_denied_read_s "F_access_denied_read" - #define F_status_access_denied_write_s "F_access_denied_write" - #define F_status_access_denied_execute_s "F_access_denied_execute" - #define F_status_access_denied_super_s "F_access_denied_super" - #define F_status_access_granted_s "F_access_granted" - #define F_status_access_granted_user_s "F_access_granted_user" - #define F_status_access_granted_group_s "F_access_granted_group" - #define F_status_access_granted_world_s "F_access_granted_world" - #define F_status_access_granted_read_s "F_access_granted_read" - #define F_status_access_granted_write_s "F_access_granted_write" - #define F_status_access_granted_execute_s "F_access_granted_execute" - #define F_status_access_granted_super_s "F_access_granted_super" - #define F_status_access_group_s "F_access_group" - #define F_status_access_mode_s "F_access_mode" - #define F_status_access_not_s "F_access_not" - #define F_status_access_owner_s "F_access_owner" - #define F_status_add_s "F_add" - #define F_status_add_not_s "F_add_not" - #define F_status_address_s "F_address" - #define F_status_address_not_s "F_address_not" - #define F_status_again_s "F_again" - #define F_status_again_not_s "F_again_not" - #define F_status_all_s "F_all" - #define F_status_all_not_s "F_all_not" - #define F_status_array_s "F_array" - #define F_status_array_not_s "F_array_not" - #define F_status_array_too_large_s "F_array_too_large" - #define F_status_array_too_small_s "F_array_too_small" - #define F_status_ascii_s "F_ascii" - #define F_status_ascii_not_s "F_ascii_not" - #define F_status_atomic_s "F_atomic" - #define F_status_atomic_not_s "F_atomic_not" - #define F_status_attribute_s "F_attribute" - #define F_status_attribute_not_s "F_attribute_not" - #define F_status_available_s "F_available" - #define F_status_available_not_s "F_available_not" - #define F_status_available_not_address_s "F_available_not_address" - #define F_status_available_not_buffer_s "F_available_not_buffer" - #define F_status_available_not_device_s "F_available_not_device" - #define F_status_available_not_pipe_s "F_available_not_pipe" - #define F_status_available_not_port_s "F_available_not_port" - #define F_status_available_not_process_s "F_available_not_process" - #define F_status_available_not_socket_s "F_available_not_socket" - #define F_status_backward_s "F_backward" - #define F_status_backward_fast_s "F_backward_fast" - #define F_status_backward_not_s "F_backward_not" - #define F_status_backward_slow_s "F_backward_slow" - #define F_status_barrier_s "F_barrier" - #define F_status_barrier_not_s "F_barrier_not" - #define F_status_base_s "F_base" - #define F_status_base_not_s "F_base_not" - #define F_status_bdo_s "F_bdo" - #define F_status_bdo_not_s "F_bdo_not" - #define F_status_begin_s "F_begin" - #define F_status_begin_not_s "F_begin_not" - #define F_status_block_s "F_block" - #define F_status_block_not_s "F_block_not" - #define F_status_body_s "F_body" - #define F_status_body_not_s "F_body_not" - #define F_status_bottom_s "F_bottom" - #define F_status_bottom_not_s "F_bottom_not" - #define F_status_bound_s "F_bound" - #define F_status_bound_not_s "F_bound_not" - #define F_status_break_s "F_break" - #define F_status_break_not_s "F_break_not" - #define F_status_buffer_s "F_buffer" - #define F_status_buffer_not_s "F_buffer_not" - #define F_status_buffer_overflow_s "F_buffer_overflow" - #define F_status_buffer_restrict_s "F_buffer_restrict" - #define F_status_buffer_scope_out_s "F_buffer_scope_out" - #define F_status_buffer_sufficient_s "F_buffer_sufficient" - #define F_status_buffer_sufficient_not_s "F_buffer_sufficient_not" - #define F_status_buffer_too_large_s "F_buffer_too_large" - #define F_status_buffer_too_small_s "F_buffer_too_small" - #define F_status_buffer_underflow_s "F_buffer_underflow" - #define F_status_busy_s "F_busy" - #define F_status_busy_address_s "F_busy_address" - #define F_status_busy_buffer_s "F_busy_buffer" - #define F_status_busy_device_s "F_busy_device" - #define F_status_busy_not_s "F_busy_not" - #define F_status_busy_pipe_s "F_busy_pipe" - #define F_status_busy_port_s "F_busy_port" - #define F_status_busy_process_s "F_busy_process" - #define F_status_busy_socket_s "F_busy_socket" - #define F_status_call_s "F_call" - #define F_status_call_not_s "F_call_not" - #define F_status_capability_s "F_capability" - #define F_status_capability_not_s "F_capability_not" - #define F_status_case_s "F_case" - #define F_status_case_not_s "F_case_not" - #define F_status_character_s "F_character" - #define F_status_character_not_s "F_character_not" - #define F_status_child_s "F_child" - #define F_status_child_not_s "F_child_not" - #define F_status_clock_s "F_clock" - #define F_status_clock_ahead_s "F_clock_ahead" - #define F_status_clock_behind_s "F_clock_behind" - #define F_status_clock_match_s "F_clock_match" - #define F_status_clock_not_s "F_clock_not" - #define F_status_clock_skew_s "F_clock_skew" - #define F_status_combarudoo_s "F_combarudoo" - #define F_status_combarudoo_not_s "F_combarudoo_not" - #define F_status_complete_s "F_complete" - #define F_status_complete_not_s "F_complete_not" - #define F_status_complete_not_utf_s "F_complete_not_utf" - #define F_status_complete_not_utf_block_s "F_complete_not_utf_block" - #define F_status_complete_not_utf_eoa_s "F_complete_not_utf_eoa" - #define F_status_complete_not_utf_eof_s "F_complete_not_utf_eof" - #define F_status_complete_not_utf_eol_s "F_complete_not_utf_eol" - #define F_status_complete_not_utf_eos_s "F_complete_not_utf_eos" - #define F_status_complete_not_utf_start_s "F_complete_not_utf_start" - #define F_status_complete_not_utf_stop_s "F_complete_not_utf_stop" - #define F_status_condition_s "F_condition" - #define F_status_condition_not_s "F_condition_not" - #define F_status_connect_s "F_connect" - #define F_status_connect_not_s "F_connect_not" - #define F_status_connect_refuse_s "F_connect_refuse" - #define F_status_connect_reset_s "F_connect_reset" - #define F_status_consistent_s "F_consistent" - #define F_status_consistent_not_s "F_consistent_not" - #define F_status_container_s "F_container" - #define F_status_container_not_s "F_container_not" - #define F_status_content_s "F_content" - #define F_status_content_not_s "F_content_not" - #define F_status_continue_s "F_continue" - #define F_status_continue_not_s "F_continue_not" - #define F_status_control_s "F_control" - #define F_status_control_not_s "F_control_not" - #define F_status_control_group_s "F_control_group" - #define F_status_control_group_not_s "F_control_group_not" - #define F_status_controller_s "F_controller" - #define F_status_controller_not_s "F_controller_not" - #define F_status_critical_s "F_critical" - #define F_status_critical_not_s "F_critical_not" - #define F_status_data_s "F_data" - #define F_status_data_not_s "F_data_not" - #define F_status_data_not_block_s "F_data_not_block" - #define F_status_data_not_eoa_s "F_data_not_eoa" - #define F_status_data_not_eof_s "F_data_not_eof" - #define F_status_data_not_eol_s "F_data_not_eol" - #define F_status_data_not_eos_s "F_data_not_eos" - #define F_status_data_not_start_s "F_data_not_start" - #define F_status_data_not_stop_s "F_data_not_stop" - #define F_status_dead_s "F_dead" - #define F_status_dead_not_s "F_dead_not" - #define F_status_deadlock_s "F_deadlock" - #define F_status_deadlock_not_s "F_deadlock_not" - #define F_status_debug_s "F_debug" - #define F_status_debug_not_s "F_debug_not" - #define F_status_descriptor_s "F_descriptor" - #define F_status_descriptor_not_s "F_descriptor_not" - #define F_status_desire_s "F_desire" - #define F_status_desire_not_s "F_desire_not" - #define F_status_device_s "F_device" - #define F_status_device_not_s "F_device_not" - #define F_status_directory_s "F_directory" - #define F_status_directory_close_s "F_directory_close" - #define F_status_directory_closed_s "F_directory_closed" - #define F_status_directory_descriptor_s "F_directory_descriptor" - #define F_status_directory_empty_s "F_directory_empty" - #define F_status_directory_empty_not_s "F_directory_empty_not" - #define F_status_directory_found_s "F_directory_found" - #define F_status_directory_found_not_s "F_directory_found_not" - #define F_status_directory_flush_s "F_directory_flush" - #define F_status_directory_link_max_s "F_directory_link_max" - #define F_status_directory_not_s "F_directory_not" - #define F_status_directory_open_s "F_directory_open" - #define F_status_directory_purge_s "F_directory_purge" - #define F_status_directory_read_s "F_directory_read" - #define F_status_directory_stream_s "F_directory_stream" - #define F_status_directory_support_not_s "F_directory_support_not" - #define F_status_directory_synchronize_s "F_directory_synchronize" - #define F_status_directory_utf_s "F_directory_utf" - #define F_status_directory_utf_not_s "F_directory_utf_not" - #define F_status_directory_write_s "F_directory_write" - #define F_status_disable_s "F_disable" - #define F_status_disable_not_s "F_disable_not" - #define F_status_discard_s "F_discard" - #define F_status_discard_not_s "F_discard_not" - #define F_status_disk_s "F_disk" - #define F_status_disk_not_s "F_disk_not" - #define F_status_domain_s "F_domain" - #define F_status_domain_not_s "F_domain_not" - #define F_status_done_s "F_done" - #define F_status_done_not_s "F_done_not" - #define F_status_drop_s "F_drop" - #define F_status_drop_not_s "F_drop_not" - #define F_status_dummy_s "F_dummy" - #define F_status_dummy_not_s "F_dummy_not" - #define F_status_empty_s "F_empty" - #define F_status_empty_not_s "F_empty_not" - #define F_status_enable_s "F_enable" - #define F_status_enable_not_s "F_enable_not" - #define F_status_encoding_s "F_encoding" - #define F_status_encoding_not_s "F_encoding_not" - #define F_status_end_s "F_end" - #define F_status_end_not_s "F_end_not" - #define F_status_end_not_block_s "F_end_not_block" - #define F_status_end_not_eoa_s "F_end_not_eoa" - #define F_status_end_not_eof_s "F_end_not_eof" - #define F_status_end_not_eol_s "F_end_not_eol" - #define F_status_end_not_eos_s "F_end_not_eos" - #define F_status_end_not_start_s "F_end_not_start" - #define F_status_end_not_stop_s "F_end_not_stop" - #define F_status_end_not_group_s "F_end_not_group" - #define F_status_end_not_group_block_s "F_end_not_group_block" - #define F_status_end_not_group_eoa_s "F_end_not_group_eoa" - #define F_status_end_not_group_eof_s "F_end_not_group_eof" - #define F_status_end_not_group_eol_s "F_end_not_group_eol" - #define F_status_end_not_group_eos_s "F_end_not_group_eos" - #define F_status_end_not_group_start_s "F_end_not_group_start" - #define F_status_end_not_group_stop_s "F_end_not_group_stop" - #define F_status_end_not_nest_s "F_end_not_nest" - #define F_status_end_not_nest_block_s "F_end_not_nest_block" - #define F_status_end_not_nest_eoa_s "F_end_not_nest_eoa" - #define F_status_end_not_nest_eof_s "F_end_not_nest_eof" - #define F_status_end_not_nest_eol_s "F_end_not_nest_eol" - #define F_status_end_not_nest_eos_s "F_end_not_nest_eos" - #define F_status_end_not_nest_start_s "F_end_not_nest_start" - #define F_status_end_not_nest_stop_s "F_end_not_nest_stop" - #define F_status_endian_s "F_endian" - #define F_status_endian_big_s "F_endian_big" - #define F_status_endian_little_s "F_endian_little" - #define F_status_endian_not_s "F_endian_not" - #define F_status_enter_s "F_enter" - #define F_status_enter_not_s "F_enter_not" - #define F_status_eoa_s "F_eoa" - #define F_status_eoa_not_s "F_eoa_not" - #define F_status_eof_s "F_eof" - #define F_status_eof_not_s "F_eof_not" - #define F_status_eol_s "F_eol" - #define F_status_eol_not_s "F_eol_not" - #define F_status_eos_s "F_eos" - #define F_status_eos_not_s "F_eos_not" - #define F_status_equal_to_s "F_equal_to" - #define F_status_equal_to_not_s "F_equal_to_not" - #define F_status_error_s "F_error" - #define F_status_error_not_s "F_error_not" - #define F_status_execute_s "F_execute" - #define F_status_execute_not_s "F_execute_not" - #define F_status_exist_s "F_exist" - #define F_status_exist_not_s "F_exist_not" - #define F_status_exit_s "F_exit" - #define F_status_exit_not_s "F_exit_not" - #define F_status_failure_s "F_failure" - #define F_status_failure_not_s "F_failure_not" - #define F_status_family_s "F_family" - #define F_status_family_not_s "F_family_not" - #define F_status_fifo_s "F_fifo" - #define F_status_fifo_not_s "F_fifo_not" - #define F_status_file_s "F_file" - #define F_status_file_close_s "F_file_close" - #define F_status_file_closed_s "F_file_closed" - #define F_status_file_descriptor_s "F_file_descriptor" - #define F_status_file_descriptor_max_s "F_file_descriptor_max" - #define F_status_file_descriptor_not_s "F_file_descriptor_not" - #define F_status_file_empty_s "F_file_empty" - #define F_status_file_empty_not_s "F_file_empty_not" - #define F_status_file_flush_s "F_file_flush" - #define F_status_file_found_s "F_file_found" - #define F_status_file_found_not_s "F_file_found_not" - #define F_status_file_not_s "F_file_not" - #define F_status_file_open_s "F_file_open" - #define F_status_file_open_max_s "F_file_open_max" - #define F_status_file_opened_s "F_file_opened" - #define F_status_file_overflow_s "F_file_overflow" - #define F_status_file_purge_s "F_file_purge" - #define F_status_file_read_s "F_file_read" - #define F_status_file_reallocation_s "F_file_reallocation" - #define F_status_file_seek_s "F_file_seek" - #define F_status_file_stat_s "F_file_stat" - #define F_status_file_synchronize_s "F_file_synchronize" - #define F_status_file_type_block_s "F_file_type_block" - #define F_status_file_type_character_s "F_file_type_character" - #define F_status_file_type_directory_s "F_file_type_directory" - #define F_status_file_type_fifo_s "F_file_type_fifo" - #define F_status_file_type_link_s "F_file_type_link" - #define F_status_file_type_not_block_s "F_file_type_not_block" - #define F_status_file_type_not_character_s "F_file_type_not_character" - #define F_status_file_type_not_directory_s "F_file_type_not_directory" - #define F_status_file_type_not_fifo_s "F_file_type_not_fifo" - #define F_status_file_type_not_link_s "F_file_type_not_link" - #define F_status_file_type_not_pipe_s "F_file_type_not_pipe" - #define F_status_file_type_not_regular_s "F_file_type_not_regular" - #define F_status_file_type_not_socket_s "F_file_type_not_socket" - #define F_status_file_type_not_unknown_s "F_file_type_not_unknown" - #define F_status_file_type_pipe_s "F_file_type_pipe" - #define F_status_file_type_regular_s "F_file_type_regular" - #define F_status_file_type_socket_s "F_file_type_socket" - #define F_status_file_type_unknown_s "F_file_type_unknown" - #define F_status_file_underflow_s "F_file_underflow" - #define F_status_file_utf_s "F_file_utf" - #define F_status_file_utf_not_s "F_file_utf_not" - #define F_status_file_write_s "F_file_write" - #define F_status_filesystem_s "F_filesystem" - #define F_status_filesystem_not_s "F_filesystem_not" - #define F_status_filesystem_quota_block_s "F_filesystem_quota_block" - #define F_status_filesystem_quota_reached_s "F_filesystem_quota_reached" - #define F_status_fine_s "F_fine" - #define F_status_fine_not_s "F_fine_not" - #define F_status_first_s "F_first" - #define F_status_first_not_s "F_first_not" - #define F_status_footer_s "F_footer" - #define F_status_footer_not_s "F_footer_not" - #define F_status_fork_s "F_fork" - #define F_status_fork_not_s "F_fork_not" - #define F_status_format_s "F_format" - #define F_status_format_not_s "F_format_not" - #define F_status_forward_s "F_forward" - #define F_status_forward_fast_s "F_forward_fast" - #define F_status_forward_not_s "F_forward_not" - #define F_status_forward_slow_s "F_forward_slow" - #define F_status_found_s "F_found" - #define F_status_found_not_s "F_found_not" - #define F_status_full_s "F_full" - #define F_status_full_not_s "F_full_not" - #define F_status_future_s "F_future" - #define F_status_future_not_s "F_future_not" - #define F_status_group_s "F_group" - #define F_status_group_not_s "F_group_not" - #define F_status_halt_s "F_halt" - #define F_status_halt_not_s "F_halt_not" - #define F_status_header_s "F_header" - #define F_status_header_not_s "F_header_not" - #define F_status_help_s "F_help" - #define F_status_help_not_s "F_help_not" - #define F_status_ignore_s "F_ignore" - #define F_status_ignore_not_s "F_ignore_not" - #define F_status_implement_s "F_implement" - #define F_status_implement_not_s "F_implement_not" - #define F_status_input_s "F_input" - #define F_status_input_not_s "F_input_not" - #define F_status_input_output_s "F_input_output" - #define F_status_instance_s "F_instance" - #define F_status_instance_not_s "F_instance_not" - #define F_status_instance_too_many_s "F_instance_too_many" - #define F_status_interrupt_s "F_interrupt" - #define F_status_interrupt_not_s "F_interrupt_not" - #define F_status_is_s "F_is" - #define F_status_is_not_s "F_is_not" - #define F_status_keep_s "F_keep" - #define F_status_keep_not_s "F_keep_not" - #define F_status_keyboard_s "F_keyboard" - #define F_status_keyboard_not_s "F_keyboard_not" - #define F_status_known_s "F_known" - #define F_status_known_not_s "F_known_not" - #define F_status_last_s "F_last" - #define F_status_last_not_s "F_last_not" - #define F_status_limit_s "F_limit" - #define F_status_limit_not_s "F_limit_not" - #define F_status_link_s "F_link" - #define F_status_link_not_s "F_link_not" - #define F_status_live_s "F_live" - #define F_status_live_not_s "F_live_not" - #define F_status_load_s "F_load" - #define F_status_load_not_s "F_load_not" - #define F_status_local_s "F_local" - #define F_status_local_not_s "F_local_not" - #define F_status_lock_s "F_lock" - #define F_status_lock_critical_s "F_lock_critical" - #define F_status_lock_critical_not_s "F_lock_critical_not" - #define F_status_lock_mutex_s "F_lock_mutex" - #define F_status_lock_mutex_not_s "F_lock_mutex_not" - #define F_status_lock_not_s "F_lock_not" - #define F_status_lock_read_s "F_lock_read" - #define F_status_lock_read_not_s "F_lock_read_not" - #define F_status_lock_read_write_s "F_lock_read_write" - #define F_status_lock_read_write_not_s "F_lock_read_write_not" - #define F_status_lock_release_s "F_lock_release" - #define F_status_lock_release_not_s "F_lock_release_not" - #define F_status_lock_signal_s "F_lock_signal" - #define F_status_lock_signal_not_s "F_lock_signal_not" - #define F_status_lock_spin_s "F_lock_spin" - #define F_status_lock_spin_not_s "F_lock_spin_not" - #define F_status_lock_time_s "F_lock_time" - #define F_status_lock_time_not_s "F_lock_time_not" - #define F_status_lock_wait_s "F_lock_wait" - #define F_status_lock_wait_not_s "F_lock_wait_not" - #define F_status_lock_write_s "F_lock_write" - #define F_status_lock_write_not_s "F_lock_write_not" - #define F_status_loop_s "F_loop" - #define F_status_loop_not_s "F_loop_not" - #define F_status_match_s "F_match" - #define F_status_match_not_s "F_match_not" - #define F_status_maximum_s "F_maximum" - #define F_status_maximum_not_s "F_maximum_not" - #define F_status_maybe_s "F_maybe" - #define F_status_maybe_not_s "F_maybe_not" - #define F_status_memory_s "F_memory" - #define F_status_memory_not_s "F_memory_not" - #define F_status_message_s "F_message" - #define F_status_message_not_s "F_message_not" - #define F_status_middle_s "F_middle" - #define F_status_middle_not_s "F_middle_not" - #define F_status_minimum_s "F_minimum" - #define F_status_minimum_not_s "F_minimum_not" - #define F_status_minor_s "F_minor" - #define F_status_minor_not_s "F_minor_not" - #define F_status_miss_s "F_miss" - #define F_status_miss_not_s "F_miss_not" - #define F_status_moderate_s "F_moderate" - #define F_status_moderate_not_s "F_moderate_not" - #define F_status_mount_s "F_mount" - #define F_status_mount_not_s "F_mount_not" - #define F_status_mouse_s "F_mouse" - #define F_status_mouse_not_s "F_mouse_not" - #define F_status_mute_s "F_mute" - #define F_status_mute_not_s "F_mute_not" - #define F_status_mutex_s "F_mutex" - #define F_status_mutex_not_s "F_mutex_not" - #define F_status_name_s "F_name" - #define F_status_name_not_s "F_name_not" - #define F_status_need_s "F_need" - #define F_status_need_not_s "F_need_not" - #define F_status_network_s "F_network" - #define F_status_network_busy_s "F_network_busy" - #define F_status_network_busy_not_s "F_network_busy_not" - #define F_status_network_client_s "F_network_client" - #define F_status_network_client_not_s "F_network_client_not" - #define F_status_network_device_s "F_network_device" - #define F_status_network_device_not_s "F_network_device_not" - #define F_status_network_down_s "F_network_down" - #define F_status_network_down_not_s "F_network_down_not" - #define F_status_network_found_s "F_network_found" - #define F_status_network_found_not_s "F_network_found_not" - #define F_status_network_lost_s "F_network_lost" - #define F_status_network_lost_not_s "F_network_lost_not" - #define F_status_network_not_s "F_network_not" - #define F_status_network_reach_s "F_network_reach" - #define F_status_network_reach_client_s "F_network_reach_client" - #define F_status_network_client_reach_not_s "F_network_client_reach_not" - #define F_status_network_reach_not_s "F_network_reach_not" - #define F_status_network_reach_server_s "F_network_reach_server" - #define F_status_network_reach_server_not_s "F_network_reach_server_not" - #define F_status_network_server_s "F_network_server" - #define F_status_network_server_not_s "F_network_server_not" - #define F_status_network_time_s "F_network_time" - #define F_status_network_time_not_s "F_network_time_not" - #define F_status_network_up_s "F_network_up" - #define F_status_network_up_not_s "F_network_up_not" - #define F_status_network_version_four_s "F_network_version_four" - #define F_status_network_version_four_not_s "F_network_version_four_not" - #define F_status_network_version_six_s "F_network_version_six" - #define F_status_network_version_six_not_s "F_network_version_six_not" - #define F_status_next_s "F_next" - #define F_status_next_not_s "F_next_not" - #define F_status_nice_s "F_nice" - #define F_status_nice_not_s "F_nice_not" - #define F_status_no_s "F_no" - #define F_status_no_not_s "F_no_not" - #define F_status_none_s "F_none" - #define F_status_none_not_s "F_none_not" - #define F_status_number_s "F_number" - #define F_status_number_decimal_s "F_number_decimal" - #define F_status_number_decimal_not_s "F_number_decimal_not" - #define F_status_number_divide_by_zero_s "F_number_divide_by_zero" - #define F_status_number_negative_s "F_number_negative" - #define F_status_number_negative_not_s "F_number_negative_not" - #define F_status_number_not_s "F_number_not" - #define F_status_number_overflow_s "F_number_overflow" - #define F_status_number_positive_s "F_number_positive" - #define F_status_number_positive_not_s "F_number_positive_not" - #define F_status_number_too_large_s "F_number_too_large" - #define F_status_number_too_small_s "F_number_too_small" - #define F_status_number_underflow_s "F_number_underflow" - #define F_status_number_whole_s "F_number_whole" - #define F_status_number_whole_not_s "F_number_whole_not" - #define F_status_number_zero_s "F_number_zero" - #define F_status_number_zero_not_s "F_number_zero_not" - #define F_status_object_s "F_object" - #define F_status_object_not_s "F_object_not" - #define F_status_once_s "F_once" - #define F_status_once_not_s "F_once_not" - #define F_status_option_s "F_option" - #define F_status_option_not_s "F_option_not" - #define F_status_output_s "F_output" - #define F_status_output_not_s "F_output_not" - #define F_status_packet_s "F_packet" - #define F_status_packet_not_s "F_packet_not" - #define F_status_packet_too_large_s "F_packet_too_large" - #define F_status_packet_too_large_not_s "F_packet_too_large_not" - #define F_status_packet_too_small_s "F_packet_too_small" - #define F_status_packet_too_small_not_s "F_packet_too_small_not" - #define F_status_parameter_s "F_parameter" - #define F_status_parameter_not_s "F_parameter_not" - #define F_status_parent_s "F_parent" - #define F_status_parent_not_s "F_parent_not" - #define F_status_partial_s "F_partial" - #define F_status_partial_not_s "F_partial_not" - #define F_status_past_s "F_past" - #define F_status_past_not_s "F_past_not" - #define F_status_pause_s "F_pause" - #define F_status_pause_not_s "F_pause_not" - #define F_status_payload_s "F_payload" - #define F_status_payload_not_s "F_payload_not" - #define F_status_payload_too_large_s "F_payload_too_large" - #define F_status_payload_too_large_not_s "F_payload_too_large_not" - #define F_status_payload_too_small_s "F_payload_too_small" - #define F_status_payload_too_small_not_s "F_payload_too_small_not" - #define F_status_pipe_s "F_pipe" - #define F_status_pipe_not_s "F_pipe_not" - #define F_status_port_s "F_port" - #define F_status_port_not_s "F_port_not" - #define F_status_present_s "F_present" - #define F_status_present_not_s "F_present_not" - #define F_status_pretty_s "F_pretty" - #define F_status_pretty_not_s "F_pretty_not" - #define F_status_previous_s "F_previous" - #define F_status_previous_not_s "F_previous_not" - #define F_status_process_s "F_process" - #define F_status_process_not_s "F_process_not" - #define F_status_process_too_many_s "F_process_too_many" - #define F_status_processor_s "F_processor" - #define F_status_processor_not_s "F_processor_not" - #define F_status_progress_s "F_progress" - #define F_status_progress_not_s "F_progress_not" - #define F_status_prohibited_s "F_prohibited" - #define F_status_prohibited_not_s "F_prohibited_not" - #define F_status_property_s "F_property" - #define F_status_property_not_s "F_property_not" - #define F_status_protocol_s "F_protocol" - #define F_status_protocol_not_s "F_protocol_not" - #define F_status_protocol_option_s "F_protocol_option" - #define F_status_protocol_option_not_s "F_protocol_option_not" - #define F_status_range_s "F_range" - #define F_status_range_not_s "F_range_not" - #define F_status_read_s "F_read" - #define F_status_read_not_s "F_read_not" - #define F_status_read_only_s "F_read_only" - #define F_status_read_write_s "F_read_write" - #define F_status_read_write_execute_s "F_read_write_execute" - #define F_status_read_write_execute_not_s "F_read_write_execute_not" - #define F_status_read_write_execute_only_s "F_read_write_execute_only" - #define F_status_read_write_not_s "F_read_write_not" - #define F_status_read_write_only_s "F_read_write_only" - #define F_status_ready_s "F_ready" - #define F_status_ready_not_s "F_ready_not" - #define F_status_receive_s "F_receive" - #define F_status_receive_not_s "F_receive_not" - #define F_status_recover_s "F_recover" - #define F_status_recover_not_s "F_recover_not" - #define F_status_recurse_s "F_recurse" - #define F_status_recurse_not_s "F_recurse_not" - #define F_status_refresh_s "F_refresh" - #define F_status_refresh_not_s "F_refresh_not" - #define F_status_regular_s "F_regular" - #define F_status_regular_not_s "F_regular_not" - #define F_status_relative_s "F_relative" - #define F_status_relative_not_s "F_relative_not" - #define F_status_reload_s "F_reload" - #define F_status_reload_not_s "F_reload_not" - #define F_status_remote_s "F_remote" - #define F_status_remote_not_s "F_remote_not" - #define F_status_remove_s "F_remove" - #define F_status_remove_not_s "F_remove_not" - #define F_status_repeat_s "F_repeat" - #define F_status_repeat_not_s "F_repeat_not" - #define F_status_require_s "F_require" - #define F_status_require_not_s "F_require_not" - #define F_status_resource_s "F_resource" - #define F_status_resource_not_s "F_resource_not" - #define F_status_restart_s "F_restart" - #define F_status_restart_not_s "F_restart_not" - #define F_status_restore_s "F_restore" - #define F_status_restore_not_s "F_restore_not" - #define F_status_resume_s "F_resume" - #define F_status_resume_not_s "F_resume_not" - #define F_status_revert_s "F_revert" - #define F_status_revert_not_s "F_revert_not" - #define F_status_robust_s "F_robust" - #define F_status_robust_not_s "F_robust_not" - #define F_status_schedule_s "F_schedule" - #define F_status_schedule_not_s "F_schedule_not" - #define F_status_search_s "F_search" - #define F_status_search_not_s "F_search_not" - #define F_status_semaphore_s "F_semaphore" - #define F_status_semaphore_not_s "F_semaphore_not" - #define F_status_send_s "F_send" - #define F_status_send_not_s "F_send_not" - #define F_status_size_s "F_size" - #define F_status_size_not_s "F_size_not" - #define F_status_signal_s "F_signal" - #define F_status_signal_not_s "F_signal_not" - #define F_status_skip_s "F_skip" - #define F_status_skip_not_s "F_skip_not" - #define F_status_socket_s "F_socket" - #define F_status_socket_block_s "F_socket_block" - #define F_status_socket_block_not_s "F_socket_block_not" - #define F_status_socket_client_s "F_socket_client" - #define F_status_socket_client_not_s "F_socket_client_not" - #define F_status_socket_not_s "F_socket_not" - #define F_status_socket_option_s "F_socket_option" - #define F_status_socket_option_not_s "F_socket_option_not" - #define F_status_socket_receive_s "F_socket_receive" - #define F_status_socket_receive_not_s "F_socket_receive_not" - #define F_status_socket_send_s "F_socket_send" - #define F_status_socket_send_not_s "F_socket_send_not" - #define F_status_socket_stream_s "F_socket_stream" - #define F_status_socket_stream_not_s "F_socket_stream_not" - #define F_status_socket_support_s "F_socket_support" - #define F_status_socket_support_not_s "F_socket_support_not" - #define F_status_socket_target_s "F_socket_target" - #define F_status_socket_target_not_s "F_socket_target_not" - #define F_status_socket_time_s "F_socket_time" - #define F_status_socket_time_not_s "F_socket_time_not" - #define F_status_socket_time_out_s "F_socket_time_out" - #define F_status_some_s "F_some" - #define F_status_some_not_s "F_some_not" - #define F_status_space_s "F_space" - #define F_status_space_not_s "F_space_not" - #define F_status_spin_s "F_spin" - #define F_status_spin_not_s "F_spin_not" - #define F_status_start_s "F_start" - #define F_status_start_not_s "F_start_not" - #define F_status_status_s "F_status" - #define F_status_status_not_s "F_status_not" - #define F_status_stop_s "F_stop" - #define F_status_stop_not_s "F_stop_not" - #define F_status_store_s "F_store" - #define F_status_store_not_s "F_store_not" - #define F_status_stream_s "F_stream" - #define F_status_stream_not_s "F_stream_not" - #define F_status_string_s "F_string" - #define F_status_string_not_s "F_string_not" - #define F_status_string_too_large_s "F_string_too_large" - #define F_status_string_too_small_s "F_string_too_small" - #define F_status_syntax_s "F_syntax" - #define F_status_syntax_not_s "F_syntax_not" - #define F_status_terminal_s "F_terminal" - #define F_status_terminal_access_s "F_terminal_access" - #define F_status_terminal_known_s "F_terminal_known" - #define F_status_terminal_known_not_s "F_terminal_known_not" - #define F_status_terminal_not_s "F_terminal_not" - #define F_status_terminal_prohibited_s "F_terminal_prohibited" - #define F_status_terminal_read_s "F_terminal_read" - #define F_status_terminal_valid_s "F_terminal_valid" - #define F_status_terminal_valid_not_s "F_terminal_valid_not" - #define F_status_terminal_write_s "F_terminal_write" - #define F_status_terminate_s "F_terminate" - #define F_status_terminate_not_s "F_terminate_not" - #define F_status_test_s "F_test" - #define F_status_test_not_s "F_test_not" - #define F_status_than_greater_s "F_than_greater" - #define F_status_than_less_s "F_than_less" - #define F_status_thread_s "F_thread" - #define F_status_thread_not_s "F_thread_not" - #define F_status_time_s "F_time" - #define F_status_time_not_s "F_time_not" - #define F_status_time_out_s "F_time_out" - #define F_status_too_large_s "F_too_large" - #define F_status_too_small_s "F_too_small" - #define F_status_top_s "F_top" - #define F_status_top_not_s "F_top_not" - #define F_status_touch_s "F_touch" - #define F_status_touch_not_s "F_touch_not" - #define F_status_type_s "F_type" - #define F_status_type_not_s "F_type_not" - #define F_status_success_s "F_success" - #define F_status_success_not_s "F_success_not" - #define F_status_support_s "F_support" - #define F_status_support_not_s "F_support_not" - #define F_status_ugly_s "F_ugly" - #define F_status_ugly_not_s "F_ugly_not" - #define F_status_unload_s "F_unload" - #define F_status_unload_not_s "F_unload_not" - #define F_status_user_s "F_user" - #define F_status_user_not_s "F_user_not" - #define F_status_utf_s "F_utf" - #define F_status_utf_fragment_s "F_utf_fragment" - #define F_status_utf_fragment_not_s "F_utf_fragment_not" - #define F_status_utf_not_s "F_utf_not" - #define F_status_valid_s "F_valid" - #define F_status_valid_not_s "F_valid_not" - #define F_status_value_s "F_value" - #define F_status_value_not_s "F_value_not" - #define F_status_wait_s "F_wait" - #define F_status_wait_not_s "F_wait_not" - #define F_status_want_s "F_want" - #define F_status_want_not_s "F_want_not" - #define F_status_warning_s "F_warning" - #define F_status_warning_not_s "F_warning_not" - #define F_status_wish_s "F_wish" - #define F_status_wish_not_s "F_wish_not" - #define F_status_word_s "F_word" - #define F_status_word_not_s "F_word_not" - #define F_status_world_s "F_world" - #define F_status_world_not_s "F_world_not" - #define F_status_write_s "F_write" - #define F_status_write_not_s "F_write_not" - #define F_status_write_only_s "F_write_only" - #define F_status_yes_s "F_yes" - #define F_status_yes_not_s "F_yes_not" + #define F_status_okay_s "F_okay" + #define F_status_okay_block_s "F_okay_block" + #define F_status_okay_eoa_s "F_okay_eoa" + #define F_status_okay_eof_s "F_okay_eof" + #define F_status_okay_eol_s "F_okay_eol" + #define F_status_okay_eos_s "F_okay_eos" + #define F_status_okay_not_s "F_okay_not" + #define F_status_okay_start_s "F_okay_start" + #define F_status_okay_stop_s "F_okay_stop" + #define F_status_abort_s "F_abort" + #define F_status_abort_not_s "F_abort_not" + #define F_status_absolute_s "F_absolute" + #define F_status_absolute_not_s "F_absolute_not" + #define F_status_access_s "F_access" + #define F_status_access_denied_s "F_access_denied" + #define F_status_access_denied_user_s "F_access_denied_user" + #define F_status_access_denied_group_s "F_access_denied_group" + #define F_status_access_denied_world_s "F_access_denied_world" + #define F_status_access_denied_read_s "F_access_denied_read" + #define F_status_access_denied_write_s "F_access_denied_write" + #define F_status_access_denied_execute_s "F_access_denied_execute" + #define F_status_access_denied_super_s "F_access_denied_super" + #define F_status_access_granted_s "F_access_granted" + #define F_status_access_granted_user_s "F_access_granted_user" + #define F_status_access_granted_group_s "F_access_granted_group" + #define F_status_access_granted_world_s "F_access_granted_world" + #define F_status_access_granted_read_s "F_access_granted_read" + #define F_status_access_granted_write_s "F_access_granted_write" + #define F_status_access_granted_execute_s "F_access_granted_execute" + #define F_status_access_granted_super_s "F_access_granted_super" + #define F_status_access_group_s "F_access_group" + #define F_status_access_mode_s "F_access_mode" + #define F_status_access_not_s "F_access_not" + #define F_status_access_owner_s "F_access_owner" + #define F_status_add_s "F_add" + #define F_status_add_not_s "F_add_not" + #define F_status_address_s "F_address" + #define F_status_address_not_s "F_address_not" + #define F_status_again_s "F_again" + #define F_status_again_not_s "F_again_not" + #define F_status_all_s "F_all" + #define F_status_all_not_s "F_all_not" + #define F_status_array_s "F_array" + #define F_status_array_not_s "F_array_not" + #define F_status_array_too_large_s "F_array_too_large" + #define F_status_array_too_small_s "F_array_too_small" + #define F_status_ascii_s "F_ascii" + #define F_status_ascii_not_s "F_ascii_not" + #define F_status_atomic_s "F_atomic" + #define F_status_atomic_not_s "F_atomic_not" + #define F_status_attribute_s "F_attribute" + #define F_status_attribute_not_s "F_attribute_not" + #define F_status_available_s "F_available" + #define F_status_available_not_s "F_available_not" + #define F_status_available_not_address_s "F_available_not_address" + #define F_status_available_not_buffer_s "F_available_not_buffer" + #define F_status_available_not_device_s "F_available_not_device" + #define F_status_available_not_pipe_s "F_available_not_pipe" + #define F_status_available_not_port_s "F_available_not_port" + #define F_status_available_not_process_s "F_available_not_process" + #define F_status_available_not_socket_s "F_available_not_socket" + #define F_status_backward_s "F_backward" + #define F_status_backward_fast_s "F_backward_fast" + #define F_status_backward_not_s "F_backward_not" + #define F_status_backward_slow_s "F_backward_slow" + #define F_status_barrier_s "F_barrier" + #define F_status_barrier_not_s "F_barrier_not" + #define F_status_base_s "F_base" + #define F_status_base_not_s "F_base_not" + #define F_status_bdo_s "F_bdo" + #define F_status_bdo_not_s "F_bdo_not" + #define F_status_begin_s "F_begin" + #define F_status_begin_not_s "F_begin_not" + #define F_status_block_s "F_block" + #define F_status_block_not_s "F_block_not" + #define F_status_body_s "F_body" + #define F_status_body_not_s "F_body_not" + #define F_status_bottom_s "F_bottom" + #define F_status_bottom_not_s "F_bottom_not" + #define F_status_bound_s "F_bound" + #define F_status_bound_not_s "F_bound_not" + #define F_status_break_s "F_break" + #define F_status_break_not_s "F_break_not" + #define F_status_buffer_s "F_buffer" + #define F_status_buffer_not_s "F_buffer_not" + #define F_status_buffer_overflow_s "F_buffer_overflow" + #define F_status_buffer_restrict_s "F_buffer_restrict" + #define F_status_buffer_scope_out_s "F_buffer_scope_out" + #define F_status_buffer_sufficient_s "F_buffer_sufficient" + #define F_status_buffer_sufficient_not_s "F_buffer_sufficient_not" + #define F_status_buffer_too_large_s "F_buffer_too_large" + #define F_status_buffer_too_small_s "F_buffer_too_small" + #define F_status_buffer_underflow_s "F_buffer_underflow" + #define F_status_busy_s "F_busy" + #define F_status_busy_address_s "F_busy_address" + #define F_status_busy_buffer_s "F_busy_buffer" + #define F_status_busy_device_s "F_busy_device" + #define F_status_busy_not_s "F_busy_not" + #define F_status_busy_pipe_s "F_busy_pipe" + #define F_status_busy_port_s "F_busy_port" + #define F_status_busy_process_s "F_busy_process" + #define F_status_busy_socket_s "F_busy_socket" + #define F_status_call_s "F_call" + #define F_status_call_not_s "F_call_not" + #define F_status_capability_s "F_capability" + #define F_status_capability_not_s "F_capability_not" + #define F_status_case_s "F_case" + #define F_status_case_not_s "F_case_not" + #define F_status_character_s "F_character" + #define F_status_character_not_s "F_character_not" + #define F_status_child_s "F_child" + #define F_status_child_not_s "F_child_not" + #define F_status_clock_s "F_clock" + #define F_status_clock_ahead_s "F_clock_ahead" + #define F_status_clock_behind_s "F_clock_behind" + #define F_status_clock_match_s "F_clock_match" + #define F_status_clock_not_s "F_clock_not" + #define F_status_clock_skew_s "F_clock_skew" + #define F_status_combarudoo_s "F_combarudoo" + #define F_status_combarudoo_not_s "F_combarudoo_not" + #define F_status_complete_s "F_complete" + #define F_status_complete_not_s "F_complete_not" + #define F_status_complete_not_utf_s "F_complete_not_utf" + #define F_status_complete_not_utf_block_s "F_complete_not_utf_block" + #define F_status_complete_not_utf_eoa_s "F_complete_not_utf_eoa" + #define F_status_complete_not_utf_eof_s "F_complete_not_utf_eof" + #define F_status_complete_not_utf_eol_s "F_complete_not_utf_eol" + #define F_status_complete_not_utf_eos_s "F_complete_not_utf_eos" + #define F_status_complete_not_utf_start_s "F_complete_not_utf_start" + #define F_status_complete_not_utf_stop_s "F_complete_not_utf_stop" + #define F_status_condition_s "F_condition" + #define F_status_condition_not_s "F_condition_not" + #define F_status_connect_s "F_connect" + #define F_status_connect_busy_s "F_connect_busy" + #define F_status_connect_not_s "F_connect_not" + #define F_status_connect_refuse_s "F_connect_refuse" + #define F_status_connect_reset_s "F_connect_reset" + #define F_status_consistent_s "F_consistent" + #define F_status_consistent_not_s "F_consistent_not" + #define F_status_container_s "F_container" + #define F_status_container_not_s "F_container_not" + #define F_status_content_s "F_content" + #define F_status_content_not_s "F_content_not" + #define F_status_continue_s "F_continue" + #define F_status_continue_not_s "F_continue_not" + #define F_status_control_s "F_control" + #define F_status_control_not_s "F_control_not" + #define F_status_control_group_s "F_control_group" + #define F_status_control_group_not_s "F_control_group_not" + #define F_status_controller_s "F_controller" + #define F_status_controller_not_s "F_controller_not" + #define F_status_critical_s "F_critical" + #define F_status_critical_not_s "F_critical_not" + #define F_status_data_s "F_data" + #define F_status_data_not_s "F_data_not" + #define F_status_data_not_block_s "F_data_not_block" + #define F_status_data_not_eoa_s "F_data_not_eoa" + #define F_status_data_not_eof_s "F_data_not_eof" + #define F_status_data_not_eol_s "F_data_not_eol" + #define F_status_data_not_eos_s "F_data_not_eos" + #define F_status_data_not_start_s "F_data_not_start" + #define F_status_data_not_stop_s "F_data_not_stop" + #define F_status_dead_s "F_dead" + #define F_status_dead_not_s "F_dead_not" + #define F_status_deadlock_s "F_deadlock" + #define F_status_deadlock_not_s "F_deadlock_not" + #define F_status_debug_s "F_debug" + #define F_status_debug_not_s "F_debug_not" + #define F_status_descriptor_s "F_descriptor" + #define F_status_descriptor_not_s "F_descriptor_not" + #define F_status_desire_s "F_desire" + #define F_status_desire_not_s "F_desire_not" + #define F_status_device_s "F_device" + #define F_status_device_not_s "F_device_not" + #define F_status_directory_s "F_directory" + #define F_status_directory_close_s "F_directory_close" + #define F_status_directory_closed_s "F_directory_closed" + #define F_status_directory_descriptor_s "F_directory_descriptor" + #define F_status_directory_empty_s "F_directory_empty" + #define F_status_directory_empty_not_s "F_directory_empty_not" + #define F_status_directory_found_s "F_directory_found" + #define F_status_directory_found_not_s "F_directory_found_not" + #define F_status_directory_flush_s "F_directory_flush" + #define F_status_directory_link_max_s "F_directory_link_max" + #define F_status_directory_not_s "F_directory_not" + #define F_status_directory_open_s "F_directory_open" + #define F_status_directory_purge_s "F_directory_purge" + #define F_status_directory_read_s "F_directory_read" + #define F_status_directory_stream_s "F_directory_stream" + #define F_status_directory_support_not_s "F_directory_support_not" + #define F_status_directory_synchronize_s "F_directory_synchronize" + #define F_status_directory_utf_s "F_directory_utf" + #define F_status_directory_utf_not_s "F_directory_utf_not" + #define F_status_directory_write_s "F_directory_write" + #define F_status_disable_s "F_disable" + #define F_status_disable_not_s "F_disable_not" + #define F_status_discard_s "F_discard" + #define F_status_discard_not_s "F_discard_not" + #define F_status_disk_s "F_disk" + #define F_status_disk_not_s "F_disk_not" + #define F_status_domain_s "F_domain" + #define F_status_domain_not_s "F_domain_not" + #define F_status_done_s "F_done" + #define F_status_done_not_s "F_done_not" + #define F_status_drop_s "F_drop" + #define F_status_drop_not_s "F_drop_not" + #define F_status_dummy_s "F_dummy" + #define F_status_dummy_not_s "F_dummy_not" + #define F_status_empty_s "F_empty" + #define F_status_empty_not_s "F_empty_not" + #define F_status_enable_s "F_enable" + #define F_status_enable_not_s "F_enable_not" + #define F_status_encoding_s "F_encoding" + #define F_status_encoding_not_s "F_encoding_not" + #define F_status_end_s "F_end" + #define F_status_end_not_s "F_end_not" + #define F_status_end_not_block_s "F_end_not_block" + #define F_status_end_not_eoa_s "F_end_not_eoa" + #define F_status_end_not_eof_s "F_end_not_eof" + #define F_status_end_not_eol_s "F_end_not_eol" + #define F_status_end_not_eos_s "F_end_not_eos" + #define F_status_end_not_start_s "F_end_not_start" + #define F_status_end_not_stop_s "F_end_not_stop" + #define F_status_end_not_group_s "F_end_not_group" + #define F_status_end_not_group_block_s "F_end_not_group_block" + #define F_status_end_not_group_eoa_s "F_end_not_group_eoa" + #define F_status_end_not_group_eof_s "F_end_not_group_eof" + #define F_status_end_not_group_eol_s "F_end_not_group_eol" + #define F_status_end_not_group_eos_s "F_end_not_group_eos" + #define F_status_end_not_group_start_s "F_end_not_group_start" + #define F_status_end_not_group_stop_s "F_end_not_group_stop" + #define F_status_end_not_nest_s "F_end_not_nest" + #define F_status_end_not_nest_block_s "F_end_not_nest_block" + #define F_status_end_not_nest_eoa_s "F_end_not_nest_eoa" + #define F_status_end_not_nest_eof_s "F_end_not_nest_eof" + #define F_status_end_not_nest_eol_s "F_end_not_nest_eol" + #define F_status_end_not_nest_eos_s "F_end_not_nest_eos" + #define F_status_end_not_nest_start_s "F_end_not_nest_start" + #define F_status_end_not_nest_stop_s "F_end_not_nest_stop" + #define F_status_endian_s "F_endian" + #define F_status_endian_big_s "F_endian_big" + #define F_status_endian_little_s "F_endian_little" + #define F_status_endian_not_s "F_endian_not" + #define F_status_enter_s "F_enter" + #define F_status_enter_not_s "F_enter_not" + #define F_status_eoa_s "F_eoa" + #define F_status_eoa_not_s "F_eoa_not" + #define F_status_eof_s "F_eof" + #define F_status_eof_not_s "F_eof_not" + #define F_status_eol_s "F_eol" + #define F_status_eol_not_s "F_eol_not" + #define F_status_eos_s "F_eos" + #define F_status_eos_not_s "F_eos_not" + #define F_status_equal_to_s "F_equal_to" + #define F_status_equal_to_not_s "F_equal_to_not" + #define F_status_error_s "F_error" + #define F_status_error_not_s "F_error_not" + #define F_status_execute_s "F_execute" + #define F_status_execute_not_s "F_execute_not" + #define F_status_exist_s "F_exist" + #define F_status_exist_not_s "F_exist_not" + #define F_status_exit_s "F_exit" + #define F_status_exit_not_s "F_exit_not" + #define F_status_failure_s "F_failure" + #define F_status_failure_not_s "F_failure_not" + #define F_status_family_s "F_family" + #define F_status_family_not_s "F_family_not" + #define F_status_fifo_s "F_fifo" + #define F_status_fifo_not_s "F_fifo_not" + #define F_status_file_s "F_file" + #define F_status_file_close_s "F_file_close" + #define F_status_file_closed_s "F_file_closed" + #define F_status_file_descriptor_s "F_file_descriptor" + #define F_status_file_descriptor_max_s "F_file_descriptor_max" + #define F_status_file_descriptor_not_s "F_file_descriptor_not" + #define F_status_file_empty_s "F_file_empty" + #define F_status_file_empty_not_s "F_file_empty_not" + #define F_status_file_flush_s "F_file_flush" + #define F_status_file_found_s "F_file_found" + #define F_status_file_found_not_s "F_file_found_not" + #define F_status_file_not_s "F_file_not" + #define F_status_file_open_s "F_file_open" + #define F_status_file_open_max_s "F_file_open_max" + #define F_status_file_opened_s "F_file_opened" + #define F_status_file_overflow_s "F_file_overflow" + #define F_status_file_purge_s "F_file_purge" + #define F_status_file_read_s "F_file_read" + #define F_status_file_reallocation_s "F_file_reallocation" + #define F_status_file_seek_s "F_file_seek" + #define F_status_file_stat_s "F_file_stat" + #define F_status_file_synchronize_s "F_file_synchronize" + #define F_status_file_type_block_s "F_file_type_block" + #define F_status_file_type_character_s "F_file_type_character" + #define F_status_file_type_directory_s "F_file_type_directory" + #define F_status_file_type_fifo_s "F_file_type_fifo" + #define F_status_file_type_link_s "F_file_type_link" + #define F_status_file_type_not_block_s "F_file_type_not_block" + #define F_status_file_type_not_character_s "F_file_type_not_character" + #define F_status_file_type_not_directory_s "F_file_type_not_directory" + #define F_status_file_type_not_fifo_s "F_file_type_not_fifo" + #define F_status_file_type_not_link_s "F_file_type_not_link" + #define F_status_file_type_not_pipe_s "F_file_type_not_pipe" + #define F_status_file_type_not_regular_s "F_file_type_not_regular" + #define F_status_file_type_not_socket_s "F_file_type_not_socket" + #define F_status_file_type_not_unknown_s "F_file_type_not_unknown" + #define F_status_file_type_pipe_s "F_file_type_pipe" + #define F_status_file_type_regular_s "F_file_type_regular" + #define F_status_file_type_socket_s "F_file_type_socket" + #define F_status_file_type_unknown_s "F_file_type_unknown" + #define F_status_file_underflow_s "F_file_underflow" + #define F_status_file_utf_s "F_file_utf" + #define F_status_file_utf_not_s "F_file_utf_not" + #define F_status_file_write_s "F_file_write" + #define F_status_file_system_s "F_file_system" + #define F_status_file_system_not_s "F_file_system_not" + #define F_status_file_system_prohibit_s "F_file_system_prohibit" + #define F_status_file_system_quota_block_s "F_file_system_quota_block" + #define F_status_file_system_quota_reached_s "F_file_system_quota_reached" + #define F_status_file_system_read_only_s "F_file_system_read_only" + #define F_status_file_system_read_write_s "F_file_system_read_write" + #define F_status_file_system_write_only_s "F_file_system_write_only" + #define F_status_fine_s "F_fine" + #define F_status_fine_not_s "F_fine_not" + #define F_status_fire_wall_s "F_fire_wall" + #define F_status_fire_wall_block_s "F_fire_wall_block" + #define F_status_fire_wall_close_s "F_fire_wall_close" + #define F_status_fire_wall_not_s "F_fire_wall_not" + #define F_status_fire_wall_open_s "F_fire_wall_open" + #define F_status_fire_wall_pass_s "F_fire_wall_pass" + #define F_status_first_s "F_first" + #define F_status_first_not_s "F_first_not" + #define F_status_footer_s "F_footer" + #define F_status_footer_not_s "F_footer_not" + #define F_status_fork_s "F_fork" + #define F_status_fork_not_s "F_fork_not" + #define F_status_format_s "F_format" + #define F_status_format_not_s "F_format_not" + #define F_status_forward_s "F_forward" + #define F_status_forward_fast_s "F_forward_fast" + #define F_status_forward_not_s "F_forward_not" + #define F_status_forward_slow_s "F_forward_slow" + #define F_status_found_s "F_found" + #define F_status_found_not_s "F_found_not" + #define F_status_full_s "F_full" + #define F_status_full_not_s "F_full_not" + #define F_status_future_s "F_future" + #define F_status_future_not_s "F_future_not" + #define F_status_group_s "F_group" + #define F_status_group_not_s "F_group_not" + #define F_status_halt_s "F_halt" + #define F_status_halt_not_s "F_halt_not" + #define F_status_header_s "F_header" + #define F_status_header_not_s "F_header_not" + #define F_status_help_s "F_help" + #define F_status_help_not_s "F_help_not" + #define F_status_ignore_s "F_ignore" + #define F_status_ignore_not_s "F_ignore_not" + #define F_status_implement_s "F_implement" + #define F_status_implement_not_s "F_implement_not" + #define F_status_input_s "F_input" + #define F_status_input_not_s "F_input_not" + #define F_status_input_output_s "F_input_output" + #define F_status_instance_s "F_instance" + #define F_status_instance_not_s "F_instance_not" + #define F_status_instance_too_many_s "F_instance_too_many" + #define F_status_interrupt_s "F_interrupt" + #define F_status_interrupt_not_s "F_interrupt_not" + #define F_status_is_s "F_is" + #define F_status_is_not_s "F_is_not" + #define F_status_keep_s "F_keep" + #define F_status_keep_not_s "F_keep_not" + #define F_status_keyboard_s "F_keyboard" + #define F_status_keyboard_not_s "F_keyboard_not" + #define F_status_known_s "F_known" + #define F_status_known_not_s "F_known_not" + #define F_status_last_s "F_last" + #define F_status_last_not_s "F_last_not" + #define F_status_limit_s "F_limit" + #define F_status_limit_not_s "F_limit_not" + #define F_status_link_s "F_link" + #define F_status_link_not_s "F_link_not" + #define F_status_live_s "F_live" + #define F_status_live_not_s "F_live_not" + #define F_status_load_s "F_load" + #define F_status_load_not_s "F_load_not" + #define F_status_local_s "F_local" + #define F_status_local_not_s "F_local_not" + #define F_status_lock_s "F_lock" + #define F_status_lock_critical_s "F_lock_critical" + #define F_status_lock_critical_not_s "F_lock_critical_not" + #define F_status_lock_mutex_s "F_lock_mutex" + #define F_status_lock_mutex_not_s "F_lock_mutex_not" + #define F_status_lock_not_s "F_lock_not" + #define F_status_lock_read_s "F_lock_read" + #define F_status_lock_read_not_s "F_lock_read_not" + #define F_status_lock_read_write_s "F_lock_read_write" + #define F_status_lock_read_write_not_s "F_lock_read_write_not" + #define F_status_lock_release_s "F_lock_release" + #define F_status_lock_release_not_s "F_lock_release_not" + #define F_status_lock_signal_s "F_lock_signal" + #define F_status_lock_signal_not_s "F_lock_signal_not" + #define F_status_lock_spin_s "F_lock_spin" + #define F_status_lock_spin_not_s "F_lock_spin_not" + #define F_status_lock_time_s "F_lock_time" + #define F_status_lock_time_not_s "F_lock_time_not" + #define F_status_lock_wait_s "F_lock_wait" + #define F_status_lock_wait_not_s "F_lock_wait_not" + #define F_status_lock_write_s "F_lock_write" + #define F_status_lock_write_not_s "F_lock_write_not" + #define F_status_loop_s "F_loop" + #define F_status_loop_not_s "F_loop_not" + #define F_status_match_s "F_match" + #define F_status_match_not_s "F_match_not" + #define F_status_maximum_s "F_maximum" + #define F_status_maximum_not_s "F_maximum_not" + #define F_status_maybe_s "F_maybe" + #define F_status_maybe_not_s "F_maybe_not" + #define F_status_memory_s "F_memory" + #define F_status_memory_not_s "F_memory_not" + #define F_status_message_s "F_message" + #define F_status_message_not_s "F_message_not" + #define F_status_middle_s "F_middle" + #define F_status_middle_not_s "F_middle_not" + #define F_status_minimum_s "F_minimum" + #define F_status_minimum_not_s "F_minimum_not" + #define F_status_minor_s "F_minor" + #define F_status_minor_not_s "F_minor_not" + #define F_status_miss_s "F_miss" + #define F_status_miss_not_s "F_miss_not" + #define F_status_moderate_s "F_moderate" + #define F_status_moderate_not_s "F_moderate_not" + #define F_status_mount_s "F_mount" + #define F_status_mount_not_s "F_mount_not" + #define F_status_mouse_s "F_mouse" + #define F_status_mouse_not_s "F_mouse_not" + #define F_status_mute_s "F_mute" + #define F_status_mute_not_s "F_mute_not" + #define F_status_mutex_s "F_mutex" + #define F_status_mutex_not_s "F_mutex_not" + #define F_status_name_s "F_name" + #define F_status_name_not_s "F_name_not" + #define F_status_need_s "F_need" + #define F_status_need_not_s "F_need_not" + #define F_status_network_s "F_network" + #define F_status_network_busy_s "F_network_busy" + #define F_status_network_busy_not_s "F_network_busy_not" + #define F_status_network_client_s "F_network_client" + #define F_status_network_client_not_s "F_network_client_not" + #define F_status_network_device_s "F_network_device" + #define F_status_network_device_not_s "F_network_device_not" + #define F_status_network_down_s "F_network_down" + #define F_status_network_down_not_s "F_network_down_not" + #define F_status_network_found_s "F_network_found" + #define F_status_network_found_not_s "F_network_found_not" + #define F_status_network_lost_s "F_network_lost" + #define F_status_network_lost_not_s "F_network_lost_not" + #define F_status_network_not_s "F_network_not" + #define F_status_network_reach_s "F_network_reach" + #define F_status_network_reach_client_s "F_network_reach_client" + #define F_status_network_client_reach_not_s "F_network_client_reach_not" + #define F_status_network_reach_not_s "F_network_reach_not" + #define F_status_network_reach_server_s "F_network_reach_server" + #define F_status_network_reach_server_not_s "F_network_reach_server_not" + #define F_status_network_server_s "F_network_server" + #define F_status_network_server_not_s "F_network_server_not" + #define F_status_network_time_s "F_network_time" + #define F_status_network_time_not_s "F_network_time_not" + #define F_status_network_up_s "F_network_up" + #define F_status_network_up_not_s "F_network_up_not" + #define F_status_network_version_four_s "F_network_version_four" + #define F_status_network_version_four_not_s "F_network_version_four_not" + #define F_status_network_version_six_s "F_network_version_six" + #define F_status_network_version_six_not_s "F_network_version_six_not" + #define F_status_next_s "F_next" + #define F_status_next_not_s "F_next_not" + #define F_status_nice_s "F_nice" + #define F_status_nice_not_s "F_nice_not" + #define F_status_no_s "F_no" + #define F_status_no_not_s "F_no_not" + #define F_status_none_s "F_none" + #define F_status_none_not_s "F_none_not" + #define F_status_number_s "F_number" + #define F_status_number_decimal_s "F_number_decimal" + #define F_status_number_decimal_not_s "F_number_decimal_not" + #define F_status_number_divide_by_zero_s "F_number_divide_by_zero" + #define F_status_number_negative_s "F_number_negative" + #define F_status_number_negative_not_s "F_number_negative_not" + #define F_status_number_not_s "F_number_not" + #define F_status_number_overflow_s "F_number_overflow" + #define F_status_number_positive_s "F_number_positive" + #define F_status_number_positive_not_s "F_number_positive_not" + #define F_status_number_too_large_s "F_number_too_large" + #define F_status_number_too_small_s "F_number_too_small" + #define F_status_number_underflow_s "F_number_underflow" + #define F_status_number_whole_s "F_number_whole" + #define F_status_number_whole_not_s "F_number_whole_not" + #define F_status_number_zero_s "F_number_zero" + #define F_status_number_zero_not_s "F_number_zero_not" + #define F_status_object_s "F_object" + #define F_status_object_not_s "F_object_not" + #define F_status_once_s "F_once" + #define F_status_once_not_s "F_once_not" + #define F_status_option_s "F_option" + #define F_status_option_not_s "F_option_not" + #define F_status_output_s "F_output" + #define F_status_output_not_s "F_output_not" + #define F_status_packet_s "F_packet" + #define F_status_packet_not_s "F_packet_not" + #define F_status_packet_too_large_s "F_packet_too_large" + #define F_status_packet_too_large_not_s "F_packet_too_large_not" + #define F_status_packet_too_small_s "F_packet_too_small" + #define F_status_packet_too_small_not_s "F_packet_too_small_not" + #define F_status_parameter_s "F_parameter" + #define F_status_parameter_not_s "F_parameter_not" + #define F_status_parent_s "F_parent" + #define F_status_parent_not_s "F_parent_not" + #define F_status_partial_s "F_partial" + #define F_status_partial_not_s "F_partial_not" + #define F_status_past_s "F_past" + #define F_status_past_not_s "F_past_not" + #define F_status_pause_s "F_pause" + #define F_status_pause_not_s "F_pause_not" + #define F_status_payload_s "F_payload" + #define F_status_payload_not_s "F_payload_not" + #define F_status_payload_too_large_s "F_payload_too_large" + #define F_status_payload_too_large_not_s "F_payload_too_large_not" + #define F_status_payload_too_small_s "F_payload_too_small" + #define F_status_payload_too_small_not_s "F_payload_too_small_not" + #define F_status_pipe_s "F_pipe" + #define F_status_pipe_not_s "F_pipe_not" + #define F_status_port_s "F_port" + #define F_status_port_not_s "F_port_not" + #define F_status_present_s "F_present" + #define F_status_present_not_s "F_present_not" + #define F_status_pretty_s "F_pretty" + #define F_status_pretty_not_s "F_pretty_not" + #define F_status_previous_s "F_previous" + #define F_status_previous_not_s "F_previous_not" + #define F_status_process_s "F_process" + #define F_status_process_not_s "F_process_not" + #define F_status_process_too_many_s "F_process_too_many" + #define F_status_processor_s "F_processor" + #define F_status_processor_not_s "F_processor_not" + #define F_status_progress_s "F_progress" + #define F_status_progress_not_s "F_progress_not" + #define F_status_prohibited_s "F_prohibited" + #define F_status_prohibited_not_s "F_prohibited_not" + #define F_status_property_s "F_property" + #define F_status_property_not_s "F_property_not" + #define F_status_protocol_s "F_protocol" + #define F_status_protocol_not_s "F_protocol_not" + #define F_status_protocol_option_s "F_protocol_option" + #define F_status_protocol_option_not_s "F_protocol_option_not" + #define F_status_range_s "F_range" + #define F_status_range_not_s "F_range_not" + #define F_status_read_s "F_read" + #define F_status_read_not_s "F_read_not" + #define F_status_read_only_s "F_read_only" + #define F_status_read_write_s "F_read_write" + #define F_status_read_write_execute_s "F_read_write_execute" + #define F_status_read_write_execute_not_s "F_read_write_execute_not" + #define F_status_read_write_execute_only_s "F_read_write_execute_only" + #define F_status_read_write_not_s "F_read_write_not" + #define F_status_read_write_only_s "F_read_write_only" + #define F_status_ready_s "F_ready" + #define F_status_ready_not_s "F_ready_not" + #define F_status_receive_s "F_receive" + #define F_status_receive_not_s "F_receive_not" + #define F_status_recover_s "F_recover" + #define F_status_recover_not_s "F_recover_not" + #define F_status_recurse_s "F_recurse" + #define F_status_recurse_not_s "F_recurse_not" + #define F_status_refresh_s "F_refresh" + #define F_status_refresh_not_s "F_refresh_not" + #define F_status_regular_s "F_regular" + #define F_status_regular_not_s "F_regular_not" + #define F_status_relative_s "F_relative" + #define F_status_relative_not_s "F_relative_not" + #define F_status_reload_s "F_reload" + #define F_status_reload_not_s "F_reload_not" + #define F_status_remote_s "F_remote" + #define F_status_remote_not_s "F_remote_not" + #define F_status_remove_s "F_remove" + #define F_status_remove_not_s "F_remove_not" + #define F_status_repeat_s "F_repeat" + #define F_status_repeat_not_s "F_repeat_not" + #define F_status_require_s "F_require" + #define F_status_require_not_s "F_require_not" + #define F_status_resource_s "F_resource" + #define F_status_resource_not_s "F_resource_not" + #define F_status_restart_s "F_restart" + #define F_status_restart_not_s "F_restart_not" + #define F_status_restore_s "F_restore" + #define F_status_restore_not_s "F_restore_not" + #define F_status_resume_s "F_resume" + #define F_status_resume_not_s "F_resume_not" + #define F_status_revert_s "F_revert" + #define F_status_revert_not_s "F_revert_not" + #define F_status_robust_s "F_robust" + #define F_status_robust_not_s "F_robust_not" + #define F_status_schedule_s "F_schedule" + #define F_status_schedule_not_s "F_schedule_not" + #define F_status_search_s "F_search" + #define F_status_search_not_s "F_search_not" + #define F_status_semaphore_s "F_semaphore" + #define F_status_semaphore_not_s "F_semaphore_not" + #define F_status_send_s "F_send" + #define F_status_send_not_s "F_send_not" + #define F_status_size_s "F_size" + #define F_status_size_not_s "F_size_not" + #define F_status_signal_s "F_signal" + #define F_status_signal_not_s "F_signal_not" + #define F_status_skip_s "F_skip" + #define F_status_skip_not_s "F_skip_not" + #define F_status_socket_s "F_socket" + #define F_status_socket_block_s "F_socket_block" + #define F_status_socket_block_not_s "F_socket_block_not" + #define F_status_socket_client_s "F_socket_client" + #define F_status_socket_client_not_s "F_socket_client_not" + #define F_status_socket_not_s "F_socket_not" + #define F_status_socket_option_s "F_socket_option" + #define F_status_socket_option_not_s "F_socket_option_not" + #define F_status_socket_pipe_s "F_socket_pipe" + #define F_status_socket_pipe_close_s "F_socket_pipe_close" + #define F_status_socket_pipe_not_s "F_socket_pipe_not" + #define F_status_socket_pipe_open_s "F_socket_pipe_open" + #define F_status_socket_receive_s "F_socket_receive" + #define F_status_socket_receive_not_s "F_socket_receive_not" + #define F_status_socket_send_s "F_socket_send" + #define F_status_socket_send_not_s "F_socket_send_not" + #define F_status_socket_stream_s "F_socket_stream" + #define F_status_socket_stream_not_s "F_socket_stream_not" + #define F_status_socket_support_s "F_socket_support" + #define F_status_socket_support_not_s "F_socket_support_not" + #define F_status_socket_target_s "F_socket_target" + #define F_status_socket_target_not_s "F_socket_target_not" + #define F_status_socket_time_s "F_socket_time" + #define F_status_socket_time_not_s "F_socket_time_not" + #define F_status_socket_time_out_s "F_socket_time_out" + #define F_status_some_s "F_some" + #define F_status_some_not_s "F_some_not" + #define F_status_space_s "F_space" + #define F_status_space_not_s "F_space_not" + #define F_status_spin_s "F_spin" + #define F_status_spin_not_s "F_spin_not" + #define F_status_start_s "F_start" + #define F_status_start_not_s "F_start_not" + #define F_status_status_s "F_status" + #define F_status_status_not_s "F_status_not" + #define F_status_stop_s "F_stop" + #define F_status_stop_not_s "F_stop_not" + #define F_status_store_s "F_store" + #define F_status_store_not_s "F_store_not" + #define F_status_stream_s "F_stream" + #define F_status_stream_not_s "F_stream_not" + #define F_status_string_s "F_string" + #define F_status_string_not_s "F_string_not" + #define F_status_string_too_large_s "F_string_too_large" + #define F_status_string_too_small_s "F_string_too_small" + #define F_status_syntax_s "F_syntax" + #define F_status_syntax_not_s "F_syntax_not" + #define F_status_terminal_s "F_terminal" + #define F_status_terminal_access_s "F_terminal_access" + #define F_status_terminal_known_s "F_terminal_known" + #define F_status_terminal_known_not_s "F_terminal_known_not" + #define F_status_terminal_not_s "F_terminal_not" + #define F_status_terminal_prohibited_s "F_terminal_prohibited" + #define F_status_terminal_read_s "F_terminal_read" + #define F_status_terminal_valid_s "F_terminal_valid" + #define F_status_terminal_valid_not_s "F_terminal_valid_not" + #define F_status_terminal_write_s "F_terminal_write" + #define F_status_terminate_s "F_terminate" + #define F_status_terminate_not_s "F_terminate_not" + #define F_status_test_s "F_test" + #define F_status_test_not_s "F_test_not" + #define F_status_than_greater_s "F_than_greater" + #define F_status_than_less_s "F_than_less" + #define F_status_thread_s "F_thread" + #define F_status_thread_not_s "F_thread_not" + #define F_status_time_s "F_time" + #define F_status_time_not_s "F_time_not" + #define F_status_time_out_s "F_time_out" + #define F_status_too_large_s "F_too_large" + #define F_status_too_small_s "F_too_small" + #define F_status_top_s "F_top" + #define F_status_top_not_s "F_top_not" + #define F_status_touch_s "F_touch" + #define F_status_touch_not_s "F_touch_not" + #define F_status_type_s "F_type" + #define F_status_type_not_s "F_type_not" + #define F_status_success_s "F_success" + #define F_status_success_not_s "F_success_not" + #define F_status_support_s "F_support" + #define F_status_support_not_s "F_support_not" + #define F_status_ugly_s "F_ugly" + #define F_status_ugly_not_s "F_ugly_not" + #define F_status_unload_s "F_unload" + #define F_status_unload_not_s "F_unload_not" + #define F_status_user_s "F_user" + #define F_status_user_not_s "F_user_not" + #define F_status_utf_s "F_utf" + #define F_status_utf_fragment_s "F_utf_fragment" + #define F_status_utf_fragment_not_s "F_utf_fragment_not" + #define F_status_utf_not_s "F_utf_not" + #define F_status_valid_s "F_valid" + #define F_status_valid_not_s "F_valid_not" + #define F_status_value_s "F_value" + #define F_status_value_not_s "F_value_not" + #define F_status_wait_s "F_wait" + #define F_status_wait_not_s "F_wait_not" + #define F_status_want_s "F_want" + #define F_status_want_not_s "F_want_not" + #define F_status_warning_s "F_warning" + #define F_status_warning_not_s "F_warning_not" + #define F_status_wish_s "F_wish" + #define F_status_wish_not_s "F_wish_not" + #define F_status_word_s "F_word" + #define F_status_word_not_s "F_word_not" + #define F_status_world_s "F_world" + #define F_status_world_not_s "F_world_not" + #define F_status_write_s "F_write" + #define F_status_write_not_s "F_write_not" + #define F_status_write_only_s "F_write_only" + #define F_status_yes_s "F_yes" + #define F_status_yes_not_s "F_yes_not" - #define F_status_okay_s_length 6 - #define F_status_okay_block_s_length 12 - #define F_status_okay_eoa_s_length 10 - #define F_status_okay_eof_s_length 10 - #define F_status_okay_eol_s_length 10 - #define F_status_okay_eos_s_length 10 - #define F_status_okay_not_s_length 10 - #define F_status_okay_start_s_length 12 - #define F_status_okay_stop_s_length 11 - #define F_status_abort_s_length 7 - #define F_status_abort_not_s_length 11 - #define F_status_absolute_s_length 10 - #define F_status_absolute_not_s_length 14 - #define F_status_access_s_length 8 - #define F_status_access_denied_s_length 15 - #define F_status_access_denied_user_s_length 20 - #define F_status_access_denied_group_s_length 21 - #define F_status_access_denied_world_s_length 21 - #define F_status_access_denied_read_s_length 20 - #define F_status_access_denied_write_s_length 21 - #define F_status_access_denied_execute_s_length 23 - #define F_status_access_denied_super_s_length 21 - #define F_status_access_granted_s_length 16 - #define F_status_access_granted_user_s_length 21 - #define F_status_access_granted_group_s_length 22 - #define F_status_access_granted_world_s_length 22 - #define F_status_access_granted_read_s_length 21 - #define F_status_access_granted_write_s_length 22 - #define F_status_access_granted_execute_s_length 24 - #define F_status_access_granted_super_s_length 22 - #define F_status_access_group_s_length 14 - #define F_status_access_mode_s_length 13 - #define F_status_access_not_s_length 12 - #define F_status_access_owner_s_length 14 - #define F_status_add_s_length 5 - #define F_status_add_not_s_length 9 - #define F_status_address_s_length 9 - #define F_status_address_not_s_length 13 - #define F_status_again_s_length 7 - #define F_status_again_not_s_length 11 - #define F_status_all_s_length 5 - #define F_status_all_not_s_length 9 - #define F_status_array_s_length 7 - #define F_status_array_not_s_length 11 - #define F_status_array_too_large_s_length 17 - #define F_status_array_too_small_s_length 17 - #define F_status_ascii_s_length 7 - #define F_status_ascii_not_s_length 11 - #define F_status_atomic_s_length 8 - #define F_status_atomic_not_s_length 12 - #define F_status_attribute_s_length 11 - #define F_status_attribute_not_s_length 15 - #define F_status_available_s_length 11 - #define F_status_available_not_s_length 15 - #define F_status_available_not_address_s_length 23 - #define F_status_available_not_buffer_s_length 22 - #define F_status_available_not_device_s_length 22 - #define F_status_available_not_pipe_s_length 20 - #define F_status_available_not_port_s_length 20 - #define F_status_available_not_process_s_length 23 - #define F_status_available_not_socket_s_length 22 - #define F_status_backward_s_length 10 - #define F_status_backward_fast_s_length 15 - #define F_status_backward_not_s_length 14 - #define F_status_backward_slow_s_length 15 - #define F_status_barrier_s_length 9 - #define F_status_barrier_not_s_length 13 - #define F_status_base_s_length 6 - #define F_status_base_not_s_length 10 - #define F_status_bdo_s_length 5 - #define F_status_bdo_not_s_length 9 - #define F_status_begin_s_length 7 - #define F_status_begin_not_s_length 11 - #define F_status_block_s_length 7 - #define F_status_block_not_s_length 11 - #define F_status_body_s_length 6 - #define F_status_body_not_s_length 10 - #define F_status_bottom_s_length 8 - #define F_status_bottom_not_s_length 12 - #define F_status_bound_s_length 7 - #define F_status_bound_not_s_length 11 - #define F_status_break_s_length 7 - #define F_status_break_not_s_length 11 - #define F_status_buffer_s_length 8 - #define F_status_buffer_not_s_length 12 - #define F_status_buffer_overflow_s_length 17 - #define F_status_buffer_restrict_s_length 17 - #define F_status_buffer_scope_out_s_length 18 - #define F_status_buffer_sufficient_s_length 19 - #define F_status_buffer_sufficient_not_s_length 23 - #define F_status_buffer_too_large_s_length 18 - #define F_status_buffer_too_small_s_length 18 - #define F_status_buffer_underflow_s_length 18 - #define F_status_busy_s_length 6 - #define F_status_busy_address_s_length 14 - #define F_status_busy_buffer_s_length 13 - #define F_status_busy_device_s_length 13 - #define F_status_busy_not_s_length 10 - #define F_status_busy_pipe_s_length 11 - #define F_status_busy_port_s_length 11 - #define F_status_busy_process_s_length 14 - #define F_status_busy_socket_s_length 13 - #define F_status_call_s_length 6 - #define F_status_call_not_s_length 10 - #define F_status_capability_s_length 12 - #define F_status_capability_not_s_length 16 - #define F_status_case_s_length 6 - #define F_status_case_not_s_length 10 - #define F_status_character_s_length 11 - #define F_status_character_not_s_length 15 - #define F_status_child_s_length 7 - #define F_status_child_not_s_length 11 - #define F_status_clock_s_length 7 - #define F_status_clock_ahead_s_length 13 - #define F_status_clock_behind_s_length 14 - #define F_status_clock_match_s_length 13 - #define F_status_clock_not_s_length 11 - #define F_status_clock_skew_s_length 12 - #define F_status_combarudoo_s_length 12 - #define F_status_combarudoo_not_s_length 16 - #define F_status_complete_s_length 10 - #define F_status_complete_not_s_length 14 - #define F_status_complete_not_utf_s_length 18 - #define F_status_complete_not_utf_block_s_length 24 - #define F_status_complete_not_utf_eoa_s_length 22 - #define F_status_complete_not_utf_eof_s_length 22 - #define F_status_complete_not_utf_eol_s_length 22 - #define F_status_complete_not_utf_eos_s_length 22 - #define F_status_complete_not_utf_start_s_length 24 - #define F_status_complete_not_utf_stop_s_length 23 - #define F_status_condition_s_length 11 - #define F_status_condition_not_s_length 15 - #define F_status_connect_s_length 9 - #define F_status_connect_not_s_length 13 - #define F_status_connect_refuse_s_length 16 - #define F_status_connect_reset_s_length 15 - #define F_status_consistent_s_length 12 - #define F_status_consistent_not_s_length 16 - #define F_status_container_s_length 11 - #define F_status_container_not_s_length 15 - #define F_status_content_s_length 9 - #define F_status_content_not_s_length 13 - #define F_status_continue_s_length 10 - #define F_status_continue_not_s_length 14 - #define F_status_control_s_length 9 - #define F_status_control_not_s_length 13 - #define F_status_control_group_s_length 15 - #define F_status_control_group_not_s_length 19 - #define F_status_controller_s_length 12 - #define F_status_controller_not_s_length 16 - #define F_status_critical_s_length 10 - #define F_status_critical_not_s_length 14 - #define F_status_data_s_length 6 - #define F_status_data_not_s_length 10 - #define F_status_data_not_block_s_length 16 - #define F_status_data_not_eoa_s_length 14 - #define F_status_data_not_eof_s_length 14 - #define F_status_data_not_eol_s_length 14 - #define F_status_data_not_eos_s_length 14 - #define F_status_data_not_start_s_length 16 - #define F_status_data_not_stop_s_length 15 - #define F_status_dead_s_length 6 - #define F_status_dead_not_s_length 10 - #define F_status_deadlock_s_length 10 - #define F_status_deadlock_not_s_length 14 - #define F_status_debug_s_length 7 - #define F_status_debug_not_s_length 11 - #define F_status_descriptor_s_length 12 - #define F_status_descriptor_not_s_length 16 - #define F_status_desire_s_length 8 - #define F_status_desire_not_s_length 12 - #define F_status_device_s_length 8 - #define F_status_device_not_s_length 12 - #define F_status_directory_s_length 11 - #define F_status_directory_close_s_length 17 - #define F_status_directory_closed_s_length 18 - #define F_status_directory_descriptor_s_length 22 - #define F_status_directory_empty_s_length 17 - #define F_status_directory_empty_not_s_length 21 - #define F_status_directory_found_s_length 17 - #define F_status_directory_found_not_s_length 21 - #define F_status_directory_flush_s_length 17 - #define F_status_directory_link_max_s_length 20 - #define F_status_directory_not_s_length 15 - #define F_status_directory_open_s_length 16 - #define F_status_directory_purge_s_length 17 - #define F_status_directory_read_s_length 16 - #define F_status_directory_stream_s_length 18 - #define F_status_directory_support_not_s_length 23 - #define F_status_directory_synchronize_s_length 23 - #define F_status_directory_utf_s_length 15 - #define F_status_directory_utf_not_s_length 19 - #define F_status_directory_write_s_length 17 - #define F_status_disable_s_length 9 - #define F_status_disable_not_s_length 13 - #define F_status_discard_s_length 9 - #define F_status_discard_not_s_length 13 - #define F_status_disk_s_length 6 - #define F_status_disk_not_s_length 10 - #define F_status_domain_s_length 8 - #define F_status_domain_not_s_length 12 - #define F_status_done_s_length 6 - #define F_status_done_not_s_length 10 - #define F_status_drop_s_length 6 - #define F_status_drop_not_s_length 10 - #define F_status_dummy_s_length 7 - #define F_status_dummy_not_s_length 11 - #define F_status_empty_s_length 7 - #define F_status_empty_not_s_length 11 - #define F_status_enable_s_length 8 - #define F_status_enable_not_s_length 12 - #define F_status_encoding_s_length 10 - #define F_status_encoding_not_s_length 14 - #define F_status_end_s_length 5 - #define F_status_end_not_s_length 10 - #define F_status_end_not_block_s_length 15 - #define F_status_end_not_eoa_s_length 13 - #define F_status_end_not_eof_s_length 13 - #define F_status_end_not_eol_s_length 13 - #define F_status_end_not_eos_s_length 13 - #define F_status_end_not_start_s_length 15 - #define F_status_end_not_stop_s_length 14 - #define F_status_end_not_group_s_length 15 - #define F_status_end_not_group_block_s_length 21 - #define F_status_end_not_group_eoa_s_length 19 - #define F_status_end_not_group_eof_s_length 19 - #define F_status_end_not_group_eol_s_length 19 - #define F_status_end_not_group_eos_s_length 19 - #define F_status_end_not_group_start_s_length 21 - #define F_status_end_not_group_stop_s_length 20 - #define F_status_end_not_nest_s_length 14 - #define F_status_end_not_nest_block_s_length 20 - #define F_status_end_not_nest_eoa_s_length 18 - #define F_status_end_not_nest_eof_s_length 18 - #define F_status_end_not_nest_eol_s_length 18 - #define F_status_end_not_nest_eos_s_length 18 - #define F_status_end_not_nest_start_s_length 20 - #define F_status_end_not_nest_stop_s_length 19 - #define F_status_endian_s_length 8 - #define F_status_endian_big_s_length 12 - #define F_status_endian_little_s_length 19 - #define F_status_endian_not_s_length 12 - #define F_status_enter_s_length 7 - #define F_status_enter_not_s_length 11 - #define F_status_eoa_s_length 5 - #define F_status_eoa_not_s_length 9 - #define F_status_eof_s_length 5 - #define F_status_eof_not_s_length 9 - #define F_status_eol_s_length 5 - #define F_status_eol_not_s_length 9 - #define F_status_eos_s_length 5 - #define F_status_eos_not_s_length 9 - #define F_status_equal_to_s_length 10 - #define F_status_equal_to_not_s_length 14 - #define F_status_error_s_length 7 - #define F_status_error_not_s_length 11 - #define F_status_execute_s_length 9 - #define F_status_execute_not_s_length 13 - #define F_status_exist_s_length 7 - #define F_status_exist_not_s_length 11 - #define F_status_exit_s_length 6 - #define F_status_exit_not_s_length 10 - #define F_status_failure_s_length 9 - #define F_status_failure_not_s_length 13 - #define F_status_family_s_length 8 - #define F_status_family_not_s_length 12 - #define F_status_fifo_s_length 6 - #define F_status_fifo_not_s_length 10 - #define F_status_file_s_length 6 - #define F_status_file_close_s_length 12 - #define F_status_file_closed_s_length 13 - #define F_status_file_descriptor_s_length 17 - #define F_status_file_descriptor_max_s_length 21 - #define F_status_file_descriptor_not_s_length 21 - #define F_status_file_empty_s_length 12 - #define F_status_file_empty_not_s_length 16 - #define F_status_file_flush_s_length 12 - #define F_status_file_found_s_length 12 - #define F_status_file_found_not_s_length 16 - #define F_status_file_not_s_length 10 - #define F_status_file_open_s_length 11 - #define F_status_file_open_max_s_length 15 - #define F_status_file_opened_s_length 13 - #define F_status_file_overflow_s_length 15 - #define F_status_file_purge_s_length 12 - #define F_status_file_read_s_length 11 - #define F_status_file_reallocation_s_length 19 - #define F_status_file_seek_s_length 11 - #define F_status_file_stat_s_length 11 - #define F_status_file_synchronize_s_length 18 - #define F_status_file_type_block_s_length 17 - #define F_status_file_type_character_s_length 21 - #define F_status_file_type_directory_s_length 21 - #define F_status_file_type_fifo_s_length 16 - #define F_status_file_type_link_s_length 16 - #define F_status_file_type_not_block_s_length 21 - #define F_status_file_type_not_character_s_length 25 - #define F_status_file_type_not_directory_s_length 25 - #define F_status_file_type_not_fifo_s_length 20 - #define F_status_file_type_not_link_s_length 20 - #define F_status_file_type_not_pipe_s_length 20 - #define F_status_file_type_not_regular_s_length 23 - #define F_status_file_type_not_socket_s_length 22 - #define F_status_file_type_not_unknown_s_length 23 - #define F_status_file_type_pipe_s_length 16 - #define F_status_file_type_regular_s_length 19 - #define F_status_file_type_socket_s_length 18 - #define F_status_file_type_unknown_s_length 19 - #define F_status_file_underflow_s_length 16 - #define F_status_file_utf_s_length 10 - #define F_status_file_utf_not_s_length 14 - #define F_status_file_write_s_length 12 - #define F_status_filesystem_s_length 12 - #define F_status_filesystem_not_s_length 16 - #define F_status_filesystem_quota_block_s_length 24 - #define F_status_filesystem_quota_reached_s_length 26 - #define F_status_fine_s_length 6 - #define F_status_fine_not_s_length 10 - #define F_status_first_s_length 7 - #define F_status_first_not_s_length 11 - #define F_status_footer_s_length 8 - #define F_status_footer_not_s_length 12 - #define F_status_fork_s_length 6 - #define F_status_fork_not_s_length 10 - #define F_status_format_s_length 8 - #define F_status_format_not_s_length 12 - #define F_status_forward_s_length 9 - #define F_status_forward_fast_s_length 14 - #define F_status_forward_not_s_length 13 - #define F_status_forward_slow_s_length 14 - #define F_status_found_s_length 7 - #define F_status_found_not_s_length 11 - #define F_status_full_s_length 6 - #define F_status_full_not_s_length 10 - #define F_status_future_s_length 8 - #define F_status_future_not_s_length 12 - #define F_status_group_s_length 7 - #define F_status_group_not_s_length 11 - #define F_status_halt_s_length 6 - #define F_status_halt_not_s_length 10 - #define F_status_header_s_length 8 - #define F_status_header_not_s_length 12 - #define F_status_help_s_length 6 - #define F_status_help_not_s_length 10 - #define F_status_ignore_s_length 8 - #define F_status_ignore_not_s_length 12 - #define F_status_implement_s_length 11 - #define F_status_implement_not_s_length 15 - #define F_status_input_s_length 7 - #define F_status_input_not_s_length 11 - #define F_status_input_output_s_length 14 - #define F_status_instance_s_length 10 - #define F_status_instance_not_s_length 14 - #define F_status_instance_too_many_s_length 19 - #define F_status_interrupt_s_length 11 - #define F_status_interrupt_not_s_length 15 - #define F_status_is_s_length 8 - #define F_status_is_not_s_length 12 - #define F_status_keep_s_length 6 - #define F_status_keep_not_s_length 10 - #define F_status_keyboard_s_length 10 - #define F_status_keyboard_not_s_length 14 - #define F_status_known_s_length 7 - #define F_status_known_not_s_length 11 - #define F_status_last_s_length 6 - #define F_status_last_not_s_length 10 - #define F_status_limit_s_length 7 - #define F_status_limit_not_s_length 11 - #define F_status_link_s_length 6 - #define F_status_link_not_s_length 10 - #define F_status_live_s_length 6 - #define F_status_live_not_s_length 10 - #define F_status_load_s_length 6 - #define F_status_load_not_s_length 10 - #define F_status_local_s_length 7 - #define F_status_local_not_s_length 11 - #define F_status_lock_s_length 6 - #define F_status_lock_critical_s_length 15 - #define F_status_lock_critical_not_s_length 19 - #define F_status_lock_mutex_s_length 12 - #define F_status_lock_mutex_not_s_length 16 - #define F_status_lock_not_s_length 10 - #define F_status_lock_read_s_length 11 - #define F_status_lock_read_not_s_length 15 - #define F_status_lock_read_write_s_length 17 - #define F_status_lock_read_write_not_s_length 21 - #define F_status_lock_release_s_length 14 - #define F_status_lock_release_not_s_length 18 - #define F_status_lock_signal_s_length 13 - #define F_status_lock_signal_not_s_length 17 - #define F_status_lock_spin_s_length 11 - #define F_status_lock_spin_not_s_length 15 - #define F_status_lock_time_s_length 11 - #define F_status_lock_time_not_s_length 15 - #define F_status_lock_wait_s_length 11 - #define F_status_lock_wait_not_s_length 15 - #define F_status_lock_write_s_length 12 - #define F_status_lock_write_not_s_length 16 - #define F_status_loop_s_length 6 - #define F_status_loop_not_s_length 10 - #define F_status_match_s_length 7 - #define F_status_match_not_s_length 11 - #define F_status_maximum_s_length 9 - #define F_status_maximum_not_s_length 13 - #define F_status_maybe_s_length 7 - #define F_status_maybe_not_s_length 11 - #define F_status_memory_s_length 8 - #define F_status_memory_not_s_length 12 - #define F_status_message_s_length 9 - #define F_status_message_not_s_length 13 - #define F_status_middle_s_length 8 - #define F_status_middle_not_s_length 12 - #define F_status_minimum_s_length 9 - #define F_status_minimum_not_s_length 13 - #define F_status_minor_s_length 7 - #define F_status_minor_not_s_length 11 - #define F_status_miss_s_length 6 - #define F_status_miss_not_s_length 10 - #define F_status_moderate_s_length 10 - #define F_status_moderate_not_s_length 14 - #define F_status_mount_s_length 7 - #define F_status_mount_not_s_length 11 - #define F_status_mouse_s_length 7 - #define F_status_mouse_not_s_length 11 - #define F_status_mute_s_length 6 - #define F_status_mute_not_s_length 10 - #define F_status_mutex_s_length 7 - #define F_status_mutex_not_s_length 11 - #define F_status_name_s_length 6 - #define F_status_name_not_s_length 10 - #define F_status_need_s_length 6 - #define F_status_need_not_s_length 10 - #define F_status_network_s_length 9 - #define F_status_network_busy_s_length 14 - #define F_status_network_busy_not_s_length 18 - #define F_status_network_client_s_length 16 - #define F_status_network_client_not_s_length 20 - #define F_status_network_device_s_length 16 - #define F_status_network_device_not_s_length 20 - #define F_status_network_down_s_length 14 - #define F_status_network_down_not_s_length 18 - #define F_status_network_found_s_length 15 - #define F_status_network_found_not_s_length 19 - #define F_status_network_lost_s_length 14 - #define F_status_network_lost_not_s_length 18 - #define F_status_network_not_s_length 13 - #define F_status_network_reach_s_length 15 - #define F_status_network_reach_client_s_length 22 - #define F_status_network_client_reach_not_s_length 26 - #define F_status_network_reach_not_s_length 19 - #define F_status_network_reach_server_s_length 22 - #define F_status_network_reach_server_not_s_length 26 - #define F_status_network_server_s_length 16 - #define F_status_network_server_not_s_length 20 - #define F_status_network_time_s_length 14 - #define F_status_network_time_not_s_length 18 - #define F_status_network_up_s_length 12 - #define F_status_network_up_not_s_length 16 - #define F_status_network_version_four_s_length 22 - #define F_status_network_version_four_not_s_length 26 - #define F_status_network_version_six_s_length 21 - #define F_status_network_version_six_not_s_length 25 - #define F_status_number_s_length 8 - #define F_status_number_decimal_s_length 16 - #define F_status_number_decimal_not_s_length 20 - #define F_status_number_divide_by_zero_s_length 23 - #define F_status_number_negative_s_length 17 - #define F_status_number_negative_not_s_length 21 - #define F_status_number_not_s_length 12 - #define F_status_number_overflow_s_length 17 - #define F_status_number_positive_s_length 17 - #define F_status_number_positive_not_s_length 21 - #define F_status_number_too_large_s_length 18 - #define F_status_number_too_small_s_length 18 - #define F_status_number_underflow_s_length 18 - #define F_status_number_whole_s_length 14 - #define F_status_number_whole_not_s_length 18 - #define F_status_number_zero_s_length 13 - #define F_status_number_zero_not_s_length 17 - #define F_status_next_s_length 6 - #define F_status_next_not_s_length 10 - #define F_status_nice_s_length 6 - #define F_status_nice_not_s_length 10 - #define F_status_no_s_length 4 - #define F_status_no_not_s_length 8 - #define F_status_none_s_length 6 - #define F_status_none_not_s_length 10 - #define F_status_object_s_length 8 - #define F_status_object_not_s_length 12 - #define F_status_once_s_length 6 - #define F_status_once_not_s_length 10 - #define F_status_option_s_length 8 - #define F_status_option_not_s_length 12 - #define F_status_output_s_length 8 - #define F_status_output_not_s_length 12 - #define F_status_packet_s_length 8 - #define F_status_packet_not_s_length 12 - #define F_status_packet_too_large_s_length 18 - #define F_status_packet_too_large_not_s_length 22 - #define F_status_packet_too_small_s_length 18 - #define F_status_packet_too_small_not_s_length 22 - #define F_status_parameter_s_length 11 - #define F_status_parameter_not_s_length 15 - #define F_status_parent_s_length 8 - #define F_status_parent_not_s_length 12 - #define F_status_partial_s_length 9 - #define F_status_partial_not_s_length 13 - #define F_status_past_s_length 6 - #define F_status_past_not_s_length 10 - #define F_status_pause_s_length 7 - #define F_status_pause_not_s_length 11 - #define F_status_payload_s_length 9 - #define F_status_payload_not_s_length 13 - #define F_status_payload_too_large_s_length 19 - #define F_status_payload_too_large_not_s_length 23 - #define F_status_payload_too_small_s_length 19 - #define F_status_payload_too_small_not_s_length 23 - #define F_status_pipe_s_length 6 - #define F_status_pipe_not_s_length 10 - #define F_status_port_s_length 6 - #define F_status_port_not_s_length 10 - #define F_status_present_s_length 9 - #define F_status_present_not_s_length 13 - #define F_status_pretty_s_length 8 - #define F_status_pretty_not_s_length 12 - #define F_status_previous_s_length 10 - #define F_status_previous_not_s_length 14 - #define F_status_process_s_length 9 - #define F_status_process_not_s_length 13 - #define F_status_process_too_many_s_length 18 - #define F_status_processor_s_length 11 - #define F_status_processor_not_s_length 15 - #define F_status_progress_s_length 10 - #define F_status_progress_not_s_length 14 - #define F_status_prohibited_s_length 12 - #define F_status_prohibited_not_s_length 16 - #define F_status_property_s_length 10 - #define F_status_property_not_s_length 14 - #define F_status_protocol_s_length 10 - #define F_status_protocol_not_s_length 14 - #define F_status_protocol_option_s_length 17 - #define F_status_protocol_option_not_s_length 21 - #define F_status_range_s_length 7 - #define F_status_range_not_s_length 11 - #define F_status_read_s_length 6 - #define F_status_read_not_s_length 10 - #define F_status_read_only_s_length 11 - #define F_status_read_write_s_length 12 - #define F_status_read_write_execute_s_length 20 - #define F_status_read_write_execute_not_s_length 24 - #define F_status_read_write_execute_only_s_length 25 - #define F_status_read_write_not_s_length 16 - #define F_status_read_write_only_s_length 17 - #define F_status_ready_s_length 7 - #define F_status_ready_not_s_length 11 - #define F_status_receive_s_length 9 - #define F_status_receive_not_s_length 13 - #define F_status_recover_s_length 9 - #define F_status_recover_not_s_length 13 - #define F_status_recurse_s_length 9 - #define F_status_recurse_not_s_length 13 - #define F_status_refresh_s_length 9 - #define F_status_refresh_not_s_length 13 - #define F_status_regular_s_length 9 - #define F_status_regular_not_s_length 13 - #define F_status_relative_s_length 10 - #define F_status_relative_not_s_length 14 - #define F_status_reload_s_length 8 - #define F_status_reload_not_s_length 12 - #define F_status_remote_s_length 8 - #define F_status_remote_not_s_length 12 - #define F_status_remove_s_length 8 - #define F_status_remove_not_s_length 12 - #define F_status_repeat_s_length 8 - #define F_status_repeat_not_s_length 12 - #define F_status_require_s_length 9 - #define F_status_require_not_s_length 13 - #define F_status_resource_s_length 10 - #define F_status_resource_not_s_length 14 - #define F_status_restart_s_length 9 - #define F_status_restart_not_s_length 13 - #define F_status_restore_s_length 9 - #define F_status_restore_not_s_length 13 - #define F_status_resume_s_length 8 - #define F_status_resume_not_s_length 12 - #define F_status_revert_s_length 8 - #define F_status_revert_not_s_length 12 - #define F_status_robust_s_length 8 - #define F_status_robust_not_s_length 12 - #define F_status_schedule_s_length 10 - #define F_status_schedule_not_s_length 14 - #define F_status_search_s_length 8 - #define F_status_search_not_s_length 12 - #define F_status_semaphore_s_length 11 - #define F_status_semaphore_not_s_length 15 - #define F_status_send_s_length 6 - #define F_status_send_not_s_length 10 - #define F_status_size_s_length 6 - #define F_status_size_not_s_length 10 - #define F_status_signal_s_length 8 - #define F_status_signal_not_s_length 12 - #define F_status_skip_s_length 6 - #define F_status_skip_not_s_length 10 - #define F_status_socket_s_length 8 - #define F_status_socket_block_s_length 14 - #define F_status_socket_block_not_s_length 18 - #define F_status_socket_client_s_length 15 - #define F_status_socket_client_not_s_length 19 - #define F_status_socket_not_s_length 12 - #define F_status_socket_option_s_length 15 - #define F_status_socket_option_not_s_length 19 - #define F_status_socket_receive_s_length 16 - #define F_status_socket_receive_not_s_length 20 - #define F_status_socket_send_s_length 13 - #define F_status_socket_send_not_s_length 17 - #define F_status_socket_stream_s_length 15 - #define F_status_socket_stream_not_s_length 19 - #define F_status_socket_support_s_length 16 - #define F_status_socket_support_not_s_length 20 - #define F_status_socket_target_s_length 15 - #define F_status_socket_target_not_s_length 19 - #define F_status_socket_time_s_length 13 - #define F_status_socket_time_not_s_length 17 - #define F_status_socket_time_out_s_length 17 - #define F_status_some_s_length 6 - #define F_status_some_not_s_length 10 - #define F_status_space_s_length 7 - #define F_status_space_not_s_length 11 - #define F_status_spin_s_length 6 - #define F_status_spin_not_s_length 10 - #define F_status_start_s_length 7 - #define F_status_start_not_s_length 11 - #define F_status_status_s_length 8 - #define F_status_status_not_s_length 12 - #define F_status_stop_s_length 6 - #define F_status_stop_not_s_length 10 - #define F_status_store_s_length 7 - #define F_status_store_not_s_length 11 - #define F_status_stream_s_length 8 - #define F_status_stream_not_s_length 12 - #define F_status_string_s_length 8 - #define F_status_string_not_s_length 12 - #define F_status_string_too_large_s_length 18 - #define F_status_string_too_small_s_length 18 - #define F_status_success_s_length 9 - #define F_status_success_not_s_length 13 - #define F_status_support_s_length 9 - #define F_status_support_not_s_length 13 - #define F_status_syntax_s_length 8 - #define F_status_syntax_not_s_length 12 - #define F_status_terminal_s_length 10 - #define F_status_terminal_access_s_length 17 - #define F_status_terminal_known_s_length 16 - #define F_status_terminal_known_not_s_length 20 - #define F_status_terminal_not_s_length 14 - #define F_status_terminal_prohibited_s_length 21 - #define F_status_terminal_read_s_length 15 - #define F_status_terminal_valid_s_length 16 - #define F_status_terminal_valid_not_s_length 20 - #define F_status_terminal_write_s_length 16 - #define F_status_terminate_s_length 11 - #define F_status_terminate_not_s_length 15 - #define F_status_test_s_length 6 - #define F_status_test_not_s_length 10 - #define F_status_than_greater_s_length 14 - #define F_status_than_less_s_length 11 - #define F_status_thread_s_length 8 - #define F_status_thread_not_s_length 12 - #define F_status_time_s_length 6 - #define F_status_time_not_s_length 10 - #define F_status_time_out_s_length 10 - #define F_status_too_large_s_length 11 - #define F_status_too_small_s_length 11 - #define F_status_top_s_length 5 - #define F_status_top_not_s_length 9 - #define F_status_touch_s_length 7 - #define F_status_touch_not_s_length 11 - #define F_status_type_s_length 6 - #define F_status_type_not_s_length 10 - #define F_status_ugly_s_length 6 - #define F_status_ugly_not_s_length 10 - #define F_status_unload_s_length 8 - #define F_status_unload_not_s_length 12 - #define F_status_user_s_length 6 - #define F_status_user_not_s_length 10 - #define F_status_utf_s_length 5 - #define F_status_utf_fragment_s_length 14 - #define F_status_utf_fragment_not_s_length 18 - #define F_status_utf_not_s_length 9 - #define F_status_valid_s_length 7 - #define F_status_valid_not_s_length 11 - #define F_status_value_s_length 7 - #define F_status_value_not_s_length 11 - #define F_status_wait_s_length 6 - #define F_status_wait_not_s_length 10 - #define F_status_want_s_length 6 - #define F_status_want_not_s_length 10 - #define F_status_warning_s_length 9 - #define F_status_warning_not_s_length 13 - #define F_status_wish_s_length 6 - #define F_status_wish_not_s_length 10 - #define F_status_word_s_length 6 - #define F_status_word_not_s_length 10 - #define F_status_world_s_length 7 - #define F_status_world_not_s_length 11 - #define F_status_write_s_length 7 - #define F_status_write_not_s_length 11 - #define F_status_write_only_s_length 12 - #define F_status_yes_s_length 5 - #define F_status_yes_not_s_length 9 + #define F_status_okay_s_length 6 + #define F_status_okay_block_s_length 12 + #define F_status_okay_eoa_s_length 10 + #define F_status_okay_eof_s_length 10 + #define F_status_okay_eol_s_length 10 + #define F_status_okay_eos_s_length 10 + #define F_status_okay_not_s_length 10 + #define F_status_okay_start_s_length 12 + #define F_status_okay_stop_s_length 11 + #define F_status_abort_s_length 7 + #define F_status_abort_not_s_length 11 + #define F_status_absolute_s_length 10 + #define F_status_absolute_not_s_length 14 + #define F_status_access_s_length 8 + #define F_status_access_denied_s_length 15 + #define F_status_access_denied_user_s_length 20 + #define F_status_access_denied_group_s_length 21 + #define F_status_access_denied_world_s_length 21 + #define F_status_access_denied_read_s_length 20 + #define F_status_access_denied_write_s_length 21 + #define F_status_access_denied_execute_s_length 23 + #define F_status_access_denied_super_s_length 21 + #define F_status_access_granted_s_length 16 + #define F_status_access_granted_user_s_length 21 + #define F_status_access_granted_group_s_length 22 + #define F_status_access_granted_world_s_length 22 + #define F_status_access_granted_read_s_length 21 + #define F_status_access_granted_write_s_length 22 + #define F_status_access_granted_execute_s_length 24 + #define F_status_access_granted_super_s_length 22 + #define F_status_access_group_s_length 14 + #define F_status_access_mode_s_length 13 + #define F_status_access_not_s_length 12 + #define F_status_access_owner_s_length 14 + #define F_status_add_s_length 5 + #define F_status_add_not_s_length 9 + #define F_status_address_s_length 9 + #define F_status_address_not_s_length 13 + #define F_status_again_s_length 7 + #define F_status_again_not_s_length 11 + #define F_status_all_s_length 5 + #define F_status_all_not_s_length 9 + #define F_status_array_s_length 7 + #define F_status_array_not_s_length 11 + #define F_status_array_too_large_s_length 17 + #define F_status_array_too_small_s_length 17 + #define F_status_ascii_s_length 7 + #define F_status_ascii_not_s_length 11 + #define F_status_atomic_s_length 8 + #define F_status_atomic_not_s_length 12 + #define F_status_attribute_s_length 11 + #define F_status_attribute_not_s_length 15 + #define F_status_available_s_length 11 + #define F_status_available_not_s_length 15 + #define F_status_available_not_address_s_length 23 + #define F_status_available_not_buffer_s_length 22 + #define F_status_available_not_device_s_length 22 + #define F_status_available_not_pipe_s_length 20 + #define F_status_available_not_port_s_length 20 + #define F_status_available_not_process_s_length 23 + #define F_status_available_not_socket_s_length 22 + #define F_status_backward_s_length 10 + #define F_status_backward_fast_s_length 15 + #define F_status_backward_not_s_length 14 + #define F_status_backward_slow_s_length 15 + #define F_status_barrier_s_length 9 + #define F_status_barrier_not_s_length 13 + #define F_status_base_s_length 6 + #define F_status_base_not_s_length 10 + #define F_status_bdo_s_length 5 + #define F_status_bdo_not_s_length 9 + #define F_status_begin_s_length 7 + #define F_status_begin_not_s_length 11 + #define F_status_block_s_length 7 + #define F_status_block_not_s_length 11 + #define F_status_body_s_length 6 + #define F_status_body_not_s_length 10 + #define F_status_bottom_s_length 8 + #define F_status_bottom_not_s_length 12 + #define F_status_bound_s_length 7 + #define F_status_bound_not_s_length 11 + #define F_status_break_s_length 7 + #define F_status_break_not_s_length 11 + #define F_status_buffer_s_length 8 + #define F_status_buffer_not_s_length 12 + #define F_status_buffer_overflow_s_length 17 + #define F_status_buffer_restrict_s_length 17 + #define F_status_buffer_scope_out_s_length 18 + #define F_status_buffer_sufficient_s_length 19 + #define F_status_buffer_sufficient_not_s_length 23 + #define F_status_buffer_too_large_s_length 18 + #define F_status_buffer_too_small_s_length 18 + #define F_status_buffer_underflow_s_length 18 + #define F_status_busy_s_length 6 + #define F_status_busy_address_s_length 14 + #define F_status_busy_buffer_s_length 13 + #define F_status_busy_device_s_length 13 + #define F_status_busy_not_s_length 10 + #define F_status_busy_pipe_s_length 11 + #define F_status_busy_port_s_length 11 + #define F_status_busy_process_s_length 14 + #define F_status_busy_socket_s_length 13 + #define F_status_call_s_length 6 + #define F_status_call_not_s_length 10 + #define F_status_capability_s_length 12 + #define F_status_capability_not_s_length 16 + #define F_status_case_s_length 6 + #define F_status_case_not_s_length 10 + #define F_status_character_s_length 11 + #define F_status_character_not_s_length 15 + #define F_status_child_s_length 7 + #define F_status_child_not_s_length 11 + #define F_status_clock_s_length 7 + #define F_status_clock_ahead_s_length 13 + #define F_status_clock_behind_s_length 14 + #define F_status_clock_match_s_length 13 + #define F_status_clock_not_s_length 11 + #define F_status_clock_skew_s_length 12 + #define F_status_combarudoo_s_length 12 + #define F_status_combarudoo_not_s_length 16 + #define F_status_complete_s_length 10 + #define F_status_complete_not_s_length 14 + #define F_status_complete_not_utf_s_length 18 + #define F_status_complete_not_utf_block_s_length 24 + #define F_status_complete_not_utf_eoa_s_length 22 + #define F_status_complete_not_utf_eof_s_length 22 + #define F_status_complete_not_utf_eol_s_length 22 + #define F_status_complete_not_utf_eos_s_length 22 + #define F_status_complete_not_utf_start_s_length 24 + #define F_status_complete_not_utf_stop_s_length 23 + #define F_status_condition_s_length 11 + #define F_status_condition_not_s_length 15 + #define F_status_connect_s_length 9 + #define F_status_connect_busy_s_length 14 + #define F_status_connect_not_s_length 13 + #define F_status_connect_refuse_s_length 16 + #define F_status_connect_reset_s_length 15 + #define F_status_consistent_s_length 12 + #define F_status_consistent_not_s_length 16 + #define F_status_container_s_length 11 + #define F_status_container_not_s_length 15 + #define F_status_content_s_length 9 + #define F_status_content_not_s_length 13 + #define F_status_continue_s_length 10 + #define F_status_continue_not_s_length 14 + #define F_status_control_s_length 9 + #define F_status_control_not_s_length 13 + #define F_status_control_group_s_length 15 + #define F_status_control_group_not_s_length 19 + #define F_status_controller_s_length 12 + #define F_status_controller_not_s_length 16 + #define F_status_critical_s_length 10 + #define F_status_critical_not_s_length 14 + #define F_status_data_s_length 6 + #define F_status_data_not_s_length 10 + #define F_status_data_not_block_s_length 16 + #define F_status_data_not_eoa_s_length 14 + #define F_status_data_not_eof_s_length 14 + #define F_status_data_not_eol_s_length 14 + #define F_status_data_not_eos_s_length 14 + #define F_status_data_not_start_s_length 16 + #define F_status_data_not_stop_s_length 15 + #define F_status_dead_s_length 6 + #define F_status_dead_not_s_length 10 + #define F_status_deadlock_s_length 10 + #define F_status_deadlock_not_s_length 14 + #define F_status_debug_s_length 7 + #define F_status_debug_not_s_length 11 + #define F_status_descriptor_s_length 12 + #define F_status_descriptor_not_s_length 16 + #define F_status_desire_s_length 8 + #define F_status_desire_not_s_length 12 + #define F_status_device_s_length 8 + #define F_status_device_not_s_length 12 + #define F_status_directory_s_length 11 + #define F_status_directory_close_s_length 17 + #define F_status_directory_closed_s_length 18 + #define F_status_directory_descriptor_s_length 22 + #define F_status_directory_empty_s_length 17 + #define F_status_directory_empty_not_s_length 21 + #define F_status_directory_found_s_length 17 + #define F_status_directory_found_not_s_length 21 + #define F_status_directory_flush_s_length 17 + #define F_status_directory_link_max_s_length 20 + #define F_status_directory_not_s_length 15 + #define F_status_directory_open_s_length 16 + #define F_status_directory_purge_s_length 17 + #define F_status_directory_read_s_length 16 + #define F_status_directory_stream_s_length 18 + #define F_status_directory_support_not_s_length 23 + #define F_status_directory_synchronize_s_length 23 + #define F_status_directory_utf_s_length 15 + #define F_status_directory_utf_not_s_length 19 + #define F_status_directory_write_s_length 17 + #define F_status_disable_s_length 9 + #define F_status_disable_not_s_length 13 + #define F_status_discard_s_length 9 + #define F_status_discard_not_s_length 13 + #define F_status_disk_s_length 6 + #define F_status_disk_not_s_length 10 + #define F_status_domain_s_length 8 + #define F_status_domain_not_s_length 12 + #define F_status_done_s_length 6 + #define F_status_done_not_s_length 10 + #define F_status_drop_s_length 6 + #define F_status_drop_not_s_length 10 + #define F_status_dummy_s_length 7 + #define F_status_dummy_not_s_length 11 + #define F_status_empty_s_length 7 + #define F_status_empty_not_s_length 11 + #define F_status_enable_s_length 8 + #define F_status_enable_not_s_length 12 + #define F_status_encoding_s_length 10 + #define F_status_encoding_not_s_length 14 + #define F_status_end_s_length 5 + #define F_status_end_not_s_length 10 + #define F_status_end_not_block_s_length 15 + #define F_status_end_not_eoa_s_length 13 + #define F_status_end_not_eof_s_length 13 + #define F_status_end_not_eol_s_length 13 + #define F_status_end_not_eos_s_length 13 + #define F_status_end_not_start_s_length 15 + #define F_status_end_not_stop_s_length 14 + #define F_status_end_not_group_s_length 15 + #define F_status_end_not_group_block_s_length 21 + #define F_status_end_not_group_eoa_s_length 19 + #define F_status_end_not_group_eof_s_length 19 + #define F_status_end_not_group_eol_s_length 19 + #define F_status_end_not_group_eos_s_length 19 + #define F_status_end_not_group_start_s_length 21 + #define F_status_end_not_group_stop_s_length 20 + #define F_status_end_not_nest_s_length 14 + #define F_status_end_not_nest_block_s_length 20 + #define F_status_end_not_nest_eoa_s_length 18 + #define F_status_end_not_nest_eof_s_length 18 + #define F_status_end_not_nest_eol_s_length 18 + #define F_status_end_not_nest_eos_s_length 18 + #define F_status_end_not_nest_start_s_length 20 + #define F_status_end_not_nest_stop_s_length 19 + #define F_status_endian_s_length 8 + #define F_status_endian_big_s_length 12 + #define F_status_endian_little_s_length 19 + #define F_status_endian_not_s_length 12 + #define F_status_enter_s_length 7 + #define F_status_enter_not_s_length 11 + #define F_status_eoa_s_length 5 + #define F_status_eoa_not_s_length 9 + #define F_status_eof_s_length 5 + #define F_status_eof_not_s_length 9 + #define F_status_eol_s_length 5 + #define F_status_eol_not_s_length 9 + #define F_status_eos_s_length 5 + #define F_status_eos_not_s_length 9 + #define F_status_equal_to_s_length 10 + #define F_status_equal_to_not_s_length 14 + #define F_status_error_s_length 7 + #define F_status_error_not_s_length 11 + #define F_status_execute_s_length 9 + #define F_status_execute_not_s_length 13 + #define F_status_exist_s_length 7 + #define F_status_exist_not_s_length 11 + #define F_status_exit_s_length 6 + #define F_status_exit_not_s_length 10 + #define F_status_failure_s_length 9 + #define F_status_failure_not_s_length 13 + #define F_status_family_s_length 8 + #define F_status_family_not_s_length 12 + #define F_status_fifo_s_length 6 + #define F_status_fifo_not_s_length 10 + #define F_status_file_s_length 6 + #define F_status_file_close_s_length 12 + #define F_status_file_closed_s_length 13 + #define F_status_file_descriptor_s_length 17 + #define F_status_file_descriptor_max_s_length 21 + #define F_status_file_descriptor_not_s_length 21 + #define F_status_file_empty_s_length 12 + #define F_status_file_empty_not_s_length 16 + #define F_status_file_flush_s_length 12 + #define F_status_file_found_s_length 12 + #define F_status_file_found_not_s_length 16 + #define F_status_file_not_s_length 10 + #define F_status_file_open_s_length 11 + #define F_status_file_open_max_s_length 15 + #define F_status_file_opened_s_length 13 + #define F_status_file_overflow_s_length 15 + #define F_status_file_purge_s_length 12 + #define F_status_file_read_s_length 11 + #define F_status_file_reallocation_s_length 19 + #define F_status_file_seek_s_length 11 + #define F_status_file_stat_s_length 11 + #define F_status_file_synchronize_s_length 18 + #define F_status_file_system_s_length 13 + #define F_status_file_system_not_s_length 17 + #define F_status_file_system_prohibit_s_length 22 + #define F_status_file_system_quota_block_s_length 25 + #define F_status_file_system_quota_reached_s_length 27 + #define F_status_file_system_read_only_s_length 24 + #define F_status_file_system_read_write_s_length 24 + #define F_status_file_system_write_only_s_length 24 + #define F_status_file_type_block_s_length 17 + #define F_status_file_type_character_s_length 21 + #define F_status_file_type_directory_s_length 21 + #define F_status_file_type_fifo_s_length 16 + #define F_status_file_type_link_s_length 16 + #define F_status_file_type_not_block_s_length 21 + #define F_status_file_type_not_character_s_length 25 + #define F_status_file_type_not_directory_s_length 25 + #define F_status_file_type_not_fifo_s_length 20 + #define F_status_file_type_not_link_s_length 20 + #define F_status_file_type_not_pipe_s_length 20 + #define F_status_file_type_not_regular_s_length 23 + #define F_status_file_type_not_socket_s_length 22 + #define F_status_file_type_not_unknown_s_length 23 + #define F_status_file_type_pipe_s_length 16 + #define F_status_file_type_regular_s_length 19 + #define F_status_file_type_socket_s_length 18 + #define F_status_file_type_unknown_s_length 19 + #define F_status_file_underflow_s_length 16 + #define F_status_file_utf_s_length 10 + #define F_status_file_utf_not_s_length 14 + #define F_status_file_write_s_length 12 + #define F_status_fine_s_length 6 + #define F_status_fine_not_s_length 10 + #define F_status_fire_wall_s_length 11 + #define F_status_fire_wall_block_s_length 17 + #define F_status_fire_wall_close_s_length 17 + #define F_status_fire_wall_not_s_length 15 + #define F_status_fire_wall_open_s_length 16 + #define F_status_fire_wall_pass_s_length 16 + #define F_status_first_s_length 7 + #define F_status_first_not_s_length 11 + #define F_status_footer_s_length 8 + #define F_status_footer_not_s_length 12 + #define F_status_fork_s_length 6 + #define F_status_fork_not_s_length 10 + #define F_status_format_s_length 8 + #define F_status_format_not_s_length 12 + #define F_status_forward_s_length 9 + #define F_status_forward_fast_s_length 14 + #define F_status_forward_not_s_length 13 + #define F_status_forward_slow_s_length 14 + #define F_status_found_s_length 7 + #define F_status_found_not_s_length 11 + #define F_status_full_s_length 6 + #define F_status_full_not_s_length 10 + #define F_status_future_s_length 8 + #define F_status_future_not_s_length 12 + #define F_status_group_s_length 7 + #define F_status_group_not_s_length 11 + #define F_status_halt_s_length 6 + #define F_status_halt_not_s_length 10 + #define F_status_header_s_length 8 + #define F_status_header_not_s_length 12 + #define F_status_help_s_length 6 + #define F_status_help_not_s_length 10 + #define F_status_ignore_s_length 8 + #define F_status_ignore_not_s_length 12 + #define F_status_implement_s_length 11 + #define F_status_implement_not_s_length 15 + #define F_status_input_s_length 7 + #define F_status_input_not_s_length 11 + #define F_status_input_output_s_length 14 + #define F_status_instance_s_length 10 + #define F_status_instance_not_s_length 14 + #define F_status_instance_too_many_s_length 19 + #define F_status_interrupt_s_length 11 + #define F_status_interrupt_not_s_length 15 + #define F_status_is_s_length 8 + #define F_status_is_not_s_length 12 + #define F_status_keep_s_length 6 + #define F_status_keep_not_s_length 10 + #define F_status_keyboard_s_length 10 + #define F_status_keyboard_not_s_length 14 + #define F_status_known_s_length 7 + #define F_status_known_not_s_length 11 + #define F_status_last_s_length 6 + #define F_status_last_not_s_length 10 + #define F_status_limit_s_length 7 + #define F_status_limit_not_s_length 11 + #define F_status_link_s_length 6 + #define F_status_link_not_s_length 10 + #define F_status_live_s_length 6 + #define F_status_live_not_s_length 10 + #define F_status_load_s_length 6 + #define F_status_load_not_s_length 10 + #define F_status_local_s_length 7 + #define F_status_local_not_s_length 11 + #define F_status_lock_s_length 6 + #define F_status_lock_critical_s_length 15 + #define F_status_lock_critical_not_s_length 19 + #define F_status_lock_mutex_s_length 12 + #define F_status_lock_mutex_not_s_length 16 + #define F_status_lock_not_s_length 10 + #define F_status_lock_read_s_length 11 + #define F_status_lock_read_not_s_length 15 + #define F_status_lock_read_write_s_length 17 + #define F_status_lock_read_write_not_s_length 21 + #define F_status_lock_release_s_length 14 + #define F_status_lock_release_not_s_length 18 + #define F_status_lock_signal_s_length 13 + #define F_status_lock_signal_not_s_length 17 + #define F_status_lock_spin_s_length 11 + #define F_status_lock_spin_not_s_length 15 + #define F_status_lock_time_s_length 11 + #define F_status_lock_time_not_s_length 15 + #define F_status_lock_wait_s_length 11 + #define F_status_lock_wait_not_s_length 15 + #define F_status_lock_write_s_length 12 + #define F_status_lock_write_not_s_length 16 + #define F_status_loop_s_length 6 + #define F_status_loop_not_s_length 10 + #define F_status_match_s_length 7 + #define F_status_match_not_s_length 11 + #define F_status_maximum_s_length 9 + #define F_status_maximum_not_s_length 13 + #define F_status_maybe_s_length 7 + #define F_status_maybe_not_s_length 11 + #define F_status_memory_s_length 8 + #define F_status_memory_not_s_length 12 + #define F_status_message_s_length 9 + #define F_status_message_not_s_length 13 + #define F_status_middle_s_length 8 + #define F_status_middle_not_s_length 12 + #define F_status_minimum_s_length 9 + #define F_status_minimum_not_s_length 13 + #define F_status_minor_s_length 7 + #define F_status_minor_not_s_length 11 + #define F_status_miss_s_length 6 + #define F_status_miss_not_s_length 10 + #define F_status_moderate_s_length 10 + #define F_status_moderate_not_s_length 14 + #define F_status_mount_s_length 7 + #define F_status_mount_not_s_length 11 + #define F_status_mouse_s_length 7 + #define F_status_mouse_not_s_length 11 + #define F_status_mute_s_length 6 + #define F_status_mute_not_s_length 10 + #define F_status_mutex_s_length 7 + #define F_status_mutex_not_s_length 11 + #define F_status_name_s_length 6 + #define F_status_name_not_s_length 10 + #define F_status_need_s_length 6 + #define F_status_need_not_s_length 10 + #define F_status_network_s_length 9 + #define F_status_network_busy_s_length 14 + #define F_status_network_busy_not_s_length 18 + #define F_status_network_client_s_length 16 + #define F_status_network_client_not_s_length 20 + #define F_status_network_device_s_length 16 + #define F_status_network_device_not_s_length 20 + #define F_status_network_down_s_length 14 + #define F_status_network_down_not_s_length 18 + #define F_status_network_found_s_length 15 + #define F_status_network_found_not_s_length 19 + #define F_status_network_lost_s_length 14 + #define F_status_network_lost_not_s_length 18 + #define F_status_network_not_s_length 13 + #define F_status_network_reach_s_length 15 + #define F_status_network_reach_client_s_length 22 + #define F_status_network_client_reach_not_s_length 26 + #define F_status_network_reach_not_s_length 19 + #define F_status_network_reach_server_s_length 22 + #define F_status_network_reach_server_not_s_length 26 + #define F_status_network_server_s_length 16 + #define F_status_network_server_not_s_length 20 + #define F_status_network_time_s_length 14 + #define F_status_network_time_not_s_length 18 + #define F_status_network_up_s_length 12 + #define F_status_network_up_not_s_length 16 + #define F_status_network_version_four_s_length 22 + #define F_status_network_version_four_not_s_length 26 + #define F_status_network_version_six_s_length 21 + #define F_status_network_version_six_not_s_length 25 + #define F_status_number_s_length 8 + #define F_status_number_decimal_s_length 16 + #define F_status_number_decimal_not_s_length 20 + #define F_status_number_divide_by_zero_s_length 23 + #define F_status_number_negative_s_length 17 + #define F_status_number_negative_not_s_length 21 + #define F_status_number_not_s_length 12 + #define F_status_number_overflow_s_length 17 + #define F_status_number_positive_s_length 17 + #define F_status_number_positive_not_s_length 21 + #define F_status_number_too_large_s_length 18 + #define F_status_number_too_small_s_length 18 + #define F_status_number_underflow_s_length 18 + #define F_status_number_whole_s_length 14 + #define F_status_number_whole_not_s_length 18 + #define F_status_number_zero_s_length 13 + #define F_status_number_zero_not_s_length 17 + #define F_status_next_s_length 6 + #define F_status_next_not_s_length 10 + #define F_status_nice_s_length 6 + #define F_status_nice_not_s_length 10 + #define F_status_no_s_length 4 + #define F_status_no_not_s_length 8 + #define F_status_none_s_length 6 + #define F_status_none_not_s_length 10 + #define F_status_object_s_length 8 + #define F_status_object_not_s_length 12 + #define F_status_once_s_length 6 + #define F_status_once_not_s_length 10 + #define F_status_option_s_length 8 + #define F_status_option_not_s_length 12 + #define F_status_output_s_length 8 + #define F_status_output_not_s_length 12 + #define F_status_packet_s_length 8 + #define F_status_packet_not_s_length 12 + #define F_status_packet_too_large_s_length 18 + #define F_status_packet_too_large_not_s_length 22 + #define F_status_packet_too_small_s_length 18 + #define F_status_packet_too_small_not_s_length 22 + #define F_status_parameter_s_length 11 + #define F_status_parameter_not_s_length 15 + #define F_status_parent_s_length 8 + #define F_status_parent_not_s_length 12 + #define F_status_partial_s_length 9 + #define F_status_partial_not_s_length 13 + #define F_status_past_s_length 6 + #define F_status_past_not_s_length 10 + #define F_status_pause_s_length 7 + #define F_status_pause_not_s_length 11 + #define F_status_payload_s_length 9 + #define F_status_payload_not_s_length 13 + #define F_status_payload_too_large_s_length 19 + #define F_status_payload_too_large_not_s_length 23 + #define F_status_payload_too_small_s_length 19 + #define F_status_payload_too_small_not_s_length 23 + #define F_status_pipe_s_length 6 + #define F_status_pipe_not_s_length 10 + #define F_status_port_s_length 6 + #define F_status_port_not_s_length 10 + #define F_status_present_s_length 9 + #define F_status_present_not_s_length 13 + #define F_status_pretty_s_length 8 + #define F_status_pretty_not_s_length 12 + #define F_status_previous_s_length 10 + #define F_status_previous_not_s_length 14 + #define F_status_process_s_length 9 + #define F_status_process_not_s_length 13 + #define F_status_process_too_many_s_length 18 + #define F_status_processor_s_length 11 + #define F_status_processor_not_s_length 15 + #define F_status_progress_s_length 10 + #define F_status_progress_not_s_length 14 + #define F_status_prohibited_s_length 12 + #define F_status_prohibited_not_s_length 16 + #define F_status_property_s_length 10 + #define F_status_property_not_s_length 14 + #define F_status_protocol_s_length 10 + #define F_status_protocol_not_s_length 14 + #define F_status_protocol_option_s_length 17 + #define F_status_protocol_option_not_s_length 21 + #define F_status_range_s_length 7 + #define F_status_range_not_s_length 11 + #define F_status_read_s_length 6 + #define F_status_read_not_s_length 10 + #define F_status_read_only_s_length 11 + #define F_status_read_write_s_length 12 + #define F_status_read_write_execute_s_length 20 + #define F_status_read_write_execute_not_s_length 24 + #define F_status_read_write_execute_only_s_length 25 + #define F_status_read_write_not_s_length 16 + #define F_status_read_write_only_s_length 17 + #define F_status_ready_s_length 7 + #define F_status_ready_not_s_length 11 + #define F_status_receive_s_length 9 + #define F_status_receive_not_s_length 13 + #define F_status_recover_s_length 9 + #define F_status_recover_not_s_length 13 + #define F_status_recurse_s_length 9 + #define F_status_recurse_not_s_length 13 + #define F_status_refresh_s_length 9 + #define F_status_refresh_not_s_length 13 + #define F_status_regular_s_length 9 + #define F_status_regular_not_s_length 13 + #define F_status_relative_s_length 10 + #define F_status_relative_not_s_length 14 + #define F_status_reload_s_length 8 + #define F_status_reload_not_s_length 12 + #define F_status_remote_s_length 8 + #define F_status_remote_not_s_length 12 + #define F_status_remove_s_length 8 + #define F_status_remove_not_s_length 12 + #define F_status_repeat_s_length 8 + #define F_status_repeat_not_s_length 12 + #define F_status_require_s_length 9 + #define F_status_require_not_s_length 13 + #define F_status_resource_s_length 10 + #define F_status_resource_not_s_length 14 + #define F_status_restart_s_length 9 + #define F_status_restart_not_s_length 13 + #define F_status_restore_s_length 9 + #define F_status_restore_not_s_length 13 + #define F_status_resume_s_length 8 + #define F_status_resume_not_s_length 12 + #define F_status_revert_s_length 8 + #define F_status_revert_not_s_length 12 + #define F_status_robust_s_length 8 + #define F_status_robust_not_s_length 12 + #define F_status_schedule_s_length 10 + #define F_status_schedule_not_s_length 14 + #define F_status_search_s_length 8 + #define F_status_search_not_s_length 12 + #define F_status_semaphore_s_length 11 + #define F_status_semaphore_not_s_length 15 + #define F_status_send_s_length 6 + #define F_status_send_not_s_length 10 + #define F_status_size_s_length 6 + #define F_status_size_not_s_length 10 + #define F_status_signal_s_length 8 + #define F_status_signal_not_s_length 12 + #define F_status_skip_s_length 6 + #define F_status_skip_not_s_length 10 + #define F_status_socket_s_length 8 + #define F_status_socket_block_s_length 14 + #define F_status_socket_block_not_s_length 18 + #define F_status_socket_client_s_length 15 + #define F_status_socket_client_not_s_length 19 + #define F_status_socket_not_s_length 12 + #define F_status_socket_option_s_length 15 + #define F_status_socket_option_not_s_length 19 + #define F_status_socket_pipe_s_length 13 + #define F_status_socket_pipe_close_s_length 19 + #define F_status_socket_pipe_not_s_length 17 + #define F_status_socket_pipe_open_s_length 18 + #define F_status_socket_receive_s_length 16 + #define F_status_socket_receive_not_s_length 20 + #define F_status_socket_send_s_length 13 + #define F_status_socket_send_not_s_length 17 + #define F_status_socket_stream_s_length 15 + #define F_status_socket_stream_not_s_length 19 + #define F_status_socket_support_s_length 16 + #define F_status_socket_support_not_s_length 20 + #define F_status_socket_target_s_length 15 + #define F_status_socket_target_not_s_length 19 + #define F_status_socket_time_s_length 13 + #define F_status_socket_time_not_s_length 17 + #define F_status_socket_time_out_s_length 17 + #define F_status_some_s_length 6 + #define F_status_some_not_s_length 10 + #define F_status_space_s_length 7 + #define F_status_space_not_s_length 11 + #define F_status_spin_s_length 6 + #define F_status_spin_not_s_length 10 + #define F_status_start_s_length 7 + #define F_status_start_not_s_length 11 + #define F_status_status_s_length 8 + #define F_status_status_not_s_length 12 + #define F_status_stop_s_length 6 + #define F_status_stop_not_s_length 10 + #define F_status_store_s_length 7 + #define F_status_store_not_s_length 11 + #define F_status_stream_s_length 8 + #define F_status_stream_not_s_length 12 + #define F_status_string_s_length 8 + #define F_status_string_not_s_length 12 + #define F_status_string_too_large_s_length 18 + #define F_status_string_too_small_s_length 18 + #define F_status_success_s_length 9 + #define F_status_success_not_s_length 13 + #define F_status_support_s_length 9 + #define F_status_support_not_s_length 13 + #define F_status_syntax_s_length 8 + #define F_status_syntax_not_s_length 12 + #define F_status_terminal_s_length 10 + #define F_status_terminal_access_s_length 17 + #define F_status_terminal_known_s_length 16 + #define F_status_terminal_known_not_s_length 20 + #define F_status_terminal_not_s_length 14 + #define F_status_terminal_prohibited_s_length 21 + #define F_status_terminal_read_s_length 15 + #define F_status_terminal_valid_s_length 16 + #define F_status_terminal_valid_not_s_length 20 + #define F_status_terminal_write_s_length 16 + #define F_status_terminate_s_length 11 + #define F_status_terminate_not_s_length 15 + #define F_status_test_s_length 6 + #define F_status_test_not_s_length 10 + #define F_status_than_greater_s_length 14 + #define F_status_than_less_s_length 11 + #define F_status_thread_s_length 8 + #define F_status_thread_not_s_length 12 + #define F_status_time_s_length 6 + #define F_status_time_not_s_length 10 + #define F_status_time_out_s_length 10 + #define F_status_too_large_s_length 11 + #define F_status_too_small_s_length 11 + #define F_status_top_s_length 5 + #define F_status_top_not_s_length 9 + #define F_status_touch_s_length 7 + #define F_status_touch_not_s_length 11 + #define F_status_type_s_length 6 + #define F_status_type_not_s_length 10 + #define F_status_ugly_s_length 6 + #define F_status_ugly_not_s_length 10 + #define F_status_unload_s_length 8 + #define F_status_unload_not_s_length 12 + #define F_status_user_s_length 6 + #define F_status_user_not_s_length 10 + #define F_status_utf_s_length 5 + #define F_status_utf_fragment_s_length 14 + #define F_status_utf_fragment_not_s_length 18 + #define F_status_utf_not_s_length 9 + #define F_status_valid_s_length 7 + #define F_status_valid_not_s_length 11 + #define F_status_value_s_length 7 + #define F_status_value_not_s_length 11 + #define F_status_wait_s_length 6 + #define F_status_wait_not_s_length 10 + #define F_status_want_s_length 6 + #define F_status_want_not_s_length 10 + #define F_status_warning_s_length 9 + #define F_status_warning_not_s_length 13 + #define F_status_wish_s_length 6 + #define F_status_wish_not_s_length 10 + #define F_status_word_s_length 6 + #define F_status_word_not_s_length 10 + #define F_status_world_s_length 7 + #define F_status_world_not_s_length 11 + #define F_status_write_s_length 7 + #define F_status_write_not_s_length 11 + #define F_status_write_only_s_length 12 + #define F_status_yes_s_length 5 + #define F_status_yes_not_s_length 9 extern const f_string_static_t f_status_okay_s; extern const f_string_static_t f_status_okay_block_s; @@ -1785,6 +1815,7 @@ extern "C" { extern const f_string_static_t f_status_condition_s; extern const f_string_static_t f_status_condition_not_s; extern const f_string_static_t f_status_connect_s; + extern const f_string_static_t f_status_connect_busy_s; extern const f_string_static_t f_status_connect_not_s; extern const f_string_static_t f_status_connect_refuse_s; extern const f_string_static_t f_status_connect_reset_s; @@ -1944,6 +1975,14 @@ extern "C" { extern const f_string_static_t f_status_file_seek_s; extern const f_string_static_t f_status_file_stat_s; extern const f_string_static_t f_status_file_synchronize_s; + extern const f_string_static_t f_status_file_system_s; + extern const f_string_static_t f_status_file_system_not_s; + extern const f_string_static_t f_status_file_system_prohibit_s; + extern const f_string_static_t f_status_file_system_quota_block_s; + extern const f_string_static_t f_status_file_system_quota_reached_s; + extern const f_string_static_t f_status_file_system_read_only_s; + extern const f_string_static_t f_status_file_system_read_write_s; + extern const f_string_static_t f_status_file_system_write_only_s; extern const f_string_static_t f_status_file_type_block_s; extern const f_string_static_t f_status_file_type_character_s; extern const f_string_static_t f_status_file_type_directory_s; @@ -1966,12 +2005,14 @@ extern "C" { extern const f_string_static_t f_status_file_utf_s; extern const f_string_static_t f_status_file_utf_not_s; extern const f_string_static_t f_status_file_write_s; - extern const f_string_static_t f_status_filesystem_s; - extern const f_string_static_t f_status_filesystem_not_s; - extern const f_string_static_t f_status_filesystem_quota_block_s; - extern const f_string_static_t f_status_filesystem_quota_reached_s; extern const f_string_static_t f_status_fine_s; extern const f_string_static_t f_status_fine_not_s; + extern const f_string_static_t f_status_fire_wall_s; + extern const f_string_static_t f_status_fire_wall_block_s; + extern const f_string_static_t f_status_fire_wall_close_s; + extern const f_string_static_t f_status_fire_wall_not_s; + extern const f_string_static_t f_status_fire_wall_open_s; + extern const f_string_static_t f_status_fire_wall_pass_s; extern const f_string_static_t f_status_first_s; extern const f_string_static_t f_status_first_not_s; extern const f_string_static_t f_status_footer_s; @@ -2265,6 +2306,10 @@ extern "C" { extern const f_string_static_t f_status_socket_not_s; extern const f_string_static_t f_status_socket_option_s; extern const f_string_static_t f_status_socket_option_not_s; + extern const f_string_static_t f_status_socket_pipe_s; + extern const f_string_static_t f_status_socket_pipe_close_s; + extern const f_string_static_t f_status_socket_pipe_not_s; + extern const f_string_static_t f_status_socket_pipe_open_s; extern const f_string_static_t f_status_socket_receive_s; extern const f_string_static_t f_status_socket_receive_not_s; extern const f_string_static_t f_status_socket_send_s; diff --git a/level_0/f_status_string/tests/unit/c/test-status_string-to.c b/level_0/f_status_string/tests/unit/c/test-status_string-to.c index 1df112a..1913177 100644 --- a/level_0/f_status_string/tests/unit/c/test-status_string-to.c +++ b/level_0/f_status_string/tests/unit/c/test-status_string-to.c @@ -229,6 +229,7 @@ void test__f_status_string_to__works(void **state) { F_condition, F_condition_not, F_connect, + F_connect_busy, F_connect_not, F_connect_refuse, F_connect_reset, @@ -386,6 +387,14 @@ void test__f_status_string_to__works(void **state) { F_file_seek, F_file_stat, F_file_synchronize, + F_file_system, + F_file_system_not, + F_file_system_prohibit, + F_file_system_quota_block, + F_file_system_quota_reached, + F_file_system_read_only, + F_file_system_read_write, + F_file_system_write_only, F_file_type_block, F_file_type_character, F_file_type_directory, @@ -408,12 +417,14 @@ void test__f_status_string_to__works(void **state) { F_file_utf, F_file_utf_not, F_file_write, - F_filesystem, - F_filesystem_not, - F_filesystem_quota_block, - F_filesystem_quota_reached, F_fine, F_fine_not, + F_fire_wall, + F_fire_wall_block, + F_fire_wall_close, + F_fire_wall_not, + F_fire_wall_open, + F_fire_wall_pass, F_first, F_first_not, F_footer, @@ -707,6 +718,10 @@ void test__f_status_string_to__works(void **state) { F_socket_not, F_socket_option, F_socket_option_not, + F_socket_pipe, + F_socket_pipe_close, + F_socket_pipe_not, + F_socket_pipe_open, F_socket_receive, F_socket_receive_not, F_socket_send, @@ -1009,6 +1024,7 @@ void test__f_status_string_to__works(void **state) { f_status_condition_s, f_status_condition_not_s, f_status_connect_s, + f_status_connect_busy_s, f_status_connect_not_s, f_status_connect_refuse_s, f_status_connect_reset_s, @@ -1166,6 +1182,14 @@ void test__f_status_string_to__works(void **state) { f_status_file_seek_s, f_status_file_stat_s, f_status_file_synchronize_s, + f_status_file_system_s, + f_status_file_system_not_s, + f_status_file_system_prohibit_s, + f_status_file_system_quota_block_s, + f_status_file_system_quota_reached_s, + f_status_file_system_read_only_s, + f_status_file_system_read_write_s, + f_status_file_system_write_only_s, f_status_file_type_block_s, f_status_file_type_character_s, f_status_file_type_directory_s, @@ -1188,12 +1212,14 @@ void test__f_status_string_to__works(void **state) { f_status_file_utf_s, f_status_file_utf_not_s, f_status_file_write_s, - f_status_filesystem_s, - f_status_filesystem_not_s, - f_status_filesystem_quota_block_s, - f_status_filesystem_quota_reached_s, f_status_fine_s, f_status_fine_not_s, + f_status_fire_wall_s, + f_status_fire_wall_block_s, + f_status_fire_wall_close_s, + f_status_fire_wall_not_s, + f_status_fire_wall_open_s, + f_status_fire_wall_pass_s, f_status_first_s, f_status_first_not_s, f_status_footer_s, @@ -1487,6 +1513,10 @@ void test__f_status_string_to__works(void **state) { f_status_socket_not_s, f_status_socket_option_s, f_status_socket_option_not_s, + f_status_socket_pipe_s, + f_status_socket_pipe_close_s, + f_status_socket_pipe_not_s, + f_status_socket_pipe_open_s, f_status_socket_receive_s, f_status_socket_receive_not_s, f_status_socket_send_s, @@ -1592,7 +1622,7 @@ void test__f_status_string_to__works(void **state) { { uint16_t i = 0; - for (; i < 777; ++i) { + for (; i < 792; ++i) { f_string_static_t result = f_string_static_t_initialize; diff --git a/level_1/fl_directory/c/directory.h b/level_1/fl_directory/c/directory.h index 2700839..e337f56 100644 --- a/level_1/fl_directory/c/directory.h +++ b/level_1/fl_directory/c/directory.h @@ -69,7 +69,7 @@ extern "C" { * F_directory_link_max (with error bit) max links limit reached or exceeded. * F_file_found (with error bit) of a directory aleady exists at the path. * F_file_found_not (with error bit) if a file within the path is not found (such as a broken symbolic link). - * F_filesystem_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. + * F_file_system_quota_block (with error bit) if file system's disk blocks or inodes are exhausted. * F_loop (with error bit) on loop error. * F_memory_not (with error bit) if out of memory. * F_name (with error bit) on path name error. diff --git a/level_1/fl_status_string/c/status_string.c b/level_1/fl_status_string/c/status_string.c index 6cda00b..59fc5e4 100644 --- a/level_1/fl_status_string/c/status_string.c +++ b/level_1/fl_status_string/c/status_string.c @@ -1232,6 +1232,12 @@ extern "C" { return F_okay; } + if (f_compare_dynamic(name, f_status_connect_busy_s) == F_equal_to) { + *code = F_connect_busy; + + return F_okay; + } + if (f_compare_dynamic(name, f_status_connect_not_s) == F_equal_to) { *code = F_connect_not; @@ -2173,6 +2179,54 @@ extern "C" { return F_okay; } + if (f_compare_dynamic(name, f_status_file_system_s) == F_equal_to) { + *code = F_file_system; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_file_system_not_s) == F_equal_to) { + *code = F_file_system_not; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_file_system_prohibit_s) == F_equal_to) { + *code = F_file_system_prohibit; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_file_system_quota_block_s) == F_equal_to) { + *code = F_file_system_quota_block; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_file_system_quota_reached_s) == F_equal_to) { + *code = F_file_system_quota_reached; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_file_system_read_only_s) == F_equal_to) { + *code = F_file_system_read_only; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_file_system_read_write_s) == F_equal_to) { + *code = F_file_system_read_write; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_file_system_write_only_s) == F_equal_to) { + *code = F_file_system_write_only; + + return F_okay; + } + if (f_compare_dynamic(name, f_status_file_type_block_s) == F_equal_to) { *code = F_file_type_block; @@ -2305,38 +2359,50 @@ extern "C" { return F_okay; } - if (f_compare_dynamic(name, f_status_filesystem_s) == F_equal_to) { - *code = F_filesystem; + if (f_compare_dynamic(name, f_status_fine_s) == F_equal_to) { + *code = F_fine; return F_okay; } - if (f_compare_dynamic(name, f_status_filesystem_not_s) == F_equal_to) { - *code = F_filesystem_not; + if (f_compare_dynamic(name, f_status_fine_not_s) == F_equal_to) { + *code = F_fine_not; return F_okay; } - if (f_compare_dynamic(name, f_status_filesystem_quota_block_s) == F_equal_to) { - *code = F_filesystem_quota_block; + if (f_compare_dynamic(name, f_status_fire_wall_s) == F_equal_to) { + *code = F_fire_wall; return F_okay; } - if (f_compare_dynamic(name, f_status_filesystem_quota_reached_s) == F_equal_to) { - *code = F_filesystem_quota_reached; + if (f_compare_dynamic(name, f_status_fire_wall_block_s) == F_equal_to) { + *code = F_fire_wall_block; return F_okay; } - if (f_compare_dynamic(name, f_status_fine_s) == F_equal_to) { - *code = F_fine; + if (f_compare_dynamic(name, f_status_fire_wall_close_s) == F_equal_to) { + *code = F_fire_wall_close; return F_okay; } - if (f_compare_dynamic(name, f_status_fine_not_s) == F_equal_to) { - *code = F_fine_not; + if (f_compare_dynamic(name, f_status_fire_wall_not_s) == F_equal_to) { + *code = F_fire_wall_not; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_fire_wall_open_s) == F_equal_to) { + *code = F_fire_wall_open; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_fire_wall_pass_s) == F_equal_to) { + *code = F_fire_wall_pass; return F_okay; } @@ -4134,6 +4200,30 @@ extern "C" { return F_okay; } + if (f_compare_dynamic(name, f_status_socket_pipe_s) == F_equal_to) { + *code = F_socket_pipe; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_socket_pipe_close_s) == F_equal_to) { + *code = F_socket_pipe_close; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_socket_pipe_not_s) == F_equal_to) { + *code = F_socket_pipe_not; + + return F_okay; + } + + if (f_compare_dynamic(name, f_status_socket_pipe_open_s) == F_equal_to) { + *code = F_socket_pipe_open; + + return F_okay; + } + if (f_compare_dynamic(name, f_status_socket_receive_s) == F_equal_to) { *code = F_socket_receive; diff --git a/level_1/fl_status_string/tests/unit/c/test-status_string-from.c b/level_1/fl_status_string/tests/unit/c/test-status_string-from.c index 5db6524..8e47680 100644 --- a/level_1/fl_status_string/tests/unit/c/test-status_string-from.c +++ b/level_1/fl_status_string/tests/unit/c/test-status_string-from.c @@ -245,6 +245,7 @@ void test__fl_status_string_from__works(void **state) { F_condition, F_condition_not, F_connect, + F_connect_busy, F_connect_not, F_connect_refuse, F_connect_reset, @@ -402,6 +403,14 @@ void test__fl_status_string_from__works(void **state) { F_file_seek, F_file_stat, F_file_synchronize, + F_file_system, + F_file_system_not, + F_file_system_prohibit, + F_file_system_quota_block, + F_file_system_quota_reached, + F_file_system_read_only, + F_file_system_read_write, + F_file_system_write_only, F_file_type_block, F_file_type_character, F_file_type_directory, @@ -424,12 +433,14 @@ void test__fl_status_string_from__works(void **state) { F_file_utf, F_file_utf_not, F_file_write, - F_filesystem, - F_filesystem_not, - F_filesystem_quota_block, - F_filesystem_quota_reached, F_fine, F_fine_not, + F_fire_wall, + F_fire_wall_block, + F_fire_wall_close, + F_fire_wall_not, + F_fire_wall_open, + F_fire_wall_pass, F_first, F_first_not, F_footer, @@ -723,6 +734,10 @@ void test__fl_status_string_from__works(void **state) { F_socket_not, F_socket_option, F_socket_option_not, + F_socket_pipe, + F_socket_pipe_close, + F_socket_pipe_not, + F_socket_pipe_open, F_socket_receive, F_socket_receive_not, F_socket_send, @@ -1025,6 +1040,7 @@ void test__fl_status_string_from__works(void **state) { f_status_condition_s, f_status_condition_not_s, f_status_connect_s, + f_status_connect_busy_s, f_status_connect_not_s, f_status_connect_refuse_s, f_status_connect_reset_s, @@ -1182,6 +1198,14 @@ void test__fl_status_string_from__works(void **state) { f_status_file_seek_s, f_status_file_stat_s, f_status_file_synchronize_s, + f_status_file_system_s, + f_status_file_system_not_s, + f_status_file_system_prohibit_s, + f_status_file_system_quota_block_s, + f_status_file_system_quota_reached_s, + f_status_file_system_read_only_s, + f_status_file_system_read_write_s, + f_status_file_system_write_only_s, f_status_file_type_block_s, f_status_file_type_character_s, f_status_file_type_directory_s, @@ -1204,12 +1228,14 @@ void test__fl_status_string_from__works(void **state) { f_status_file_utf_s, f_status_file_utf_not_s, f_status_file_write_s, - f_status_filesystem_s, - f_status_filesystem_not_s, - f_status_filesystem_quota_block_s, - f_status_filesystem_quota_reached_s, f_status_fine_s, f_status_fine_not_s, + f_status_fire_wall_s, + f_status_fire_wall_block_s, + f_status_fire_wall_close_s, + f_status_fire_wall_not_s, + f_status_fire_wall_open_s, + f_status_fire_wall_pass_s, f_status_first_s, f_status_first_not_s, f_status_footer_s, @@ -1503,6 +1529,10 @@ void test__fl_status_string_from__works(void **state) { f_status_socket_not_s, f_status_socket_option_s, f_status_socket_option_not_s, + f_status_socket_pipe_s, + f_status_socket_pipe_close_s, + f_status_socket_pipe_not_s, + f_status_socket_pipe_open_s, f_status_socket_receive_s, f_status_socket_receive_not_s, f_status_socket_send_s, @@ -1608,7 +1638,7 @@ void test__fl_status_string_from__works(void **state) { { uint16_t i = 0; - for (; i < 777; ++i) { + for (; i < 792; ++i) { f_status_t result = F_okay; diff --git a/level_2/fll_error/c/error/string.c b/level_2/fll_error/c/error/string.c index bf4476e..efb55d6 100644 --- a/level_2/fll_error/c/error/string.c +++ b/level_2/fll_error/c/error/string.c @@ -120,7 +120,11 @@ extern "C" { "%[%QBuffer is out of scope", "%[%QUnknown protocol option", "%[%QUnknown socket option", - "%[%QSocket time out", + "%[%QFile system is read only", + "%[%QFile system is write only", + "%[%QConnection is busy", + "%[%QInvalid Connection", + "%[%QSocket pipe is closed", }; #endif // _di_fll_error_s_a_ diff --git a/level_2/fll_error/c/error/string.h b/level_2/fll_error/c/error/string.h index 7e09e5b..883d611 100644 --- a/level_2/fll_error/c/error/string.h +++ b/level_2/fll_error/c/error/string.h @@ -154,6 +154,11 @@ extern "C" { fll_error_s_114_unknown_socket_option_e, fll_error_s_115_socket_type_unsupported_e, fll_error_s_116_socket_time_out_e, + fll_error_s_117_file_system_read_only_e, + fll_error_s_118_file_system_write_only_e, + fll_error_s_119_connection_busy_e, + fll_error_s_120_invalid_connection_e, + fll_error_s_121_socket_pipe_closed_e, }; // enum #endif // _di_fll_error_s_e_ diff --git a/level_2/fll_error/c/private-error.c b/level_2/fll_error/c/private-error.c index 315aa10..25c3b6e 100644 --- a/level_2/fll_error/c/private-error.c +++ b/level_2/fll_error/c/private-error.c @@ -118,6 +118,14 @@ extern "C" { return private_fll_error_print_simple(print, debug, macro_fll_error_s(080_already_connected)); } + if (status == F_connect_busy) { + return private_fll_error_print_simple(print, debug, macro_fll_error_s(119_connection_busy)); + } + + if (status == F_connect_not) { + return private_fll_error_print_simple(print, debug, macro_fll_error_s(120_invalid_connection)); + } + if (status == F_connect_refuse) { return private_fll_error_print_simple(print, debug, macro_fll_error_s(081_connection_refused)); } @@ -154,10 +162,18 @@ extern "C" { return private_fll_error_print_simple(print, debug, macro_fll_error_s(004_file_not_found)); } - if (status == F_filesystem_quota_block) { + if (status == F_file_system_quota_block) { return private_fll_error_print_simple(print, debug, macro_fll_error_s(091_blocks_inodes_exhaust)); } + if (status == F_file_system_read_only) { + return private_fll_error_print_simple(print, debug, macro_fll_error_s(117_file_system_read_only)); + } + + if (status == F_file_system_write_only) { + return private_fll_error_print_simple(print, debug, macro_fll_error_s(118_file_system_write_only)); + } + if (status == F_implement_not) { return private_fll_error_print_simple(print, debug, macro_fll_error_s(076_implement_not)); } @@ -234,6 +250,10 @@ extern "C" { return private_fll_error_print_simple(print, debug, macro_fll_error_s(114_unknown_socket_option)); } + if (status == F_socket_pipe_close) { + return private_fll_error_print_simple(print, debug, macro_fll_error_s(121_socket_pipe_closed)); + } + if (status == F_socket_stream_not) { return private_fll_error_print_simple(print, debug, macro_fll_error_s(103_invalid_stream)); }