From f50c82f0adc3131002fcc3ada4c2559a442e0dd0 Mon Sep 17 00:00:00 2001 From: "Wolfgang (Blub) Bumiller" Date: Wed, 27 Jun 2012 19:42:51 +0200 Subject: [PATCH] Commenting the VMXF_ flags --- exec.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/exec.h b/exec.h index ad18738..bfa1f10 100644 --- a/exec.h +++ b/exec.h @@ -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; -- 2.39.2