* Reset all the avc caches */
| 75 | * Reset all the avc caches |
| 76 | */ |
| 77 | static void |
| 78 | sepgsql_avc_reset(void) |
| 79 | { |
| 80 | MemoryContextReset(avc_mem_cxt); |
| 81 | |
| 82 | memset(avc_slots, 0, sizeof(List *) * AVC_NUM_SLOTS); |
| 83 | avc_num_caches = 0; |
| 84 | avc_lru_hint = 0; |
| 85 | avc_unlabeled = NULL; |
| 86 | } |
| 87 | |
| 88 | /* |
| 89 | * Reclaim caches recently unreferenced |
no test coverage detected