Searched defs:EXIT_BITS (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/lib/libast/amd64/include/ast/
H A Dast.h81 #define EXIT_BITS 8 /* # exit status bits */ macro
84 #define EXIT_QUIT ((1<<(EXIT_BITS))-1) /* parent should quit */
85 #define EXIT_NOTFOUND ((1<<(EXIT_BITS-1))-1) /* command not found */
86 #define EXIT_NOEXEC ((1<<(EXIT_BITS-1))-2) /* other exec error */
88 #define EXIT_CODE(x) ((x)&((1<<EXIT_BITS)-1))
89 #define EXIT_CORE(x) (EXIT_CODE(x)|(1<<EXIT_BITS)|(1<<(EXIT_BITS-1)))
90 #define EXIT_TERM(x) (EXIT_CODE(x)|(1<<EXIT_BITS))
93 * NOTE: for compatibility the following work for EXIT_BITS={7,8}
96 #define EXIT_STATUS(x) (((x)&((1<<(EXIT_BITS
[all...]
/illumos-gate/usr/src/lib/libast/common/include/
H A Dast.h72 #define EXIT_BITS 8 /* # exit status bits */ macro
75 #define EXIT_QUIT ((1<<(EXIT_BITS))-1) /* parent should quit */
76 #define EXIT_NOTFOUND ((1<<(EXIT_BITS-1))-1) /* command not found */
77 #define EXIT_NOEXEC ((1<<(EXIT_BITS-1))-2) /* other exec error */
79 #define EXIT_CODE(x) ((x)&((1<<EXIT_BITS)-1))
80 #define EXIT_CORE(x) (EXIT_CODE(x)|(1<<EXIT_BITS)|(1<<(EXIT_BITS-1)))
81 #define EXIT_TERM(x) (EXIT_CODE(x)|(1<<EXIT_BITS))
84 * NOTE: for compatibility the following work for EXIT_BITS={7,8}
87 #define EXIT_STATUS(x) (((x)&((1<<(EXIT_BITS
[all...]
/illumos-gate/usr/src/lib/libast/i386/include/ast/
H A Dast.h81 #define EXIT_BITS 8 /* # exit status bits */ macro
84 #define EXIT_QUIT ((1<<(EXIT_BITS))-1) /* parent should quit */
85 #define EXIT_NOTFOUND ((1<<(EXIT_BITS-1))-1) /* command not found */
86 #define EXIT_NOEXEC ((1<<(EXIT_BITS-1))-2) /* other exec error */
88 #define EXIT_CODE(x) ((x)&((1<<EXIT_BITS)-1))
89 #define EXIT_CORE(x) (EXIT_CODE(x)|(1<<EXIT_BITS)|(1<<(EXIT_BITS-1)))
90 #define EXIT_TERM(x) (EXIT_CODE(x)|(1<<EXIT_BITS))
93 * NOTE: for compatibility the following work for EXIT_BITS={7,8}
96 #define EXIT_STATUS(x) (((x)&((1<<(EXIT_BITS
[all...]
/illumos-gate/usr/src/lib/libast/sparc/include/ast/
H A Dast.h81 #define EXIT_BITS 8 /* # exit status bits */ macro
84 #define EXIT_QUIT ((1<<(EXIT_BITS))-1) /* parent should quit */
85 #define EXIT_NOTFOUND ((1<<(EXIT_BITS-1))-1) /* command not found */
86 #define EXIT_NOEXEC ((1<<(EXIT_BITS-1))-2) /* other exec error */
88 #define EXIT_CODE(x) ((x)&((1<<EXIT_BITS)-1))
89 #define EXIT_CORE(x) (EXIT_CODE(x)|(1<<EXIT_BITS)|(1<<(EXIT_BITS-1)))
90 #define EXIT_TERM(x) (EXIT_CODE(x)|(1<<EXIT_BITS))
93 * NOTE: for compatibility the following work for EXIT_BITS={7,8}
96 #define EXIT_STATUS(x) (((x)&((1<<(EXIT_BITS
[all...]
/illumos-gate/usr/src/lib/libast/sparcv9/include/ast/
H A Dast.h81 #define EXIT_BITS 8 /* # exit status bits */ macro
84 #define EXIT_QUIT ((1<<(EXIT_BITS))-1) /* parent should quit */
85 #define EXIT_NOTFOUND ((1<<(EXIT_BITS-1))-1) /* command not found */
86 #define EXIT_NOEXEC ((1<<(EXIT_BITS-1))-2) /* other exec error */
88 #define EXIT_CODE(x) ((x)&((1<<EXIT_BITS)-1))
89 #define EXIT_CORE(x) (EXIT_CODE(x)|(1<<EXIT_BITS)|(1<<(EXIT_BITS-1)))
90 #define EXIT_TERM(x) (EXIT_CODE(x)|(1<<EXIT_BITS))
93 * NOTE: for compatibility the following work for EXIT_BITS={7,8}
96 #define EXIT_STATUS(x) (((x)&((1<<(EXIT_BITS
[all...]

Completed in 48 milliseconds