Return the slot bit from the cluster node structure. */
| 3935 | |
| 3936 | /* Return the slot bit from the cluster node structure. */ |
| 3937 | int clusterNodeGetSlotBit(clusterNode *n, int slot) { |
| 3938 | return bitmapTestBit(n->slots,slot); |
| 3939 | } |
| 3940 | |
| 3941 | /* Add the specified slot to the list of slots that node 'n' will |
| 3942 | * serve. Return C_OK if the operation ended with success. |
no test coverage detected