Prefetch child pointer for cache optimization */
| 101 | |
| 102 | /* Prefetch child pointer for cache optimization */ |
| 103 | static inline BPlusNode *node_prefetch_child(BPlusNode *node, int index) { |
| 104 | BPlusNode *child = node_get_child(node, index); |
| 105 | #ifdef PREFETCH_HINTS |
| 106 | PREFETCH(child, 0, 3); |
| 107 | #endif |
| 108 | return child; |
| 109 | } |
| 110 | |
| 111 | /* Function prototypes */ |
| 112 |
no test coverage detected