View | Details | Raw Unified | Return to bug 938
Collapse All | Expand All

(-)a/src/mpi/model/distributed-simulator-impl.h (-2 / +5 lines)
 Lines 48-53    Link Here 
48
   * \param rxc received count
48
   * \param rxc received count
49
   * \param txc transmitted count
49
   * \param txc transmitted count
50
   * \param id mpi rank
50
   * \param id mpi rank
51
   * \param isFinished whether message is finished
51
   * \param t smallest time
52
   * \param t smallest time
52
   */
53
   */
53
  LbtsMessage (uint32_t rxc, uint32_t txc, uint32_t id, bool isFinished, const Time& t)
54
  LbtsMessage (uint32_t rxc, uint32_t txc, uint32_t id, bool isFinished, const Time& t)
 Lines 70-83    Link Here 
70
   */
71
   */
71
  uint32_t GetTxCount ();
72
  uint32_t GetTxCount ();
72
  /**
73
  /**
73
   * \return receieved count
74
   * \return received count
74
   */
75
   */
75
  uint32_t GetRxCount ();
76
  uint32_t GetRxCount ();
76
  /**
77
  /**
77
   * \return id which corresponds to mpi rank
78
   * \return id which corresponds to mpi rank
78
   */
79
   */
79
  uint32_t GetMyId ();
80
  uint32_t GetMyId ();
80
81
  /**
82
   * \return true if LBTS message is finished
83
   */
81
  bool IsFinished ();
84
  bool IsFinished ();
82
85
83
private:
86
private:

Return to bug 938