* get_bl_marker() and store_bl_marker(): * easy manipulation of the blacklist bitmask stored in global context */
| 116 | * easy manipulation of the blacklist bitmask stored in global context |
| 117 | */ |
| 118 | static int get_bl_marker(unsigned int *marker) |
| 119 | { |
| 120 | if (!current_processing_ctx) |
| 121 | return -1; |
| 122 | |
| 123 | if (marker) |
| 124 | *marker = (unsigned int)context_get_int( |
| 125 | CONTEXT_GLOBAL, current_processing_ctx, bl_ctx_idx); |
| 126 | |
| 127 | return 0; |
| 128 | } |
| 129 | |
| 130 | #define store_bl_marker(value) \ |
| 131 | (context_put_int( \ |
no test coverage detected