Home
last modified time | relevance | path

Searched refs:COMBITS (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/include/
H A Dshnodes.h34 #define FINT (02<<COMBITS) /* non-interruptable */
35 #define FAMP (04<<COMBITS) /* background */
36 #define FPIN (010<<COMBITS) /* input is a pipe */
37 #define FPOU (040<<COMBITS) /* output is a pipe */
38 #define FPCL (0100<<COMBITS) /* close the pipe */
39 #define FCOOP (0200<<COMBITS) /* cooperating process */
40 #define FSHOWME (0400<<COMBITS) /* set for showme commands */
41 #define FALTPIPE (02000<<COMBITS) /* alternate pipes &| */
42 #define FPOSIX (02<<COMBITS) /* posix semantics function */
43 #define FLINENO (04<<COMBITS) /* for/case has line number */
[all …]
H A Dargnod.h54 #define COMBITS 4 macro
55 #define COMMSK ((1<<COMBITS)-1)
56 #define COMSCAN (01<<COMBITS)
57 #define COMFIXED (02<<COMBITS)
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Dxec.c1034 shp->bltindata.invariant = type>>(COMBITS+2); in sh_exec()