Revision 97ccebed src/sim/casyncmodule.cc
src/sim/casyncmodule.cc | ||
---|---|---|
166 | 166 |
t.str().c_str(), t_end.str().c_str()); |
167 | 167 |
|
168 | 168 |
if (t == now && currentEventPriority < msg->getSchedulingPriority()) { |
169 |
throw cRuntimeError("scheduleAt(): priority of scheduled Event larger than scheduling event and scheduling event and equal starting times => scheduling in the past");
|
|
169 |
throw cRuntimeError("scheduleAt(): priority of scheduled Event larger than scheduling event and equal starting times => scheduling in the past"); |
|
170 | 170 |
} |
171 | 171 |
// insert this message in the FES. When the scheduler arrives at this |
172 | 172 |
// message it will trigger the processing of the associated task |
... | ... | |
350 | 350 |
throw cRuntimeError("sendDelayed(): send delay shorter than processing delay %s", delay.str().c_str()); |
351 | 351 |
|
352 | 352 |
if (delay == 0 && currentEventPriority < msg->getSchedulingPriority()) { |
353 |
throw cRuntimeError("sendDelayed(): priority of scheduled Event larger than scheduling event and scheduling event and equal starting times => scheduling in the past");
|
|
353 |
throw cRuntimeError("sendDelayed(): priority of scheduled Event larger than scheduling event and equal starting times => scheduling in the past"); |
|
354 | 354 |
} |
355 | 355 |
// |
356 | 356 |
// set message parameters and send it |
... | ... | |
449 | 449 |
throw cRuntimeError("sendDirect(): send delay shorter than processing delay %s",delay.str().c_str()); |
450 | 450 |
|
451 | 451 |
if (delay == 0 && currentEventPriority < msg->getSchedulingPriority()) { |
452 |
throw cRuntimeError("sendDirect(): priority of scheduled Event larger than scheduling event and scheduling event and equal starting times => scheduling in the past");
|
|
452 |
throw cRuntimeError("sendDirect(): priority of scheduled Event larger than scheduling event and equal starting times => scheduling in the past"); |
|
453 | 453 |
} |
454 | 454 |
|
455 | 455 |
// set message parameters and send it |
Also available in: Unified diff