summaryrefslogtreecommitdiff
path: root/defs.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-02-21 16:17:08 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2013-02-21 16:17:08 +0100
commitc1540fe19d0980be3f6a218c91a03983f8a86009 (patch)
tree1dddae13d99512e73d48690283aa95b3634af2e0 /defs.h
parenta585c9d6416d5ca7e3af3ffd4887205f06f8286d (diff)
downloadstrace-c1540fe19d0980be3f6a218c91a03983f8a86009.tar.gz
strace-c1540fe19d0980be3f6a218c91a03983f8a86009.tar.bz2
strace-c1540fe19d0980be3f6a218c91a03983f8a86009.tar.xz
Remove unused QUAL_FAULT code (was used by non-Linux code only).
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'defs.h')
-rw-r--r--defs.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/defs.h b/defs.h
index 9b14a21..3562079 100644
--- a/defs.h
+++ b/defs.h
@@ -466,11 +466,10 @@ struct tcb {
#define QUAL_VERBOSE 0x004 /* decode the structures of this syscall */
#define QUAL_RAW 0x008 /* print all args in hex for this syscall */
#define QUAL_SIGNAL 0x010 /* report events with this signal */
-#define QUAL_FAULT 0x020 /* report events with this fault */
-#define QUAL_READ 0x040 /* dump data read on this file descriptor */
-#define QUAL_WRITE 0x080 /* dump data written to this file descriptor */
-#define UNDEFINED_SCNO 0x100 /* Used only in tcp->qual_flg */
+#define QUAL_READ 0x020 /* dump data read on this file descriptor */
+#define QUAL_WRITE 0x040 /* dump data written to this file descriptor */
typedef uint8_t qualbits_t;
+#define UNDEFINED_SCNO 0x100 /* Used only in tcp->qual_flg */
#define DEFAULT_QUAL_FLAGS (QUAL_TRACE | QUAL_ABBREV | QUAL_VERBOSE)