summaryrefslogtreecommitdiff
path: root/ace/Service_Repository.cpp
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-04-23 04:43:59 +0000
commita7c03cabf931b077d70c6f80ec02c7728a429f49 (patch)
tree61d38d262d43ac77fc2ad94c9e7e850cd5607622 /ace/Service_Repository.cpp
parent2aa7b10780ad7c670f588dce4ec341351a0646aa (diff)
downloadATCD-a7c03cabf931b077d70c6f80ec02c7728a429f49.tar.gz
ChangeLogTag:Sat Apr 22 20:53:11 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/Service_Repository.cpp')
-rw-r--r--ace/Service_Repository.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/ace/Service_Repository.cpp b/ace/Service_Repository.cpp
index 0af3b415fa1..fe2a3db9c01 100644
--- a/ace/Service_Repository.cpp
+++ b/ace/Service_Repository.cpp
@@ -113,8 +113,8 @@ ACE_Service_Repository::ACE_Service_Repository (int size)
if (this->open (size) == -1)
ACE_ERROR ((LM_ERROR,
- ASYS_TEXT ("%p\n"),
- ASYS_TEXT ("ACE_Service_Repository")));
+ ACE_TEXT ("%p\n"),
+ ACE_TEXT ("ACE_Service_Repository")));
}
// Finalize (call <fini> and possibly delete) all the services.
@@ -138,7 +138,7 @@ ACE_Service_Repository::fini (void)
{
if (ACE::debug ())
ACE_DEBUG ((LM_DEBUG,
- ASYS_TEXT ("finalizing %s\n"),
+ ACE_TEXT ("finalizing %s\n"),
this->service_vector_[i]->name ()));
ACE_Service_Type *s =
ACE_const_cast (ACE_Service_Type *,
@@ -195,7 +195,7 @@ ACE_Service_Repository::~ACE_Service_Repository (void)
// services a -2 is returned. Must be called with locks held.
int
-ACE_Service_Repository::find_i (const ASYS_TCHAR name[],
+ACE_Service_Repository::find_i (const ACE_TCHAR name[],
const ACE_Service_Type **srp,
int ignore_suspended)
{
@@ -228,7 +228,7 @@ ACE_Service_Repository::find_i (const ASYS_TCHAR name[],
}
int
-ACE_Service_Repository::find (const ASYS_TCHAR name[],
+ACE_Service_Repository::find (const ACE_TCHAR name[],
const ACE_Service_Type **srp,
int ignore_suspended)
{
@@ -281,7 +281,7 @@ ACE_Service_Repository::insert (const ACE_Service_Type *sr)
// Re-resume a service that was previously suspended.
int
-ACE_Service_Repository::resume (const ASYS_TCHAR name[],
+ACE_Service_Repository::resume (const ACE_TCHAR name[],
const ACE_Service_Type **srp)
{
ACE_TRACE ("ACE_Service_Repository::resume");
@@ -300,7 +300,7 @@ ACE_Service_Repository::resume (const ASYS_TCHAR name[],
// most circumstances by other portions of the ACE_Service_Repository.
int
-ACE_Service_Repository::suspend (const ASYS_TCHAR name[],
+ACE_Service_Repository::suspend (const ACE_TCHAR name[],
const ACE_Service_Type **srp)
{
ACE_TRACE ("ACE_Service_Repository::suspend");
@@ -321,7 +321,7 @@ ACE_Service_Repository::suspend (const ASYS_TCHAR name[],
// the array and decrement the <current_size> by 1.
int
-ACE_Service_Repository::remove (const ASYS_TCHAR name[])
+ACE_Service_Repository::remove (const ACE_TCHAR name[])
{
ACE_TRACE ("ACE_Service_Repository::remove");
ACE_MT (ACE_GUARD_RETURN (ACE_Thread_Mutex, ace_mon, this->lock_, -1));