core: periodically show progress by elapsed simulation time, executed event count

This commit is contained in:
Peter D. Barnes, Jr.
2018-10-19 01:09:56 -04:00
parent 05cb0757bc
commit 1edcd5ecd4
5 changed files with 541 additions and 0 deletions

View File

@@ -40,6 +40,10 @@ def build(bld):
obj = bld.create_ns3_program('test-string-value-formatting', ['core'])
obj.source = 'test-string-value-formatting.cc'
obj = bld.create_ns3_program('sample-show-progress',
['core'])
obj.source = 'sample-show-progress.cc'
if bld.env['ENABLE_THREADING'] and bld.env["ENABLE_REAL_TIME"]:
obj = bld.create_ns3_program('main-test-sync', ['network'])
obj.source = 'main-test-sync.cc'