debugger-ruby_core_source 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.md +3 -0
- data/README.md +3 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/debug.h +36 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/dln.h +41 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/encdb.h +163 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/eval_intern.h +232 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/gc.h +77 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/id.h +170 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/insns.inc +179 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/insns_info.inc +695 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/iseq.h +104 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/known_errors.inc +731 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/method.h +103 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/node.h +483 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/node_name.inc +208 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/opt_sc.inc +670 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/optinsn.inc +30 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/optunifs.inc +116 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/parse.h +186 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/regenc.h +211 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/regint.h +841 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/regparse.h +354 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/revision.h +1 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/thread_pthread.h +27 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/thread_win32.h +33 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/timev.h +21 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/transcode_data.h +109 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/transdb.h +179 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/version.h +55 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/vm.inc +3055 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/vm_core.h +706 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/vm_exec.h +184 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/vm_insnhelper.h +208 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/vm_opts.h +51 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.2-p320/vmtc.inc +97 -0
- data/lib/debugger/ruby_core_source/version.rb +1 -1
- metadata +36 -3
| @@ -0,0 +1,104 @@ | |
| 1 | 
            +
            /**********************************************************************
         | 
| 2 | 
            +
             | 
| 3 | 
            +
              iseq.h -
         | 
| 4 | 
            +
             | 
| 5 | 
            +
              $Author: mame $
         | 
| 6 | 
            +
              created at: 04/01/01 23:36:57 JST
         | 
| 7 | 
            +
             | 
| 8 | 
            +
              Copyright (C) 2004-2008 Koichi Sasada
         | 
| 9 | 
            +
             | 
| 10 | 
            +
            **********************************************************************/
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            #ifndef RUBY_COMPILE_H
         | 
| 13 | 
            +
            #define RUBY_COMPILE_H
         | 
| 14 | 
            +
             | 
| 15 | 
            +
            /* compile.c */
         | 
| 16 | 
            +
            VALUE rb_iseq_compile_node(VALUE self, NODE *node);
         | 
| 17 | 
            +
            int rb_iseq_translate_threaded_code(rb_iseq_t *iseq);
         | 
| 18 | 
            +
            VALUE rb_iseq_build_from_ary(rb_iseq_t *iseq, VALUE locals, VALUE args,
         | 
| 19 | 
            +
            			     VALUE exception, VALUE body);
         | 
| 20 | 
            +
             | 
| 21 | 
            +
            /* iseq.c */
         | 
| 22 | 
            +
            VALUE rb_iseq_load(VALUE data, VALUE parent, VALUE opt);
         | 
| 23 | 
            +
            struct st_table *ruby_insn_make_insn_table(void);
         | 
| 24 | 
            +
             | 
| 25 | 
            +
            #define ISEQ_TYPE_TOP    INT2FIX(1)
         | 
| 26 | 
            +
            #define ISEQ_TYPE_METHOD INT2FIX(2)
         | 
| 27 | 
            +
            #define ISEQ_TYPE_BLOCK  INT2FIX(3)
         | 
| 28 | 
            +
            #define ISEQ_TYPE_CLASS  INT2FIX(4)
         | 
| 29 | 
            +
            #define ISEQ_TYPE_RESCUE INT2FIX(5)
         | 
| 30 | 
            +
            #define ISEQ_TYPE_ENSURE INT2FIX(6)
         | 
| 31 | 
            +
            #define ISEQ_TYPE_EVAL   INT2FIX(7)
         | 
| 32 | 
            +
            #define ISEQ_TYPE_MAIN   INT2FIX(8)
         | 
| 33 | 
            +
            #define ISEQ_TYPE_DEFINED_GUARD INT2FIX(9)
         | 
| 34 | 
            +
             | 
| 35 | 
            +
            #define CATCH_TYPE_RESCUE ((int)INT2FIX(1))
         | 
| 36 | 
            +
            #define CATCH_TYPE_ENSURE ((int)INT2FIX(2))
         | 
| 37 | 
            +
            #define CATCH_TYPE_RETRY  ((int)INT2FIX(3))
         | 
| 38 | 
            +
            #define CATCH_TYPE_BREAK  ((int)INT2FIX(4))
         | 
| 39 | 
            +
            #define CATCH_TYPE_REDO   ((int)INT2FIX(5))
         | 
| 40 | 
            +
            #define CATCH_TYPE_NEXT   ((int)INT2FIX(6))
         | 
| 41 | 
            +
             | 
| 42 | 
            +
            struct iseq_insn_info_entry {
         | 
| 43 | 
            +
                unsigned short position;
         | 
| 44 | 
            +
                unsigned short line_no;
         | 
| 45 | 
            +
                unsigned short sp;
         | 
| 46 | 
            +
            };
         | 
| 47 | 
            +
             | 
| 48 | 
            +
            struct iseq_catch_table_entry {
         | 
| 49 | 
            +
                VALUE type;
         | 
| 50 | 
            +
                VALUE iseq;
         | 
| 51 | 
            +
                unsigned long start;
         | 
| 52 | 
            +
                unsigned long end;
         | 
| 53 | 
            +
                unsigned long cont;
         | 
| 54 | 
            +
                unsigned long sp;
         | 
| 55 | 
            +
            };
         | 
| 56 | 
            +
             | 
| 57 | 
            +
            #define INITIAL_ISEQ_COMPILE_DATA_STORAGE_BUFF_SIZE (512)
         | 
| 58 | 
            +
             | 
| 59 | 
            +
            struct iseq_compile_data_storage {
         | 
| 60 | 
            +
                struct iseq_compile_data_storage *next;
         | 
| 61 | 
            +
                unsigned long pos;
         | 
| 62 | 
            +
                unsigned long size;
         | 
| 63 | 
            +
                char *buff;
         | 
| 64 | 
            +
            };
         | 
| 65 | 
            +
             | 
| 66 | 
            +
            struct iseq_compile_data {
         | 
| 67 | 
            +
                /* GC is needed */
         | 
| 68 | 
            +
                VALUE err_info;
         | 
| 69 | 
            +
                VALUE mark_ary;
         | 
| 70 | 
            +
                VALUE catch_table_ary;	/* Array */
         | 
| 71 | 
            +
             | 
| 72 | 
            +
                /* GC is not needed */
         | 
| 73 | 
            +
                struct iseq_label_data *start_label;
         | 
| 74 | 
            +
                struct iseq_label_data *end_label;
         | 
| 75 | 
            +
                struct iseq_label_data *redo_label;
         | 
| 76 | 
            +
                VALUE current_block;
         | 
| 77 | 
            +
                VALUE ensure_node;
         | 
| 78 | 
            +
                VALUE for_iseq;
         | 
| 79 | 
            +
                struct iseq_compile_data_ensure_node_stack *ensure_node_stack;
         | 
| 80 | 
            +
                int loopval_popped;	/* used by NODE_BREAK */
         | 
| 81 | 
            +
                int cached_const;
         | 
| 82 | 
            +
                struct iseq_compile_data_storage *storage_head;
         | 
| 83 | 
            +
                struct iseq_compile_data_storage *storage_current;
         | 
| 84 | 
            +
                int last_line;
         | 
| 85 | 
            +
                int last_coverable_line;
         | 
| 86 | 
            +
                int flip_cnt;
         | 
| 87 | 
            +
                int label_no;
         | 
| 88 | 
            +
                int node_level;
         | 
| 89 | 
            +
                const rb_compile_option_t *option;
         | 
| 90 | 
            +
            };
         | 
| 91 | 
            +
             | 
| 92 | 
            +
            /* defined? */
         | 
| 93 | 
            +
            #define DEFINED_IVAR   INT2FIX(1)
         | 
| 94 | 
            +
            #define DEFINED_IVAR2  INT2FIX(2)
         | 
| 95 | 
            +
            #define DEFINED_GVAR   INT2FIX(3)
         | 
| 96 | 
            +
            #define DEFINED_CVAR   INT2FIX(4)
         | 
| 97 | 
            +
            #define DEFINED_CONST  INT2FIX(5)
         | 
| 98 | 
            +
            #define DEFINED_METHOD INT2FIX(6)
         | 
| 99 | 
            +
            #define DEFINED_YIELD  INT2FIX(7)
         | 
| 100 | 
            +
            #define DEFINED_REF    INT2FIX(8)
         | 
| 101 | 
            +
            #define DEFINED_ZSUPER INT2FIX(9)
         | 
| 102 | 
            +
            #define DEFINED_FUNC   INT2FIX(10)
         | 
| 103 | 
            +
             | 
| 104 | 
            +
            #endif /* RUBY_COMPILE_H */
         | 
| @@ -0,0 +1,731 @@ | |
| 1 | 
            +
            /** -*-c-*-
         | 
| 2 | 
            +
             * DO NOT EDIT
         | 
| 3 | 
            +
             * This file is automatically generated by tools/generic_erb.rb from
         | 
| 4 | 
            +
             * template/known_errors.inc.tmpl and defs/known_errors.def.
         | 
| 5 | 
            +
             */
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            #ifdef EPERM
         | 
| 8 | 
            +
                    defined_error("EPERM", EPERM)
         | 
| 9 | 
            +
            #else
         | 
| 10 | 
            +
                    undefined_error("EPERM")
         | 
| 11 | 
            +
            #endif
         | 
| 12 | 
            +
            #ifdef ENOENT
         | 
| 13 | 
            +
                    defined_error("ENOENT", ENOENT)
         | 
| 14 | 
            +
            #else
         | 
| 15 | 
            +
                    undefined_error("ENOENT")
         | 
| 16 | 
            +
            #endif
         | 
| 17 | 
            +
            #ifdef ESRCH
         | 
| 18 | 
            +
                    defined_error("ESRCH", ESRCH)
         | 
| 19 | 
            +
            #else
         | 
| 20 | 
            +
                    undefined_error("ESRCH")
         | 
| 21 | 
            +
            #endif
         | 
| 22 | 
            +
            #ifdef EINTR
         | 
| 23 | 
            +
                    defined_error("EINTR", EINTR)
         | 
| 24 | 
            +
            #else
         | 
| 25 | 
            +
                    undefined_error("EINTR")
         | 
| 26 | 
            +
            #endif
         | 
| 27 | 
            +
            #ifdef EIO
         | 
| 28 | 
            +
                    defined_error("EIO", EIO)
         | 
| 29 | 
            +
            #else
         | 
| 30 | 
            +
                    undefined_error("EIO")
         | 
| 31 | 
            +
            #endif
         | 
| 32 | 
            +
            #ifdef ENXIO
         | 
| 33 | 
            +
                    defined_error("ENXIO", ENXIO)
         | 
| 34 | 
            +
            #else
         | 
| 35 | 
            +
                    undefined_error("ENXIO")
         | 
| 36 | 
            +
            #endif
         | 
| 37 | 
            +
            #ifdef E2BIG
         | 
| 38 | 
            +
                    defined_error("E2BIG", E2BIG)
         | 
| 39 | 
            +
            #else
         | 
| 40 | 
            +
                    undefined_error("E2BIG")
         | 
| 41 | 
            +
            #endif
         | 
| 42 | 
            +
            #ifdef ENOEXEC
         | 
| 43 | 
            +
                    defined_error("ENOEXEC", ENOEXEC)
         | 
| 44 | 
            +
            #else
         | 
| 45 | 
            +
                    undefined_error("ENOEXEC")
         | 
| 46 | 
            +
            #endif
         | 
| 47 | 
            +
            #ifdef EBADF
         | 
| 48 | 
            +
                    defined_error("EBADF", EBADF)
         | 
| 49 | 
            +
            #else
         | 
| 50 | 
            +
                    undefined_error("EBADF")
         | 
| 51 | 
            +
            #endif
         | 
| 52 | 
            +
            #ifdef ECHILD
         | 
| 53 | 
            +
                    defined_error("ECHILD", ECHILD)
         | 
| 54 | 
            +
            #else
         | 
| 55 | 
            +
                    undefined_error("ECHILD")
         | 
| 56 | 
            +
            #endif
         | 
| 57 | 
            +
            #ifdef EAGAIN
         | 
| 58 | 
            +
                    defined_error("EAGAIN", EAGAIN)
         | 
| 59 | 
            +
            #else
         | 
| 60 | 
            +
                    undefined_error("EAGAIN")
         | 
| 61 | 
            +
            #endif
         | 
| 62 | 
            +
            #ifdef ENOMEM
         | 
| 63 | 
            +
                    defined_error("ENOMEM", ENOMEM)
         | 
| 64 | 
            +
            #else
         | 
| 65 | 
            +
                    undefined_error("ENOMEM")
         | 
| 66 | 
            +
            #endif
         | 
| 67 | 
            +
            #ifdef EACCES
         | 
| 68 | 
            +
                    defined_error("EACCES", EACCES)
         | 
| 69 | 
            +
            #else
         | 
| 70 | 
            +
                    undefined_error("EACCES")
         | 
| 71 | 
            +
            #endif
         | 
| 72 | 
            +
            #ifdef EFAULT
         | 
| 73 | 
            +
                    defined_error("EFAULT", EFAULT)
         | 
| 74 | 
            +
            #else
         | 
| 75 | 
            +
                    undefined_error("EFAULT")
         | 
| 76 | 
            +
            #endif
         | 
| 77 | 
            +
            #ifdef ENOTBLK
         | 
| 78 | 
            +
                    defined_error("ENOTBLK", ENOTBLK)
         | 
| 79 | 
            +
            #else
         | 
| 80 | 
            +
                    undefined_error("ENOTBLK")
         | 
| 81 | 
            +
            #endif
         | 
| 82 | 
            +
            #ifdef EBUSY
         | 
| 83 | 
            +
                    defined_error("EBUSY", EBUSY)
         | 
| 84 | 
            +
            #else
         | 
| 85 | 
            +
                    undefined_error("EBUSY")
         | 
| 86 | 
            +
            #endif
         | 
| 87 | 
            +
            #ifdef EEXIST
         | 
| 88 | 
            +
                    defined_error("EEXIST", EEXIST)
         | 
| 89 | 
            +
            #else
         | 
| 90 | 
            +
                    undefined_error("EEXIST")
         | 
| 91 | 
            +
            #endif
         | 
| 92 | 
            +
            #ifdef EXDEV
         | 
| 93 | 
            +
                    defined_error("EXDEV", EXDEV)
         | 
| 94 | 
            +
            #else
         | 
| 95 | 
            +
                    undefined_error("EXDEV")
         | 
| 96 | 
            +
            #endif
         | 
| 97 | 
            +
            #ifdef ENODEV
         | 
| 98 | 
            +
                    defined_error("ENODEV", ENODEV)
         | 
| 99 | 
            +
            #else
         | 
| 100 | 
            +
                    undefined_error("ENODEV")
         | 
| 101 | 
            +
            #endif
         | 
| 102 | 
            +
            #ifdef ENOTDIR
         | 
| 103 | 
            +
                    defined_error("ENOTDIR", ENOTDIR)
         | 
| 104 | 
            +
            #else
         | 
| 105 | 
            +
                    undefined_error("ENOTDIR")
         | 
| 106 | 
            +
            #endif
         | 
| 107 | 
            +
            #ifdef EISDIR
         | 
| 108 | 
            +
                    defined_error("EISDIR", EISDIR)
         | 
| 109 | 
            +
            #else
         | 
| 110 | 
            +
                    undefined_error("EISDIR")
         | 
| 111 | 
            +
            #endif
         | 
| 112 | 
            +
            #ifdef EINVAL
         | 
| 113 | 
            +
                    defined_error("EINVAL", EINVAL)
         | 
| 114 | 
            +
            #else
         | 
| 115 | 
            +
                    undefined_error("EINVAL")
         | 
| 116 | 
            +
            #endif
         | 
| 117 | 
            +
            #ifdef ENFILE
         | 
| 118 | 
            +
                    defined_error("ENFILE", ENFILE)
         | 
| 119 | 
            +
            #else
         | 
| 120 | 
            +
                    undefined_error("ENFILE")
         | 
| 121 | 
            +
            #endif
         | 
| 122 | 
            +
            #ifdef EMFILE
         | 
| 123 | 
            +
                    defined_error("EMFILE", EMFILE)
         | 
| 124 | 
            +
            #else
         | 
| 125 | 
            +
                    undefined_error("EMFILE")
         | 
| 126 | 
            +
            #endif
         | 
| 127 | 
            +
            #ifdef ENOTTY
         | 
| 128 | 
            +
                    defined_error("ENOTTY", ENOTTY)
         | 
| 129 | 
            +
            #else
         | 
| 130 | 
            +
                    undefined_error("ENOTTY")
         | 
| 131 | 
            +
            #endif
         | 
| 132 | 
            +
            #ifdef ETXTBSY
         | 
| 133 | 
            +
                    defined_error("ETXTBSY", ETXTBSY)
         | 
| 134 | 
            +
            #else
         | 
| 135 | 
            +
                    undefined_error("ETXTBSY")
         | 
| 136 | 
            +
            #endif
         | 
| 137 | 
            +
            #ifdef EFBIG
         | 
| 138 | 
            +
                    defined_error("EFBIG", EFBIG)
         | 
| 139 | 
            +
            #else
         | 
| 140 | 
            +
                    undefined_error("EFBIG")
         | 
| 141 | 
            +
            #endif
         | 
| 142 | 
            +
            #ifdef ENOSPC
         | 
| 143 | 
            +
                    defined_error("ENOSPC", ENOSPC)
         | 
| 144 | 
            +
            #else
         | 
| 145 | 
            +
                    undefined_error("ENOSPC")
         | 
| 146 | 
            +
            #endif
         | 
| 147 | 
            +
            #ifdef ESPIPE
         | 
| 148 | 
            +
                    defined_error("ESPIPE", ESPIPE)
         | 
| 149 | 
            +
            #else
         | 
| 150 | 
            +
                    undefined_error("ESPIPE")
         | 
| 151 | 
            +
            #endif
         | 
| 152 | 
            +
            #ifdef EROFS
         | 
| 153 | 
            +
                    defined_error("EROFS", EROFS)
         | 
| 154 | 
            +
            #else
         | 
| 155 | 
            +
                    undefined_error("EROFS")
         | 
| 156 | 
            +
            #endif
         | 
| 157 | 
            +
            #ifdef EMLINK
         | 
| 158 | 
            +
                    defined_error("EMLINK", EMLINK)
         | 
| 159 | 
            +
            #else
         | 
| 160 | 
            +
                    undefined_error("EMLINK")
         | 
| 161 | 
            +
            #endif
         | 
| 162 | 
            +
            #ifdef EPIPE
         | 
| 163 | 
            +
                    defined_error("EPIPE", EPIPE)
         | 
| 164 | 
            +
            #else
         | 
| 165 | 
            +
                    undefined_error("EPIPE")
         | 
| 166 | 
            +
            #endif
         | 
| 167 | 
            +
            #ifdef EDOM
         | 
| 168 | 
            +
                    defined_error("EDOM", EDOM)
         | 
| 169 | 
            +
            #else
         | 
| 170 | 
            +
                    undefined_error("EDOM")
         | 
| 171 | 
            +
            #endif
         | 
| 172 | 
            +
            #ifdef ERANGE
         | 
| 173 | 
            +
                    defined_error("ERANGE", ERANGE)
         | 
| 174 | 
            +
            #else
         | 
| 175 | 
            +
                    undefined_error("ERANGE")
         | 
| 176 | 
            +
            #endif
         | 
| 177 | 
            +
            #ifdef EDEADLK
         | 
| 178 | 
            +
                    defined_error("EDEADLK", EDEADLK)
         | 
| 179 | 
            +
            #else
         | 
| 180 | 
            +
                    undefined_error("EDEADLK")
         | 
| 181 | 
            +
            #endif
         | 
| 182 | 
            +
            #ifdef ENAMETOOLONG
         | 
| 183 | 
            +
                    defined_error("ENAMETOOLONG", ENAMETOOLONG)
         | 
| 184 | 
            +
            #else
         | 
| 185 | 
            +
                    undefined_error("ENAMETOOLONG")
         | 
| 186 | 
            +
            #endif
         | 
| 187 | 
            +
            #ifdef ENOLCK
         | 
| 188 | 
            +
                    defined_error("ENOLCK", ENOLCK)
         | 
| 189 | 
            +
            #else
         | 
| 190 | 
            +
                    undefined_error("ENOLCK")
         | 
| 191 | 
            +
            #endif
         | 
| 192 | 
            +
            #ifdef ENOSYS
         | 
| 193 | 
            +
                    defined_error("ENOSYS", ENOSYS)
         | 
| 194 | 
            +
            #else
         | 
| 195 | 
            +
                    undefined_error("ENOSYS")
         | 
| 196 | 
            +
            #endif
         | 
| 197 | 
            +
            #ifdef ENOTEMPTY
         | 
| 198 | 
            +
                    defined_error("ENOTEMPTY", ENOTEMPTY)
         | 
| 199 | 
            +
            #else
         | 
| 200 | 
            +
                    undefined_error("ENOTEMPTY")
         | 
| 201 | 
            +
            #endif
         | 
| 202 | 
            +
            #ifdef ELOOP
         | 
| 203 | 
            +
                    defined_error("ELOOP", ELOOP)
         | 
| 204 | 
            +
            #else
         | 
| 205 | 
            +
                    undefined_error("ELOOP")
         | 
| 206 | 
            +
            #endif
         | 
| 207 | 
            +
            #ifdef EWOULDBLOCK
         | 
| 208 | 
            +
                    defined_error("EWOULDBLOCK", EWOULDBLOCK)
         | 
| 209 | 
            +
            #else
         | 
| 210 | 
            +
                    undefined_error("EWOULDBLOCK")
         | 
| 211 | 
            +
            #endif
         | 
| 212 | 
            +
            #ifdef ENOMSG
         | 
| 213 | 
            +
                    defined_error("ENOMSG", ENOMSG)
         | 
| 214 | 
            +
            #else
         | 
| 215 | 
            +
                    undefined_error("ENOMSG")
         | 
| 216 | 
            +
            #endif
         | 
| 217 | 
            +
            #ifdef EIDRM
         | 
| 218 | 
            +
                    defined_error("EIDRM", EIDRM)
         | 
| 219 | 
            +
            #else
         | 
| 220 | 
            +
                    undefined_error("EIDRM")
         | 
| 221 | 
            +
            #endif
         | 
| 222 | 
            +
            #ifdef ECHRNG
         | 
| 223 | 
            +
                    defined_error("ECHRNG", ECHRNG)
         | 
| 224 | 
            +
            #else
         | 
| 225 | 
            +
                    undefined_error("ECHRNG")
         | 
| 226 | 
            +
            #endif
         | 
| 227 | 
            +
            #ifdef EL2NSYNC
         | 
| 228 | 
            +
                    defined_error("EL2NSYNC", EL2NSYNC)
         | 
| 229 | 
            +
            #else
         | 
| 230 | 
            +
                    undefined_error("EL2NSYNC")
         | 
| 231 | 
            +
            #endif
         | 
| 232 | 
            +
            #ifdef EL3HLT
         | 
| 233 | 
            +
                    defined_error("EL3HLT", EL3HLT)
         | 
| 234 | 
            +
            #else
         | 
| 235 | 
            +
                    undefined_error("EL3HLT")
         | 
| 236 | 
            +
            #endif
         | 
| 237 | 
            +
            #ifdef EL3RST
         | 
| 238 | 
            +
                    defined_error("EL3RST", EL3RST)
         | 
| 239 | 
            +
            #else
         | 
| 240 | 
            +
                    undefined_error("EL3RST")
         | 
| 241 | 
            +
            #endif
         | 
| 242 | 
            +
            #ifdef ELNRNG
         | 
| 243 | 
            +
                    defined_error("ELNRNG", ELNRNG)
         | 
| 244 | 
            +
            #else
         | 
| 245 | 
            +
                    undefined_error("ELNRNG")
         | 
| 246 | 
            +
            #endif
         | 
| 247 | 
            +
            #ifdef EUNATCH
         | 
| 248 | 
            +
                    defined_error("EUNATCH", EUNATCH)
         | 
| 249 | 
            +
            #else
         | 
| 250 | 
            +
                    undefined_error("EUNATCH")
         | 
| 251 | 
            +
            #endif
         | 
| 252 | 
            +
            #ifdef ENOCSI
         | 
| 253 | 
            +
                    defined_error("ENOCSI", ENOCSI)
         | 
| 254 | 
            +
            #else
         | 
| 255 | 
            +
                    undefined_error("ENOCSI")
         | 
| 256 | 
            +
            #endif
         | 
| 257 | 
            +
            #ifdef EL2HLT
         | 
| 258 | 
            +
                    defined_error("EL2HLT", EL2HLT)
         | 
| 259 | 
            +
            #else
         | 
| 260 | 
            +
                    undefined_error("EL2HLT")
         | 
| 261 | 
            +
            #endif
         | 
| 262 | 
            +
            #ifdef EBADE
         | 
| 263 | 
            +
                    defined_error("EBADE", EBADE)
         | 
| 264 | 
            +
            #else
         | 
| 265 | 
            +
                    undefined_error("EBADE")
         | 
| 266 | 
            +
            #endif
         | 
| 267 | 
            +
            #ifdef EBADR
         | 
| 268 | 
            +
                    defined_error("EBADR", EBADR)
         | 
| 269 | 
            +
            #else
         | 
| 270 | 
            +
                    undefined_error("EBADR")
         | 
| 271 | 
            +
            #endif
         | 
| 272 | 
            +
            #ifdef EXFULL
         | 
| 273 | 
            +
                    defined_error("EXFULL", EXFULL)
         | 
| 274 | 
            +
            #else
         | 
| 275 | 
            +
                    undefined_error("EXFULL")
         | 
| 276 | 
            +
            #endif
         | 
| 277 | 
            +
            #ifdef ENOANO
         | 
| 278 | 
            +
                    defined_error("ENOANO", ENOANO)
         | 
| 279 | 
            +
            #else
         | 
| 280 | 
            +
                    undefined_error("ENOANO")
         | 
| 281 | 
            +
            #endif
         | 
| 282 | 
            +
            #ifdef EBADRQC
         | 
| 283 | 
            +
                    defined_error("EBADRQC", EBADRQC)
         | 
| 284 | 
            +
            #else
         | 
| 285 | 
            +
                    undefined_error("EBADRQC")
         | 
| 286 | 
            +
            #endif
         | 
| 287 | 
            +
            #ifdef EBADSLT
         | 
| 288 | 
            +
                    defined_error("EBADSLT", EBADSLT)
         | 
| 289 | 
            +
            #else
         | 
| 290 | 
            +
                    undefined_error("EBADSLT")
         | 
| 291 | 
            +
            #endif
         | 
| 292 | 
            +
            #ifdef EDEADLOCK
         | 
| 293 | 
            +
                    defined_error("EDEADLOCK", EDEADLOCK)
         | 
| 294 | 
            +
            #else
         | 
| 295 | 
            +
                    undefined_error("EDEADLOCK")
         | 
| 296 | 
            +
            #endif
         | 
| 297 | 
            +
            #ifdef EBFONT
         | 
| 298 | 
            +
                    defined_error("EBFONT", EBFONT)
         | 
| 299 | 
            +
            #else
         | 
| 300 | 
            +
                    undefined_error("EBFONT")
         | 
| 301 | 
            +
            #endif
         | 
| 302 | 
            +
            #ifdef ENOSTR
         | 
| 303 | 
            +
                    defined_error("ENOSTR", ENOSTR)
         | 
| 304 | 
            +
            #else
         | 
| 305 | 
            +
                    undefined_error("ENOSTR")
         | 
| 306 | 
            +
            #endif
         | 
| 307 | 
            +
            #ifdef ENODATA
         | 
| 308 | 
            +
                    defined_error("ENODATA", ENODATA)
         | 
| 309 | 
            +
            #else
         | 
| 310 | 
            +
                    undefined_error("ENODATA")
         | 
| 311 | 
            +
            #endif
         | 
| 312 | 
            +
            #ifdef ETIME
         | 
| 313 | 
            +
                    defined_error("ETIME", ETIME)
         | 
| 314 | 
            +
            #else
         | 
| 315 | 
            +
                    undefined_error("ETIME")
         | 
| 316 | 
            +
            #endif
         | 
| 317 | 
            +
            #ifdef ENOSR
         | 
| 318 | 
            +
                    defined_error("ENOSR", ENOSR)
         | 
| 319 | 
            +
            #else
         | 
| 320 | 
            +
                    undefined_error("ENOSR")
         | 
| 321 | 
            +
            #endif
         | 
| 322 | 
            +
            #ifdef ENONET
         | 
| 323 | 
            +
                    defined_error("ENONET", ENONET)
         | 
| 324 | 
            +
            #else
         | 
| 325 | 
            +
                    undefined_error("ENONET")
         | 
| 326 | 
            +
            #endif
         | 
| 327 | 
            +
            #ifdef ENOPKG
         | 
| 328 | 
            +
                    defined_error("ENOPKG", ENOPKG)
         | 
| 329 | 
            +
            #else
         | 
| 330 | 
            +
                    undefined_error("ENOPKG")
         | 
| 331 | 
            +
            #endif
         | 
| 332 | 
            +
            #ifdef EREMOTE
         | 
| 333 | 
            +
                    defined_error("EREMOTE", EREMOTE)
         | 
| 334 | 
            +
            #else
         | 
| 335 | 
            +
                    undefined_error("EREMOTE")
         | 
| 336 | 
            +
            #endif
         | 
| 337 | 
            +
            #ifdef ENOLINK
         | 
| 338 | 
            +
                    defined_error("ENOLINK", ENOLINK)
         | 
| 339 | 
            +
            #else
         | 
| 340 | 
            +
                    undefined_error("ENOLINK")
         | 
| 341 | 
            +
            #endif
         | 
| 342 | 
            +
            #ifdef EADV
         | 
| 343 | 
            +
                    defined_error("EADV", EADV)
         | 
| 344 | 
            +
            #else
         | 
| 345 | 
            +
                    undefined_error("EADV")
         | 
| 346 | 
            +
            #endif
         | 
| 347 | 
            +
            #ifdef ESRMNT
         | 
| 348 | 
            +
                    defined_error("ESRMNT", ESRMNT)
         | 
| 349 | 
            +
            #else
         | 
| 350 | 
            +
                    undefined_error("ESRMNT")
         | 
| 351 | 
            +
            #endif
         | 
| 352 | 
            +
            #ifdef ECOMM
         | 
| 353 | 
            +
                    defined_error("ECOMM", ECOMM)
         | 
| 354 | 
            +
            #else
         | 
| 355 | 
            +
                    undefined_error("ECOMM")
         | 
| 356 | 
            +
            #endif
         | 
| 357 | 
            +
            #ifdef EPROTO
         | 
| 358 | 
            +
                    defined_error("EPROTO", EPROTO)
         | 
| 359 | 
            +
            #else
         | 
| 360 | 
            +
                    undefined_error("EPROTO")
         | 
| 361 | 
            +
            #endif
         | 
| 362 | 
            +
            #ifdef EMULTIHOP
         | 
| 363 | 
            +
                    defined_error("EMULTIHOP", EMULTIHOP)
         | 
| 364 | 
            +
            #else
         | 
| 365 | 
            +
                    undefined_error("EMULTIHOP")
         | 
| 366 | 
            +
            #endif
         | 
| 367 | 
            +
            #ifdef EDOTDOT
         | 
| 368 | 
            +
                    defined_error("EDOTDOT", EDOTDOT)
         | 
| 369 | 
            +
            #else
         | 
| 370 | 
            +
                    undefined_error("EDOTDOT")
         | 
| 371 | 
            +
            #endif
         | 
| 372 | 
            +
            #ifdef EBADMSG
         | 
| 373 | 
            +
                    defined_error("EBADMSG", EBADMSG)
         | 
| 374 | 
            +
            #else
         | 
| 375 | 
            +
                    undefined_error("EBADMSG")
         | 
| 376 | 
            +
            #endif
         | 
| 377 | 
            +
            #ifdef EOVERFLOW
         | 
| 378 | 
            +
                    defined_error("EOVERFLOW", EOVERFLOW)
         | 
| 379 | 
            +
            #else
         | 
| 380 | 
            +
                    undefined_error("EOVERFLOW")
         | 
| 381 | 
            +
            #endif
         | 
| 382 | 
            +
            #ifdef ENOTUNIQ
         | 
| 383 | 
            +
                    defined_error("ENOTUNIQ", ENOTUNIQ)
         | 
| 384 | 
            +
            #else
         | 
| 385 | 
            +
                    undefined_error("ENOTUNIQ")
         | 
| 386 | 
            +
            #endif
         | 
| 387 | 
            +
            #ifdef EBADFD
         | 
| 388 | 
            +
                    defined_error("EBADFD", EBADFD)
         | 
| 389 | 
            +
            #else
         | 
| 390 | 
            +
                    undefined_error("EBADFD")
         | 
| 391 | 
            +
            #endif
         | 
| 392 | 
            +
            #ifdef EREMCHG
         | 
| 393 | 
            +
                    defined_error("EREMCHG", EREMCHG)
         | 
| 394 | 
            +
            #else
         | 
| 395 | 
            +
                    undefined_error("EREMCHG")
         | 
| 396 | 
            +
            #endif
         | 
| 397 | 
            +
            #ifdef ELIBACC
         | 
| 398 | 
            +
                    defined_error("ELIBACC", ELIBACC)
         | 
| 399 | 
            +
            #else
         | 
| 400 | 
            +
                    undefined_error("ELIBACC")
         | 
| 401 | 
            +
            #endif
         | 
| 402 | 
            +
            #ifdef ELIBBAD
         | 
| 403 | 
            +
                    defined_error("ELIBBAD", ELIBBAD)
         | 
| 404 | 
            +
            #else
         | 
| 405 | 
            +
                    undefined_error("ELIBBAD")
         | 
| 406 | 
            +
            #endif
         | 
| 407 | 
            +
            #ifdef ELIBSCN
         | 
| 408 | 
            +
                    defined_error("ELIBSCN", ELIBSCN)
         | 
| 409 | 
            +
            #else
         | 
| 410 | 
            +
                    undefined_error("ELIBSCN")
         | 
| 411 | 
            +
            #endif
         | 
| 412 | 
            +
            #ifdef ELIBMAX
         | 
| 413 | 
            +
                    defined_error("ELIBMAX", ELIBMAX)
         | 
| 414 | 
            +
            #else
         | 
| 415 | 
            +
                    undefined_error("ELIBMAX")
         | 
| 416 | 
            +
            #endif
         | 
| 417 | 
            +
            #ifdef ELIBEXEC
         | 
| 418 | 
            +
                    defined_error("ELIBEXEC", ELIBEXEC)
         | 
| 419 | 
            +
            #else
         | 
| 420 | 
            +
                    undefined_error("ELIBEXEC")
         | 
| 421 | 
            +
            #endif
         | 
| 422 | 
            +
            #ifdef EILSEQ
         | 
| 423 | 
            +
                    defined_error("EILSEQ", EILSEQ)
         | 
| 424 | 
            +
            #else
         | 
| 425 | 
            +
                    undefined_error("EILSEQ")
         | 
| 426 | 
            +
            #endif
         | 
| 427 | 
            +
            #ifdef ERESTART
         | 
| 428 | 
            +
                    defined_error("ERESTART", ERESTART)
         | 
| 429 | 
            +
            #else
         | 
| 430 | 
            +
                    undefined_error("ERESTART")
         | 
| 431 | 
            +
            #endif
         | 
| 432 | 
            +
            #ifdef ESTRPIPE
         | 
| 433 | 
            +
                    defined_error("ESTRPIPE", ESTRPIPE)
         | 
| 434 | 
            +
            #else
         | 
| 435 | 
            +
                    undefined_error("ESTRPIPE")
         | 
| 436 | 
            +
            #endif
         | 
| 437 | 
            +
            #ifdef EUSERS
         | 
| 438 | 
            +
                    defined_error("EUSERS", EUSERS)
         | 
| 439 | 
            +
            #else
         | 
| 440 | 
            +
                    undefined_error("EUSERS")
         | 
| 441 | 
            +
            #endif
         | 
| 442 | 
            +
            #ifdef ENOTSOCK
         | 
| 443 | 
            +
                    defined_error("ENOTSOCK", ENOTSOCK)
         | 
| 444 | 
            +
            #else
         | 
| 445 | 
            +
                    undefined_error("ENOTSOCK")
         | 
| 446 | 
            +
            #endif
         | 
| 447 | 
            +
            #ifdef EDESTADDRREQ
         | 
| 448 | 
            +
                    defined_error("EDESTADDRREQ", EDESTADDRREQ)
         | 
| 449 | 
            +
            #else
         | 
| 450 | 
            +
                    undefined_error("EDESTADDRREQ")
         | 
| 451 | 
            +
            #endif
         | 
| 452 | 
            +
            #ifdef EMSGSIZE
         | 
| 453 | 
            +
                    defined_error("EMSGSIZE", EMSGSIZE)
         | 
| 454 | 
            +
            #else
         | 
| 455 | 
            +
                    undefined_error("EMSGSIZE")
         | 
| 456 | 
            +
            #endif
         | 
| 457 | 
            +
            #ifdef EPROTOTYPE
         | 
| 458 | 
            +
                    defined_error("EPROTOTYPE", EPROTOTYPE)
         | 
| 459 | 
            +
            #else
         | 
| 460 | 
            +
                    undefined_error("EPROTOTYPE")
         | 
| 461 | 
            +
            #endif
         | 
| 462 | 
            +
            #ifdef ENOPROTOOPT
         | 
| 463 | 
            +
                    defined_error("ENOPROTOOPT", ENOPROTOOPT)
         | 
| 464 | 
            +
            #else
         | 
| 465 | 
            +
                    undefined_error("ENOPROTOOPT")
         | 
| 466 | 
            +
            #endif
         | 
| 467 | 
            +
            #ifdef EPROTONOSUPPORT
         | 
| 468 | 
            +
                    defined_error("EPROTONOSUPPORT", EPROTONOSUPPORT)
         | 
| 469 | 
            +
            #else
         | 
| 470 | 
            +
                    undefined_error("EPROTONOSUPPORT")
         | 
| 471 | 
            +
            #endif
         | 
| 472 | 
            +
            #ifdef ESOCKTNOSUPPORT
         | 
| 473 | 
            +
                    defined_error("ESOCKTNOSUPPORT", ESOCKTNOSUPPORT)
         | 
| 474 | 
            +
            #else
         | 
| 475 | 
            +
                    undefined_error("ESOCKTNOSUPPORT")
         | 
| 476 | 
            +
            #endif
         | 
| 477 | 
            +
            #ifdef EOPNOTSUPP
         | 
| 478 | 
            +
                    defined_error("EOPNOTSUPP", EOPNOTSUPP)
         | 
| 479 | 
            +
            #else
         | 
| 480 | 
            +
                    undefined_error("EOPNOTSUPP")
         | 
| 481 | 
            +
            #endif
         | 
| 482 | 
            +
            #ifdef EPFNOSUPPORT
         | 
| 483 | 
            +
                    defined_error("EPFNOSUPPORT", EPFNOSUPPORT)
         | 
| 484 | 
            +
            #else
         | 
| 485 | 
            +
                    undefined_error("EPFNOSUPPORT")
         | 
| 486 | 
            +
            #endif
         | 
| 487 | 
            +
            #ifdef EAFNOSUPPORT
         | 
| 488 | 
            +
                    defined_error("EAFNOSUPPORT", EAFNOSUPPORT)
         | 
| 489 | 
            +
            #else
         | 
| 490 | 
            +
                    undefined_error("EAFNOSUPPORT")
         | 
| 491 | 
            +
            #endif
         | 
| 492 | 
            +
            #ifdef EADDRINUSE
         | 
| 493 | 
            +
                    defined_error("EADDRINUSE", EADDRINUSE)
         | 
| 494 | 
            +
            #else
         | 
| 495 | 
            +
                    undefined_error("EADDRINUSE")
         | 
| 496 | 
            +
            #endif
         | 
| 497 | 
            +
            #ifdef EADDRNOTAVAIL
         | 
| 498 | 
            +
                    defined_error("EADDRNOTAVAIL", EADDRNOTAVAIL)
         | 
| 499 | 
            +
            #else
         | 
| 500 | 
            +
                    undefined_error("EADDRNOTAVAIL")
         | 
| 501 | 
            +
            #endif
         | 
| 502 | 
            +
            #ifdef ENETDOWN
         | 
| 503 | 
            +
                    defined_error("ENETDOWN", ENETDOWN)
         | 
| 504 | 
            +
            #else
         | 
| 505 | 
            +
                    undefined_error("ENETDOWN")
         | 
| 506 | 
            +
            #endif
         | 
| 507 | 
            +
            #ifdef ENETUNREACH
         | 
| 508 | 
            +
                    defined_error("ENETUNREACH", ENETUNREACH)
         | 
| 509 | 
            +
            #else
         | 
| 510 | 
            +
                    undefined_error("ENETUNREACH")
         | 
| 511 | 
            +
            #endif
         | 
| 512 | 
            +
            #ifdef ENETRESET
         | 
| 513 | 
            +
                    defined_error("ENETRESET", ENETRESET)
         | 
| 514 | 
            +
            #else
         | 
| 515 | 
            +
                    undefined_error("ENETRESET")
         | 
| 516 | 
            +
            #endif
         | 
| 517 | 
            +
            #ifdef ECONNABORTED
         | 
| 518 | 
            +
                    defined_error("ECONNABORTED", ECONNABORTED)
         | 
| 519 | 
            +
            #else
         | 
| 520 | 
            +
                    undefined_error("ECONNABORTED")
         | 
| 521 | 
            +
            #endif
         | 
| 522 | 
            +
            #ifdef ECONNRESET
         | 
| 523 | 
            +
                    defined_error("ECONNRESET", ECONNRESET)
         | 
| 524 | 
            +
            #else
         | 
| 525 | 
            +
                    undefined_error("ECONNRESET")
         | 
| 526 | 
            +
            #endif
         | 
| 527 | 
            +
            #ifdef ENOBUFS
         | 
| 528 | 
            +
                    defined_error("ENOBUFS", ENOBUFS)
         | 
| 529 | 
            +
            #else
         | 
| 530 | 
            +
                    undefined_error("ENOBUFS")
         | 
| 531 | 
            +
            #endif
         | 
| 532 | 
            +
            #ifdef EISCONN
         | 
| 533 | 
            +
                    defined_error("EISCONN", EISCONN)
         | 
| 534 | 
            +
            #else
         | 
| 535 | 
            +
                    undefined_error("EISCONN")
         | 
| 536 | 
            +
            #endif
         | 
| 537 | 
            +
            #ifdef ENOTCONN
         | 
| 538 | 
            +
                    defined_error("ENOTCONN", ENOTCONN)
         | 
| 539 | 
            +
            #else
         | 
| 540 | 
            +
                    undefined_error("ENOTCONN")
         | 
| 541 | 
            +
            #endif
         | 
| 542 | 
            +
            #ifdef ESHUTDOWN
         | 
| 543 | 
            +
                    defined_error("ESHUTDOWN", ESHUTDOWN)
         | 
| 544 | 
            +
            #else
         | 
| 545 | 
            +
                    undefined_error("ESHUTDOWN")
         | 
| 546 | 
            +
            #endif
         | 
| 547 | 
            +
            #ifdef ETOOMANYREFS
         | 
| 548 | 
            +
                    defined_error("ETOOMANYREFS", ETOOMANYREFS)
         | 
| 549 | 
            +
            #else
         | 
| 550 | 
            +
                    undefined_error("ETOOMANYREFS")
         | 
| 551 | 
            +
            #endif
         | 
| 552 | 
            +
            #ifdef ETIMEDOUT
         | 
| 553 | 
            +
                    defined_error("ETIMEDOUT", ETIMEDOUT)
         | 
| 554 | 
            +
            #else
         | 
| 555 | 
            +
                    undefined_error("ETIMEDOUT")
         | 
| 556 | 
            +
            #endif
         | 
| 557 | 
            +
            #ifdef ECONNREFUSED
         | 
| 558 | 
            +
                    defined_error("ECONNREFUSED", ECONNREFUSED)
         | 
| 559 | 
            +
            #else
         | 
| 560 | 
            +
                    undefined_error("ECONNREFUSED")
         | 
| 561 | 
            +
            #endif
         | 
| 562 | 
            +
            #ifdef EHOSTDOWN
         | 
| 563 | 
            +
                    defined_error("EHOSTDOWN", EHOSTDOWN)
         | 
| 564 | 
            +
            #else
         | 
| 565 | 
            +
                    undefined_error("EHOSTDOWN")
         | 
| 566 | 
            +
            #endif
         | 
| 567 | 
            +
            #ifdef EHOSTUNREACH
         | 
| 568 | 
            +
                    defined_error("EHOSTUNREACH", EHOSTUNREACH)
         | 
| 569 | 
            +
            #else
         | 
| 570 | 
            +
                    undefined_error("EHOSTUNREACH")
         | 
| 571 | 
            +
            #endif
         | 
| 572 | 
            +
            #ifdef EALREADY
         | 
| 573 | 
            +
                    defined_error("EALREADY", EALREADY)
         | 
| 574 | 
            +
            #else
         | 
| 575 | 
            +
                    undefined_error("EALREADY")
         | 
| 576 | 
            +
            #endif
         | 
| 577 | 
            +
            #ifdef EINPROGRESS
         | 
| 578 | 
            +
                    defined_error("EINPROGRESS", EINPROGRESS)
         | 
| 579 | 
            +
            #else
         | 
| 580 | 
            +
                    undefined_error("EINPROGRESS")
         | 
| 581 | 
            +
            #endif
         | 
| 582 | 
            +
            #ifdef ESTALE
         | 
| 583 | 
            +
                    defined_error("ESTALE", ESTALE)
         | 
| 584 | 
            +
            #else
         | 
| 585 | 
            +
                    undefined_error("ESTALE")
         | 
| 586 | 
            +
            #endif
         | 
| 587 | 
            +
            #ifdef EUCLEAN
         | 
| 588 | 
            +
                    defined_error("EUCLEAN", EUCLEAN)
         | 
| 589 | 
            +
            #else
         | 
| 590 | 
            +
                    undefined_error("EUCLEAN")
         | 
| 591 | 
            +
            #endif
         | 
| 592 | 
            +
            #ifdef ENOTNAM
         | 
| 593 | 
            +
                    defined_error("ENOTNAM", ENOTNAM)
         | 
| 594 | 
            +
            #else
         | 
| 595 | 
            +
                    undefined_error("ENOTNAM")
         | 
| 596 | 
            +
            #endif
         | 
| 597 | 
            +
            #ifdef ENAVAIL
         | 
| 598 | 
            +
                    defined_error("ENAVAIL", ENAVAIL)
         | 
| 599 | 
            +
            #else
         | 
| 600 | 
            +
                    undefined_error("ENAVAIL")
         | 
| 601 | 
            +
            #endif
         | 
| 602 | 
            +
            #ifdef EISNAM
         | 
| 603 | 
            +
                    defined_error("EISNAM", EISNAM)
         | 
| 604 | 
            +
            #else
         | 
| 605 | 
            +
                    undefined_error("EISNAM")
         | 
| 606 | 
            +
            #endif
         | 
| 607 | 
            +
            #ifdef EREMOTEIO
         | 
| 608 | 
            +
                    defined_error("EREMOTEIO", EREMOTEIO)
         | 
| 609 | 
            +
            #else
         | 
| 610 | 
            +
                    undefined_error("EREMOTEIO")
         | 
| 611 | 
            +
            #endif
         | 
| 612 | 
            +
            #ifdef EDQUOT
         | 
| 613 | 
            +
                    defined_error("EDQUOT", EDQUOT)
         | 
| 614 | 
            +
            #else
         | 
| 615 | 
            +
                    undefined_error("EDQUOT")
         | 
| 616 | 
            +
            #endif
         | 
| 617 | 
            +
            #ifdef ECANCELED
         | 
| 618 | 
            +
                    defined_error("ECANCELED", ECANCELED)
         | 
| 619 | 
            +
            #else
         | 
| 620 | 
            +
                    undefined_error("ECANCELED")
         | 
| 621 | 
            +
            #endif
         | 
| 622 | 
            +
            #ifdef EKEYEXPIRED
         | 
| 623 | 
            +
                    defined_error("EKEYEXPIRED", EKEYEXPIRED)
         | 
| 624 | 
            +
            #else
         | 
| 625 | 
            +
                    undefined_error("EKEYEXPIRED")
         | 
| 626 | 
            +
            #endif
         | 
| 627 | 
            +
            #ifdef EKEYREJECTED
         | 
| 628 | 
            +
                    defined_error("EKEYREJECTED", EKEYREJECTED)
         | 
| 629 | 
            +
            #else
         | 
| 630 | 
            +
                    undefined_error("EKEYREJECTED")
         | 
| 631 | 
            +
            #endif
         | 
| 632 | 
            +
            #ifdef EKEYREVOKED
         | 
| 633 | 
            +
                    defined_error("EKEYREVOKED", EKEYREVOKED)
         | 
| 634 | 
            +
            #else
         | 
| 635 | 
            +
                    undefined_error("EKEYREVOKED")
         | 
| 636 | 
            +
            #endif
         | 
| 637 | 
            +
            #ifdef EMEDIUMTYPE
         | 
| 638 | 
            +
                    defined_error("EMEDIUMTYPE", EMEDIUMTYPE)
         | 
| 639 | 
            +
            #else
         | 
| 640 | 
            +
                    undefined_error("EMEDIUMTYPE")
         | 
| 641 | 
            +
            #endif
         | 
| 642 | 
            +
            #ifdef ENOKEY
         | 
| 643 | 
            +
                    defined_error("ENOKEY", ENOKEY)
         | 
| 644 | 
            +
            #else
         | 
| 645 | 
            +
                    undefined_error("ENOKEY")
         | 
| 646 | 
            +
            #endif
         | 
| 647 | 
            +
            #ifdef ENOMEDIUM
         | 
| 648 | 
            +
                    defined_error("ENOMEDIUM", ENOMEDIUM)
         | 
| 649 | 
            +
            #else
         | 
| 650 | 
            +
                    undefined_error("ENOMEDIUM")
         | 
| 651 | 
            +
            #endif
         | 
| 652 | 
            +
            #ifdef ENOTRECOVERABLE
         | 
| 653 | 
            +
                    defined_error("ENOTRECOVERABLE", ENOTRECOVERABLE)
         | 
| 654 | 
            +
            #else
         | 
| 655 | 
            +
                    undefined_error("ENOTRECOVERABLE")
         | 
| 656 | 
            +
            #endif
         | 
| 657 | 
            +
            #ifdef EOWNERDEAD
         | 
| 658 | 
            +
                    defined_error("EOWNERDEAD", EOWNERDEAD)
         | 
| 659 | 
            +
            #else
         | 
| 660 | 
            +
                    undefined_error("EOWNERDEAD")
         | 
| 661 | 
            +
            #endif
         | 
| 662 | 
            +
            #ifdef ERFKILL
         | 
| 663 | 
            +
                    defined_error("ERFKILL", ERFKILL)
         | 
| 664 | 
            +
            #else
         | 
| 665 | 
            +
                    undefined_error("ERFKILL")
         | 
| 666 | 
            +
            #endif
         | 
| 667 | 
            +
            #ifdef EAUTH
         | 
| 668 | 
            +
                    defined_error("EAUTH", EAUTH)
         | 
| 669 | 
            +
            #else
         | 
| 670 | 
            +
                    undefined_error("EAUTH")
         | 
| 671 | 
            +
            #endif
         | 
| 672 | 
            +
            #ifdef EBADRPC
         | 
| 673 | 
            +
                    defined_error("EBADRPC", EBADRPC)
         | 
| 674 | 
            +
            #else
         | 
| 675 | 
            +
                    undefined_error("EBADRPC")
         | 
| 676 | 
            +
            #endif
         | 
| 677 | 
            +
            #ifdef EDOOFUS
         | 
| 678 | 
            +
                    defined_error("EDOOFUS", EDOOFUS)
         | 
| 679 | 
            +
            #else
         | 
| 680 | 
            +
                    undefined_error("EDOOFUS")
         | 
| 681 | 
            +
            #endif
         | 
| 682 | 
            +
            #ifdef EFTYPE
         | 
| 683 | 
            +
                    defined_error("EFTYPE", EFTYPE)
         | 
| 684 | 
            +
            #else
         | 
| 685 | 
            +
                    undefined_error("EFTYPE")
         | 
| 686 | 
            +
            #endif
         | 
| 687 | 
            +
            #ifdef ENEEDAUTH
         | 
| 688 | 
            +
                    defined_error("ENEEDAUTH", ENEEDAUTH)
         | 
| 689 | 
            +
            #else
         | 
| 690 | 
            +
                    undefined_error("ENEEDAUTH")
         | 
| 691 | 
            +
            #endif
         | 
| 692 | 
            +
            #ifdef ENOATTR
         | 
| 693 | 
            +
                    defined_error("ENOATTR", ENOATTR)
         | 
| 694 | 
            +
            #else
         | 
| 695 | 
            +
                    undefined_error("ENOATTR")
         | 
| 696 | 
            +
            #endif
         | 
| 697 | 
            +
            #ifdef ENOTSUP
         | 
| 698 | 
            +
                    defined_error("ENOTSUP", ENOTSUP)
         | 
| 699 | 
            +
            #else
         | 
| 700 | 
            +
                    undefined_error("ENOTSUP")
         | 
| 701 | 
            +
            #endif
         | 
| 702 | 
            +
            #ifdef EPROCLIM
         | 
| 703 | 
            +
                    defined_error("EPROCLIM", EPROCLIM)
         | 
| 704 | 
            +
            #else
         | 
| 705 | 
            +
                    undefined_error("EPROCLIM")
         | 
| 706 | 
            +
            #endif
         | 
| 707 | 
            +
            #ifdef EPROCUNAVAIL
         | 
| 708 | 
            +
                    defined_error("EPROCUNAVAIL", EPROCUNAVAIL)
         | 
| 709 | 
            +
            #else
         | 
| 710 | 
            +
                    undefined_error("EPROCUNAVAIL")
         | 
| 711 | 
            +
            #endif
         | 
| 712 | 
            +
            #ifdef EPROGMISMATCH
         | 
| 713 | 
            +
                    defined_error("EPROGMISMATCH", EPROGMISMATCH)
         | 
| 714 | 
            +
            #else
         | 
| 715 | 
            +
                    undefined_error("EPROGMISMATCH")
         | 
| 716 | 
            +
            #endif
         | 
| 717 | 
            +
            #ifdef EPROGUNAVAIL
         | 
| 718 | 
            +
                    defined_error("EPROGUNAVAIL", EPROGUNAVAIL)
         | 
| 719 | 
            +
            #else
         | 
| 720 | 
            +
                    undefined_error("EPROGUNAVAIL")
         | 
| 721 | 
            +
            #endif
         | 
| 722 | 
            +
            #ifdef ERPCMISMATCH
         | 
| 723 | 
            +
                    defined_error("ERPCMISMATCH", ERPCMISMATCH)
         | 
| 724 | 
            +
            #else
         | 
| 725 | 
            +
                    undefined_error("ERPCMISMATCH")
         | 
| 726 | 
            +
            #endif
         | 
| 727 | 
            +
            #ifdef EIPSEC
         | 
| 728 | 
            +
                    defined_error("EIPSEC", EIPSEC)
         | 
| 729 | 
            +
            #else
         | 
| 730 | 
            +
                    undefined_error("EIPSEC")
         | 
| 731 | 
            +
            #endif
         |