Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
705 views
in Technique[技术] by (71.8m points)

omnet++ - How to display queue size

I am trying to display the current queue status (i.e. the number of packets in the queue) of a node in OmNet++ using INET framework. I want to track the number of packets in the queue of a node in MAC layer.

In mac.cc file, I wrote the following

 if (!txQueue->isEmpty())
  {
    EV << " queue size: " << txQueue->getNumPackets() << endl;
  }

However, in output, I'm getting the queue size 0 all time.

Can anyone suggest me how to display it?

Thank you.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

That's the way to display it. Or, you can specify "q=txQueue" in the display string of the encompassing module. That will also display the queue length on the graphical display near the module icon.

If you always see 0, maybe that means the queue length is indeed always 0.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...