MINOR: activity: add configuration and CLI support for "profiling.tasks"

This is a new global setting which enables or disables CPU profiling
per task. For now it only sets/resets the variable based on the global
option "profiling.tasks" and supports showing it as well as setting it
from the CLI using "show profiling" and "set profiling". The option will
be used by a future commit. It was done in a way which should ease future
addition of profiling options.
diff --git a/include/proto/activity.h b/include/proto/activity.h
index 717d667..098206e 100644
--- a/include/proto/activity.h
+++ b/include/proto/activity.h
@@ -28,6 +28,10 @@
 #include <types/activity.h>
 #include <proto/freq_ctr.h>
 
+/* bit fields for "profiling" */
+#define HA_PROF_TASKS       0x00000001     /* enable per-task CPU profiling */
+
+extern unsigned int profiling;
 extern struct activity activity[MAX_THREADS];