Home | History | Annotate | Download | only in amd64-solaris

Lines Matching defs:rflags

1 /* Test if definedness of rflags values is correctly propagated in and out
8 flag value (indicating if the syscall succeeded) in the rflags. This save
9 operation unfortunately makes all rflags initialised (due to imprecise
20 #define OBIT(rflags) (!!((rflags) & (1 << 11)))
21 #define SBIT(rflags) (!!((rflags) & (1 << 7)))
40 long rflags;
72 : "=d" (rflags)
78 Note: This actually fails because the rflags are only approximate
85 if (!OBIT(rflags) || !SBIT(rflags))