summaryrefslogtreecommitdiff
path: root/examples/Threads/task_three.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Threads/task_three.cpp')
-rw-r--r--examples/Threads/task_three.cpp49
1 files changed, 30 insertions, 19 deletions
diff --git a/examples/Threads/task_three.cpp b/examples/Threads/task_three.cpp
index dad6573d59d..c1e796736ad 100644
--- a/examples/Threads/task_three.cpp
+++ b/examples/Threads/task_three.cpp
@@ -12,6 +12,7 @@
// }
#include "ace/OS_NS_unistd.h"
+#include "ace/OS_NS_stdio.h"
#include "ace/OS_main.h"
#include "ace/Reactor.h"
#include "ace/Service_Config.h"
@@ -26,7 +27,7 @@ ACE_RCSID(Threads, task_three, "$Id$")
#if defined (ACE_HAS_THREADS)
-static ofstream *out_stream = 0;
+static ACE_OSTREAM_TYPE *out_stream = 0;
static sig_atomic_t done = 0;
static const size_t NUM_INVOCATIONS = 100;
static const size_t TASK_COUNT = 130;
@@ -61,7 +62,7 @@ Test_Task::Test_Task (void)
this->handled_ = 0;
Test_Task::current_count_++;
ACE_DEBUG ((LM_DEBUG,
- "Test_Task constructed, current_count_ = %d\n",
+ ACE_TEXT ("Test_Task constructed, current_count_ = %d\n"),
Test_Task::current_count_));
}
@@ -70,14 +71,14 @@ Test_Task::~Test_Task (void)
ACE_GUARD (ACE_Thread_Mutex, ace_mon, lock_);
ACE_DEBUG ((LM_DEBUG,
- "Test_Task destroyed, current_count_ = %d\n",
+ ACE_TEXT ("Test_Task destroyed, current_count_ = %d\n"),
Test_Task::current_count_));
}
int
Test_Task::open (void *args)
{
- r_ = ACE_reinterpret_cast (ACE_Reactor *, args);
+ r_ = reinterpret_cast <ACE_Reactor *> (args);
return ACE_Task<ACE_MT_SYNCH>::activate (THR_NEW_LWP);
}
@@ -88,7 +89,7 @@ Test_Task::close (u_long)
Test_Task::current_count_--;
ACE_DEBUG ((LM_DEBUG,
- "Test_Task::close () current_count_ = %d.\n",
+ ACE_TEXT ("Test_Task::close () current_count_ = %d.\n"),
Test_Task::current_count_));
return 0;
}
@@ -112,14 +113,13 @@ Test_Task::svc (void)
ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, lock_, -1);
ACE_ERROR_RETURN ((LM_ERROR,
- "Test_Task: error %p!\n",
- "notifying reactor"),
+ ACE_TEXT ("Test_Task: error %p!\n"),
+ ACE_TEXT ("notifying reactor")),
0);
}
}
- ACE_DEBUG ((LM_DEBUG,
- " (%t) returning from svc ()\n"));
+ ACE_DEBUG ((LM_DEBUG, ACE_TEXT (" (%t) returning from svc ()\n")));
return 0;
}
@@ -133,7 +133,7 @@ Test_Task::handle_input (ACE_HANDLE)
ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, lock_, -1);
Test_Task::done_cnt_++;
ACE_DEBUG ((LM_DEBUG,
- " (%t) Test_Task: handle_input! done_cnt_ = %d.\n",
+ ACE_TEXT (" (%t) Test_Task: handle_input done_cnt_ = %d.\n"),
Test_Task::done_cnt_));
}
@@ -151,9 +151,8 @@ dispatch (void *arg)
ACE_LOG_MSG->msg_ostream (out_stream);
}
- ACE_DEBUG ((LM_DEBUG,
- " (%t) Dispatcher Thread started!\n"));
- ACE_Reactor *r = ACE_reinterpret_cast (ACE_Reactor *, arg);
+ ACE_DEBUG ((LM_DEBUG, ACE_TEXT (" (%t) Dispatcher Thread started!\n")));
+ ACE_Reactor *r = reinterpret_cast <ACE_Reactor *> (arg);
int result;
r->owner (ACE_OS::thr_self ());
@@ -164,7 +163,7 @@ dispatch (void *arg)
if (result <= 0)
ACE_DEBUG ((LM_DEBUG,
- "Dispatch: handle_events (): %d",
+ ACE_TEXT ("Dispatch: handle_events (): %d"),
result));
}
@@ -183,10 +182,15 @@ ACE_TMAIN (int argc, ACE_TCHAR **)
if (argc > 1)
{
// Send output to file.
+#if !defined (ACE_LACKS_IOSTREAM_TOTALLY)
ACE_NEW_RETURN (out_stream,
ofstream ("test_task_three.out",
ios::trunc|ios::out),
-1);
+#else
+ if ((out_stream = ACE_OS::fopen ("test_task_three.out", "w")) == NULL)
+ return -1;
+#endif
ACE_LOG_MSG->set_flags (ACE_Log_Msg::OSTREAM);
ACE_LOG_MSG->msg_ostream (out_stream);
}
@@ -223,20 +227,27 @@ ACE_TMAIN (int argc, ACE_TCHAR **)
if (errno == ETIME)
{
ACE_DEBUG ((LM_DEBUG,
- "no activity within 2 seconds, shutting down\n"));
+ ACE_TEXT ("no activity within 2 seconds, shutting down\n")));
break;
}
else
ACE_ERROR ((LM_ERROR,
- "%p error handling events\n",
- "main"));
+ ACE_TEXT ("%p error handling events\n"),
+ ACE_TEXT ("main")));
}
}
if (argc > 1)
{
+#if !defined (ACE_LACKS_IOSTREAM_TOTALLY)
*out_stream << flush;
- out_stream->close ();
+ delete out_stream;
+#else
+ ACE_OS::fflush(out_stream);
+ ACE_OS::fclose(out_stream);
+#endif
+ ACE_LOG_MSG->clr_flags (ACE_Log_Msg::OSTREAM);
+ ACE_LOG_MSG->msg_ostream (0);
}
// Bail out here so that we don't call the destructors for the tasks..
@@ -251,7 +262,7 @@ int
ACE_TMAIN (int, ACE_TCHAR *[])
{
ACE_ERROR ((LM_ERROR,
- "threads not supported on this platform\n"));
+ ACE_TEXT ("threads not supported on this platform\n")));
return 0;
}
#endif /* ACE_HAS_THREADS */