~ubuntu-branches/debian/sid/trinity/sid

« back to all changes in this revision

Viewing changes to include/params.h

  • Committer: Package Import Robot
  • Author(s): gustavo panizzo
  • Date: 2014-01-17 21:10:15 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140117211015-k2qbnpu0osa5mlil
Tags: 1.3-1
* New upstream version 1.3.
* Removed wrong dependency on linux-headers. (Closes: #733771).

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#define _PARAMS_H 1
3
3
 
4
4
#include "types.h"
 
5
#include "net.h"
 
6
 
 
7
#define TAINT_PROPRIETARY_MODULE        0
 
8
#define TAINT_FORCED_MODULE             1
 
9
#define TAINT_UNSAFE_SMP                2
 
10
#define TAINT_FORCED_RMMOD              3
 
11
#define TAINT_MACHINE_CHECK             4
 
12
#define TAINT_BAD_PAGE                  5
 
13
#define TAINT_USER                      6
 
14
#define TAINT_DIE                       7
 
15
#define TAINT_OVERRIDDEN_ACPI_TABLE     8
 
16
#define TAINT_WARN                      9
 
17
#define TAINT_CRAP                      10
 
18
#define TAINT_FIRMWARE_WORKAROUND       11
 
19
#define TAINT_OOT_MODULE                12
5
20
 
6
21
/* command line args. */
7
22
void parse_args(int argc, char *argv[]);
8
23
 
9
24
extern bool debug;
 
25
 
 
26
extern bool do_32_arch;
 
27
extern bool do_64_arch;
 
28
 
10
29
extern bool do_specific_syscall;
11
30
extern bool do_exclude_syscall;
12
31
extern unsigned int specific_proto;
13
32
extern bool do_specific_proto;
14
33
extern char *specific_proto_optarg;
 
34
extern bool no_protos[TRINITY_PF_MAX];
15
35
extern bool dopause;
16
36
extern bool show_syscall_list;
17
37
extern bool show_ioctl_list;
28
48
extern bool random_selection;
29
49
extern unsigned int random_selection_num;
30
50
 
 
51
extern int kernel_taint_initial;
 
52
extern int kernel_taint_mask;
 
53
extern bool kernel_taint_param_occured;
 
54
 
 
55
extern unsigned int user_specified_children;
31
56
#endif  /* _PARAMS_H */