Where Online Learning is simpler!
The C and C++ Include Header Files
/usr/include/apache2/modperl_trace.h
$ cat -n /usr/include/apache2/modperl_trace.h 1 #ifndef MODPERL_TRACE_H 2 #define MODPERL_TRACE_H 3 4 /* 5 * *********** WARNING ************** 6 * This file generated by ModPerl::Code/0.01 7 * Any changes made here will be lost 8 * *********************************** 9 * 01: lib/ModPerl/Code.pm:740 10 * 02: lib/ModPerl/Code.pm:766 11 * 03: Makefile.PL:391 12 * 04: Makefile.PL:102 13 */ 14 15 #define MP_VERSION_STRING "mod_perl/2.0.13" 16 #define MP_API_VERSION "2" 17 #define MP_TRACE_OPTS "acdefghimorst" 18 19 #ifdef MP_TRACE 20 #define MP_TRACE_any if (MP_debug_level) modperl_trace 21 #define MP_TRACE_any_do(exp) if (MP_debug_level) { \ 22 exp; \ 23 } 24 #else 25 #define MP_TRACE_any if (0) modperl_trace 26 #define MP_TRACE_any_do(exp) 27 #endif 28 29 #ifdef MP_TRACE 30 #define MP_TRACE_a if (MP_debug_level & 1) modperl_trace 31 #define MP_TRACE_a_do(exp) if (MP_debug_level & 1) { \ 32 exp; \ 33 } 34 #else 35 #define MP_TRACE_a if (0) modperl_trace 36 #define MP_TRACE_a_do(exp) 37 #endif 38 #ifdef MP_TRACE 39 #define MP_TRACE_c if (MP_debug_level & 2) modperl_trace 40 #define MP_TRACE_c_do(exp) if (MP_debug_level & 2) { \ 41 exp; \ 42 } 43 #else 44 #define MP_TRACE_c if (0) modperl_trace 45 #define MP_TRACE_c_do(exp) 46 #endif 47 #ifdef MP_TRACE 48 #define MP_TRACE_d if (MP_debug_level & 4) modperl_trace 49 #define MP_TRACE_d_do(exp) if (MP_debug_level & 4) { \ 50 exp; \ 51 } 52 #else 53 #define MP_TRACE_d if (0) modperl_trace 54 #define MP_TRACE_d_do(exp) 55 #endif 56 #ifdef MP_TRACE 57 #define MP_TRACE_e if (MP_debug_level & 8) modperl_trace 58 #define MP_TRACE_e_do(exp) if (MP_debug_level & 8) { \ 59 exp; \ 60 } 61 #else 62 #define MP_TRACE_e if (0) modperl_trace 63 #define MP_TRACE_e_do(exp) 64 #endif 65 #ifdef MP_TRACE 66 #define MP_TRACE_f if (MP_debug_level & 16) modperl_trace 67 #define MP_TRACE_f_do(exp) if (MP_debug_level & 16) { \ 68 exp; \ 69 } 70 #else 71 #define MP_TRACE_f if (0) modperl_trace 72 #define MP_TRACE_f_do(exp) 73 #endif 74 #ifdef MP_TRACE 75 #define MP_TRACE_g if (MP_debug_level & 32) modperl_trace 76 #define MP_TRACE_g_do(exp) if (MP_debug_level & 32) { \ 77 exp; \ 78 } 79 #else 80 #define MP_TRACE_g if (0) modperl_trace 81 #define MP_TRACE_g_do(exp) 82 #endif 83 #ifdef MP_TRACE 84 #define MP_TRACE_h if (MP_debug_level & 64) modperl_trace 85 #define MP_TRACE_h_do(exp) if (MP_debug_level & 64) { \ 86 exp; \ 87 } 88 #else 89 #define MP_TRACE_h if (0) modperl_trace 90 #define MP_TRACE_h_do(exp) 91 #endif 92 #ifdef MP_TRACE 93 #define MP_TRACE_i if (MP_debug_level & 128) modperl_trace 94 #define MP_TRACE_i_do(exp) if (MP_debug_level & 128) { \ 95 exp; \ 96 } 97 #else 98 #define MP_TRACE_i if (0) modperl_trace 99 #define MP_TRACE_i_do(exp) 100 #endif 101 #ifdef MP_TRACE 102 #define MP_TRACE_m if (MP_debug_level & 256) modperl_trace 103 #define MP_TRACE_m_do(exp) if (MP_debug_level & 256) { \ 104 exp; \ 105 } 106 #else 107 #define MP_TRACE_m if (0) modperl_trace 108 #define MP_TRACE_m_do(exp) 109 #endif 110 #ifdef MP_TRACE 111 #define MP_TRACE_o if (MP_debug_level & 512) modperl_trace 112 #define MP_TRACE_o_do(exp) if (MP_debug_level & 512) { \ 113 exp; \ 114 } 115 #else 116 #define MP_TRACE_o if (0) modperl_trace 117 #define MP_TRACE_o_do(exp) 118 #endif 119 #ifdef MP_TRACE 120 #define MP_TRACE_r if (MP_debug_level & 1024) modperl_trace 121 #define MP_TRACE_r_do(exp) if (MP_debug_level & 1024) { \ 122 exp; \ 123 } 124 #else 125 #define MP_TRACE_r if (0) modperl_trace 126 #define MP_TRACE_r_do(exp) 127 #endif 128 #ifdef MP_TRACE 129 #define MP_TRACE_s if (MP_debug_level & 2048) modperl_trace 130 #define MP_TRACE_s_do(exp) if (MP_debug_level & 2048) { \ 131 exp; \ 132 } 133 #else 134 #define MP_TRACE_s if (0) modperl_trace 135 #define MP_TRACE_s_do(exp) 136 #endif 137 #ifdef MP_TRACE 138 #define MP_TRACE_t if (MP_debug_level & 4096) modperl_trace 139 #define MP_TRACE_t_do(exp) if (MP_debug_level & 4096) { \ 140 exp; \ 141 } 142 #else 143 #define MP_TRACE_t if (0) modperl_trace 144 #define MP_TRACE_t_do(exp) 145 #endif 146 #define MP_TRACE_dump_flags() \ 147 modperl_trace(NULL, "mod_perl trace flags dump:"); \ 148 modperl_trace(NULL, " a %s (Apache API interaction)", (MP_debug_level & 1) ? "On " : "Off"); \ 149 modperl_trace(NULL, " c %s (configuration for directive handlers)", (MP_debug_level & 2) ? "On " : "Off"); \ 150 modperl_trace(NULL, " d %s (directive processing)", (MP_debug_level & 4) ? "On " : "Off"); \ 151 modperl_trace(NULL, " e %s (environment variables)", (MP_debug_level & 8) ? "On " : "Off"); \ 152 modperl_trace(NULL, " f %s (filters)", (MP_debug_level & 16) ? "On " : "Off"); \ 153 modperl_trace(NULL, " g %s (globals management)", (MP_debug_level & 32) ? "On " : "Off"); \ 154 modperl_trace(NULL, " h %s (handlers)", (MP_debug_level & 64) ? "On " : "Off"); \ 155 modperl_trace(NULL, " i %s (interpreter pool management)", (MP_debug_level & 128) ? "On " : "Off"); \ 156 modperl_trace(NULL, " m %s (memory allocations)", (MP_debug_level & 256) ? "On " : "Off"); \ 157 modperl_trace(NULL, " o %s (I/O)", (MP_debug_level & 512) ? "On " : "Off"); \ 158 modperl_trace(NULL, " r %s (Perl runtime interaction)", (MP_debug_level & 1024) ? "On " : "Off"); \ 159 modperl_trace(NULL, " s %s (Perl sections)", (MP_debug_level & 2048) ? "On " : "Off"); \ 160 modperl_trace(NULL, " t %s (benchmark-ish timings)", (MP_debug_level & 4096) ? "On " : "Off"); 161 #endif /* MODPERL_TRACE_H */
Contact us
|
About us
|
Term of use
|
Copyright © 2000-2025 MyWebUniversity.com ™