Commenting the VMXF_ flags

This commit is contained in:
Wolfgang (Blub) Bumiller 2012-06-27 19:42:51 +02:00
parent 08e5403896
commit f50c82f0ad

7
exec.h
View file

@ -77,9 +77,10 @@ enum {
#define JUMPS_DEFAULT 1000000
#define VMXF_DEFAULT 0x0000
#define VMXF_TRACE 0x0001
#define VMXF_PROFILE 0x0002
/* execute-flags */
#define VMXF_DEFAULT 0x0000 /* default flags - nothing */
#define VMXF_TRACE 0x0001 /* trace: print statements before executing */
#define VMXF_PROFILE 0x0002 /* profile: increment the profile counters */
struct qc_program_s;