src/core/examples/main-test-sync.cc
changeset 7169 358f71a624d8
parent 7028 3963d3678649
child 7256 b04ba6772f8c
--- a/src/core/examples/main-test-sync.cc	Fri May 13 14:51:51 2011 -0400
+++ b/src/core/examples/main-test-sync.cc	Fri May 13 14:52:27 2011 -0400
@@ -24,7 +24,7 @@
 {
   NS_ASSERT (gFirstRun);
   NS_LOG_UNCOND ("inserted_function() called at " << 
-    Simulator::Now ().GetSeconds () << " s");
+                 Simulator::Now ().GetSeconds () << " s");
 }
 
 void 
@@ -32,14 +32,14 @@
 {
   NS_ASSERT (gFirstRun);
   NS_LOG_UNCOND ("background_function() called at " << 
-    Simulator::Now ().GetSeconds () << " s");
+                 Simulator::Now ().GetSeconds () << " s");
 }
 
 void 
 first_function (void)
 {
   NS_LOG_UNCOND ("first_function() called at " << 
-    Simulator::Now ().GetSeconds () << " s");
+                 Simulator::Now ().GetSeconds () << " s");
   gFirstRun = true;
 }
 
@@ -90,7 +90,7 @@
 test (void)
 {
   GlobalValue::Bind ("SimulatorImplementationType", 
-    StringValue ("ns3::RealtimeSimulatorImpl"));
+                     StringValue ("ns3::RealtimeSimulatorImpl"));
 
   FakeNetDevice fnd;
 
@@ -108,11 +108,11 @@
     }
 
   Ptr<SystemThread> st3 = Create<SystemThread> (
-    MakeCallback (&FakeNetDevice::Doit3, &fnd));
+      MakeCallback (&FakeNetDevice::Doit3, &fnd));
   st3->Start ();
 
   Ptr<SystemThread> st4 = Create<SystemThread> (
-    MakeCallback (&FakeNetDevice::Doit4, &fnd));
+      MakeCallback (&FakeNetDevice::Doit4, &fnd));
   st4->Start ();
 
   Simulator::Stop (Seconds (15.0));