VCM commit prepare
This commit is contained in:
parent
84dbe1e37b
commit
583b591d40
|
|
@ -861,6 +861,10 @@ static void intersection_check(VCM_t* vcm, mc_neighbour_s* neighbour) {
|
|||
}
|
||||
}
|
||||
|
||||
static int vcm_check_handle_commit(VCM_t* vcm, mc_neighbour_s* neighbour) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
int vcm_check(VCM_t* vcm) {
|
||||
coordination_t* coordination = &facilities.coordination;
|
||||
|
|
@ -910,6 +914,10 @@ int vcm_check(VCM_t* vcm) {
|
|||
vcm_check_handle_reply(vcm, neighbour);
|
||||
break;
|
||||
|
||||
case CoordinationNegotiation_PR_commit:
|
||||
vcm_check_handle_commit(vcm, neighbour);
|
||||
break;
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue