#include <omnetpp.h>Go to the source code of this file.
Classes | |
| class | UnderlayConfigurator |
| Base class for configurators of different underlay models. More... | |
Defines | |
| #define | timersub(a, b, result) |
Definition in file UnderlayConfigurator.h.
| #define timersub | ( | a, | |||
| b, | |||||
| result | ) |
Value:
do { \ (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ if ((result)->tv_usec < 0) { \ --(result)->tv_sec; \ (result)->tv_usec += 1000000; \ } \ } while (0)
Definition at line 37 of file UnderlayConfigurator.h.
Referenced by SingleHostUnderlayConfigurator::finishUnderlay(), SimpleUnderlayConfigurator::finishUnderlay(), and InetUnderlayConfigurator::finishUnderlay().
1.5.8