| 366 | } |
| 367 | |
| 368 | static void member_object_left (unsigned int nodeid) |
| 369 | { |
| 370 | char member_status[ICMAP_KEYNAME_MAXLEN]; |
| 371 | |
| 372 | snprintf(member_status, ICMAP_KEYNAME_MAXLEN, |
| 373 | "runtime.members.%u.status", nodeid); |
| 374 | icmap_set_string(member_status, "left"); |
| 375 | |
| 376 | log_printf (LOGSYS_LEVEL_DEBUG, |
| 377 | "Member left: %s", api->totem_ifaces_print (nodeid)); |
| 378 | } |
| 379 | |
| 380 | static void confchg_fn ( |
| 381 | enum totem_configuration_type configuration_type, |
no test coverage detected