A forum for Spin users
You are not logged in.
I've recently developed in Spin and I have a question to solve, in my project I have two prototypes and run tolamente need a first or another later.
They function as two finite state machines to represent a client-server architecture for a stop and wait protocol
Offline
that's right, two proctypes and I need to run first one then the other
Offline
when you say "send a message" you mean using data send by the channel?
Offline
the run well, correct?
init
{
atomic { run controlador(2,1); run agente(2,1) }
}
Offline
the process that initiates the communication is the controller, running all states, and then send to the agent, which analyzes the information received and if all is well, send your answer ... so should sudecer, that's why I need to run around a complete process and then the other, that's where my question lies, I can not run all the prototype and then the other
Offline