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

/osnet-11/usr/src/lib/libast/amd64/include/ast/
H A Dast.h79 #define EXIT_BITS 8 /* # exit status bits */ macro
82 #define EXIT_QUIT ((1<<(EXIT_BITS))-1) /* parent should quit */
83 #define EXIT_NOTFOUND ((1<<(EXIT_BITS-1))-1) /* command not found */
84 #define EXIT_NOEXEC ((1<<(EXIT_BITS-1))-2) /* other exec error */
86 #define EXIT_CODE(x) ((x)&((1<<EXIT_BITS)-1))
87 #define EXIT_CORE(x) (EXIT_CODE(x)|(1<<EXIT_BITS)|(1<<(EXIT_BITS-1)))
88 #define EXIT_TERM(x) (EXIT_CODE(x)|(1<<EXIT_BITS))
91 * NOTE: for compatibility the following work for EXIT_BITS={7,8}
94 #define EXIT_STATUS(x) (((x)&((1<<(EXIT_BITS
[all...]
/osnet-11/usr/src/lib/libast/common/include/
H A Dast.h70 #define EXIT_BITS 8 /* # exit status bits */ macro
73 #define EXIT_QUIT ((1<<(EXIT_BITS))-1) /* parent should quit */
74 #define EXIT_NOTFOUND ((1<<(EXIT_BITS-1))-1) /* command not found */
75 #define EXIT_NOEXEC ((1<<(EXIT_BITS-1))-2) /* other exec error */
77 #define EXIT_CODE(x) ((x)&((1<<EXIT_BITS)-1))
78 #define EXIT_CORE(x) (EXIT_CODE(x)|(1<<EXIT_BITS)|(1<<(EXIT_BITS-1)))
79 #define EXIT_TERM(x) (EXIT_CODE(x)|(1<<EXIT_BITS))
82 * NOTE: for compatibility the following work for EXIT_BITS={7,8}
85 #define EXIT_STATUS(x) (((x)&((1<<(EXIT_BITS
[all...]
/osnet-11/usr/src/lib/libast/i386/include/ast/
H A Dast.h79 #define EXIT_BITS 8 /* # exit status bits */ macro
82 #define EXIT_QUIT ((1<<(EXIT_BITS))-1) /* parent should quit */
83 #define EXIT_NOTFOUND ((1<<(EXIT_BITS-1))-1) /* command not found */
84 #define EXIT_NOEXEC ((1<<(EXIT_BITS-1))-2) /* other exec error */
86 #define EXIT_CODE(x) ((x)&((1<<EXIT_BITS)-1))
87 #define EXIT_CORE(x) (EXIT_CODE(x)|(1<<EXIT_BITS)|(1<<(EXIT_BITS-1)))
88 #define EXIT_TERM(x) (EXIT_CODE(x)|(1<<EXIT_BITS))
91 * NOTE: for compatibility the following work for EXIT_BITS={7,8}
94 #define EXIT_STATUS(x) (((x)&((1<<(EXIT_BITS
[all...]
/osnet-11/usr/src/lib/libast/sparc/include/ast/
H A Dast.h79 #define EXIT_BITS 8 /* # exit status bits */ macro
82 #define EXIT_QUIT ((1<<(EXIT_BITS))-1) /* parent should quit */
83 #define EXIT_NOTFOUND ((1<<(EXIT_BITS-1))-1) /* command not found */
84 #define EXIT_NOEXEC ((1<<(EXIT_BITS-1))-2) /* other exec error */
86 #define EXIT_CODE(x) ((x)&((1<<EXIT_BITS)-1))
87 #define EXIT_CORE(x) (EXIT_CODE(x)|(1<<EXIT_BITS)|(1<<(EXIT_BITS-1)))
88 #define EXIT_TERM(x) (EXIT_CODE(x)|(1<<EXIT_BITS))
91 * NOTE: for compatibility the following work for EXIT_BITS={7,8}
94 #define EXIT_STATUS(x) (((x)&((1<<(EXIT_BITS
[all...]
/osnet-11/usr/src/lib/libast/sparcv9/include/ast/
H A Dast.h79 #define EXIT_BITS 8 /* # exit status bits */ macro
82 #define EXIT_QUIT ((1<<(EXIT_BITS))-1) /* parent should quit */
83 #define EXIT_NOTFOUND ((1<<(EXIT_BITS-1))-1) /* command not found */
84 #define EXIT_NOEXEC ((1<<(EXIT_BITS-1))-2) /* other exec error */
86 #define EXIT_CODE(x) ((x)&((1<<EXIT_BITS)-1))
87 #define EXIT_CORE(x) (EXIT_CODE(x)|(1<<EXIT_BITS)|(1<<(EXIT_BITS-1)))
88 #define EXIT_TERM(x) (EXIT_CODE(x)|(1<<EXIT_BITS))
91 * NOTE: for compatibility the following work for EXIT_BITS={7,8}
94 #define EXIT_STATUS(x) (((x)&((1<<(EXIT_BITS
[all...]

Completed in 27 milliseconds