Return the slot bit from the cluster node structure. */
| 3876 | |
| 3877 | /* Return the slot bit from the cluster node structure. */ |
| 3878 | int clusterNodeGetSlotBit(clusterNode *n, int slot) { |
| 3879 | return bitmapTestBit(n->slots,slot); |
| 3880 | } |
| 3881 | |
| 3882 | /* Add the specified slot to the list of slots that node 'n' will |
| 3883 | * serve. Return C_OK if the operation ended with success. |
no test coverage detected