aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-15 19:10:10 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-15 19:10:10 +0000
commita2c426f29fb2dca512c9b029b839aeeac6963017 (patch)
tree8a1a80416690533a588361b6c578d0f999f49477 /include
parent5fa0b7c277ad400a1029e71d51e83817414129a5 (diff)
Last batch of 'static' qualifiers for module-level global variables.
Fix up modules in the 'apps' directory, and also correct the bad example of enum definitions in include/asterisk/app.h, which many developers followed (thanks for reading the documentation!). In addition, add some basic usage examples of the 'pahole' and 'pglobal' tools to the coding guidelines. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@200656 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/app.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/asterisk/app.h b/include/asterisk/app.h
index da947b5d7..3bf780060 100644
--- a/include/asterisk/app.h
+++ b/include/asterisk/app.h
@@ -447,19 +447,19 @@ struct ast_app_option {
Example usage:
\code
- enum {
+ enum my_app_option_flags {
OPT_JUMP = (1 << 0),
OPT_BLAH = (1 << 1),
OPT_BLORT = (1 << 2),
- } my_app_option_flags;
+ };
- enum {
+ enum my_app_option_args {
OPT_ARG_BLAH = 0,
OPT_ARG_BLORT,
!! this entry tells how many possible arguments there are,
and must be the last entry in the list
OPT_ARG_ARRAY_SIZE,
- } my_app_option_args;
+ };
AST_APP_OPTIONS(my_app_options, {
AST_APP_OPTION('j', OPT_JUMP),