summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/Concurrency_Service
diff options
context:
space:
mode:
authorspark <spark@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-03-24 20:06:12 +0000
committerspark <spark@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-03-24 20:06:12 +0000
commit75e44c6d0b8cfe480c6cf2337e5dd9653cb59646 (patch)
tree9f7a61d27bd8a1aa91661c94fca4593d89857c4d /TAO/orbsvcs/Concurrency_Service
parent9c2416be108d09ce4bef595c48af8c45ffc3da95 (diff)
downloadATCD-75e44c6d0b8cfe480c6cf2337e5dd9653cb59646.tar.gz
ChangeLogTag: Sun Mar 24 13:39:00 2002 Si Mong Park <spark@ociweb.com>
Diffstat (limited to 'TAO/orbsvcs/Concurrency_Service')
-rw-r--r--TAO/orbsvcs/Concurrency_Service/Concurrency_Service.cpp56
-rw-r--r--TAO/orbsvcs/Concurrency_Service/Concurrency_Service.h12
-rw-r--r--TAO/orbsvcs/Concurrency_Service/Concurrency_Service.vcp1244
3 files changed, 1276 insertions, 36 deletions
diff --git a/TAO/orbsvcs/Concurrency_Service/Concurrency_Service.cpp b/TAO/orbsvcs/Concurrency_Service/Concurrency_Service.cpp
index 89c26c4bd66..a9799dc51e7 100644
--- a/TAO/orbsvcs/Concurrency_Service/Concurrency_Service.cpp
+++ b/TAO/orbsvcs/Concurrency_Service/Concurrency_Service.cpp
@@ -18,6 +18,7 @@
#include "Concurrency_Service.h"
+#include "ace/Argv_Type_Converter.h"
#include "tao/debug.h"
ACE_RCSID(Concurrency_Service, Concurrency_Service, "$Id$")
@@ -29,27 +30,27 @@ Concurrency_Service::Concurrency_Service (void)
ior_output_file_ (0)
{
ACE_DEBUG ((LM_DEBUG,
- "Concurrency_Service::Concurrency_Service (void)\n"));
+ ACE_LIB_TEXT("Concurrency_Service::Concurrency_Service (void)\n")));
}
// Constructor taking command-line arguments.
Concurrency_Service::Concurrency_Service (int argc,
- char** argv
+ ACE_TCHAR** argv
ACE_ENV_ARG_DECL)
{
ACE_DEBUG ((LM_DEBUG,
- "Concurrency_Service::Concurrency_Service (...)\n"));
+ ACE_LIB_TEXT("Concurrency_Service::Concurrency_Service (...)\n")));
this->init (argc, argv ACE_ENV_ARG_PARAMETER);
}
int
-Concurrency_Service::parse_args (void)
+Concurrency_Service::parse_args (int argc, ACE_TCHAR** argv)
{
ACE_DEBUG ((LM_DEBUG,
- "Concurrency_Service::parse_args\n"));
+ ACE_LIB_TEXT("Concurrency_Service::parse_args\n")));
- ACE_Get_Opt get_opts (argc_, argv_, "do:s");
+ ACE_Get_Opt get_opts (argc, argv, ACE_LIB_TEXT("do:s"));
int c;
while ((c = get_opts ()) != -1)
@@ -59,10 +60,10 @@ Concurrency_Service::parse_args (void)
TAO_debug_level++;
break;
case 'o': // output the IOR to a file
- this->ior_output_file_ = ACE_OS::fopen (get_opts.opt_arg (), "w");
+ this->ior_output_file_ = ACE_OS::fopen (get_opts.optarg, ACE_LIB_TEXT("w"));
if (this->ior_output_file_ == 0)
ACE_ERROR_RETURN ((LM_ERROR,
- "Unable to open %s for writing: %p\n",
+ ACE_LIB_TEXT("Unable to open %s for writing: %p\n"),
get_opts.opt_arg ()), -1);
break;
case 's':
@@ -70,11 +71,11 @@ Concurrency_Service::parse_args (void)
break;
default:
ACE_ERROR_RETURN ((LM_ERROR,
- "usage: %s"
- " [-d]"
- " [-o] <ior_output_file>"
- "\n",
- argv_[0]),
+ ACE_LIB_TEXT("usage: %s")
+ ACE_LIB_TEXT(" [-d]")
+ ACE_LIB_TEXT(" [-o] <ior_output_file>")
+ ACE_LIB_TEXT("\n"),
+ argv[0]),
1);
}
// Indicates sucessfull persing of command line.
@@ -85,34 +86,35 @@ Concurrency_Service::parse_args (void)
int
Concurrency_Service::init (int argc,
- char **argv
+ ACE_TCHAR **argv
ACE_ENV_ARG_DECL)
{
ACE_DEBUG ((LM_DEBUG,
"Concurrency_Service::init\n"));
- if (this->orb_manager_.init_child_poa (argc,
- argv,
- "child_poa"
- ACE_ENV_ARG_PARAMETER) == -1)
+
+ // Copy command line parameter.
+ ACE_Argv_Type_Converter command_line(argc, argv);
+
+ if (this->orb_manager_.init_child_poa (command_line.get_argc(),
+ command_line.get_ASCII_argv(),
+ "child_poa"
+ ACE_ENV_ARG_PARAMETER) == -1)
ACE_ERROR_RETURN ((LM_ERROR,
- "%p\n",
- "init_child_poa"),
+ ACE_LIB_TEXT("%p\n"),
+ ACE_LIB_TEXT("init_child_poa")),
-1);
ACE_CHECK_RETURN (-1);
- this->argc_ = argc;
- this->argv_ = argv;
-
- if (this->parse_args ()!=0)
+ if (this->parse_args (command_line.get_argc(), command_line.get_TCHAR_argv())!=0)
ACE_ERROR_RETURN ((LM_ERROR,
- "Could not parse command line\n"),
+ ACE_LIB_TEXT("Could not parse command line\n")),
-1);
CORBA::String_var str =
this->orb_manager_.activate (this->my_concurrency_server_.GetLockSetFactory ()
ACE_ENV_ARG_PARAMETER);
ACE_DEBUG ((LM_DEBUG,
"The IOR is: <%s>\n",
- str.in ()));
+ ACE_TEXT_CHAR_TO_TCHAR(str.in ())));
if (this->ior_output_file_)
{
@@ -189,7 +191,7 @@ Concurrency_Service::~Concurrency_Service (void)
}
int
-main (int argc, char ** argv)
+ACE_TMAIN (int argc, ACE_TCHAR ** argv)
{
Concurrency_Service concurrency_service;
diff --git a/TAO/orbsvcs/Concurrency_Service/Concurrency_Service.h b/TAO/orbsvcs/Concurrency_Service/Concurrency_Service.h
index 05b037b7cd8..18a728b7e86 100644
--- a/TAO/orbsvcs/Concurrency_Service/Concurrency_Service.h
+++ b/TAO/orbsvcs/Concurrency_Service/Concurrency_Service.h
@@ -46,7 +46,7 @@ public:
// Default Constructor.
Concurrency_Service (int argc,
- char **argv
+ ACE_TCHAR **argv
ACE_ENV_ARG_DECL);
// Constructor taking the command-line arguments.
@@ -54,7 +54,7 @@ public:
// Destructor.
int init (int argc,
- char **argv
+ ACE_TCHAR **argv
ACE_ENV_ARG_DECL);
// Initialize the Concurrency Service with the arguments.
@@ -62,7 +62,7 @@ public:
// Run the Concurrency_Service.
private:
- int parse_args (void);
+ int parse_args (int argc, ACE_TCHAR** argv);
// Parses the commandline arguments.
int init_naming_service (ACE_ENV_SINGLE_ARG_DECL);
@@ -95,12 +95,6 @@ private:
CosNaming::NamingContext_var naming_context_;
// Naming context for the naming service.
-
- int argc_;
- // Number of commandline arguments.
-
- char **argv_;
- // Commandline arguments.
};
#endif /* _CONCURRENCY_SERVICE_H */
diff --git a/TAO/orbsvcs/Concurrency_Service/Concurrency_Service.vcp b/TAO/orbsvcs/Concurrency_Service/Concurrency_Service.vcp
new file mode 100644
index 00000000000..f3f82ab3e56
--- /dev/null
+++ b/TAO/orbsvcs/Concurrency_Service/Concurrency_Service.vcp
@@ -0,0 +1,1244 @@
+# Microsoft eMbedded Visual Tools Project File - Name="Concurrency_Service" - Package Owner=<4>
+# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (WCE x86) Application" 0x8301
+# TARGTYPE "Win32 (WCE ARM) Application" 0x8501
+
+CFG=Concurrency_Service - Win32 (WCE ARM) Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "Concurrency_Service.vcn".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "Concurrency_Service.vcn" CFG="Concurrency_Service - Win32 (WCE ARM) Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "Concurrency_Service - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Application")
+!MESSAGE "Concurrency_Service - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Application")
+!MESSAGE "Concurrency_Service - Win32 (WCE x86) Release" (based on "Win32 (WCE x86) Application")
+!MESSAGE "Concurrency_Service - Win32 (WCE x86) Debug" (based on "Win32 (WCE x86) Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+# PROP ATL_Project 2
+
+!IF "$(CFG)" == "Concurrency_Service - Win32 (WCE ARM) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "ARMRel"
+# PROP BASE Intermediate_Dir "ARMRel"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "../../LIB/Release/ARM"
+# PROP Intermediate_Dir "Release/ARM"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /YX /Oxs /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /I "$(ACE_ROOT)" /I "$(TAO_ROOT)" /I "$(TAO_ROOT)/orbsvcs" /D "ARM" /D "_ARM_" /D "NDEBUG" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D TAO_ORBSVCS_HAS_DLL=1 /YX /Oxs /M$(CECrtMT) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib aygshell.lib TAO_CosConcurrency.lib TAO_CosNaming.lib TAO_IORTable.lib TAO_PortableServer.lib TAO.lib ace.lib ace_os.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /out:"../../../bin/Release/ARM/Concurrency_Service.exe" /libpath:"../../LIB/Release/ARM" /libpath:"../../../LIB/Release/ARM" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "Concurrency_Service - Win32 (WCE ARM) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "ARMDbg"
+# PROP BASE Intermediate_Dir "ARMDbg"
+# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "../../LIB/Debug/ARM"
+# PROP Intermediate_Dir "Debug/ARM"
+# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
+CPP=clarm.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /Zi /Od /I "$(ACE_ROOT)" /I "$(TAO_ROOT)" /I "$(TAO_ROOT)/orbsvcs" /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D TAO_ORBSVCS_HAS_DLL=1 /YX /M$(CECrtMTDebug) /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+# ADD LINK32 commctrl.lib coredll.lib aygshell.lib TAO_CosConcurrencyd.lib TAO_CosNamingd.lib TAO_IORTabled.lib TAO_PortableServerd.lib TAOd.lib aced.lib ace_osd.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /out:"../../../bin/Debug/ARM/Concurrency_Service.exe" /libpath:"../../LIB/Debug/ARM" /libpath:"../../../LIB/Debug/ARM" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
+
+!ELSEIF "$(CFG)" == "Concurrency_Service - Win32 (WCE x86) Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "X86Rel"
+# PROP BASE Intermediate_Dir "X86Rel"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "../../LIB/Release/X86EM"
+# PROP Intermediate_Dir "Release/X86EM"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /YX /Gs8192 /GF /Oxs /c
+# ADD CPP /nologo /W3 /I "$(ACE_ROOT)" /I "$(TAO_ROOT)" /I "$(TAO_ROOT)/orbsvcs" /D "_i386_" /D "i_386_" /D "_X86_" /D "x86" /D "NDEBUG" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D TAO_ORBSVCS_HAS_DLL=1 /YX /Gs8192 /GF /Oxs /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib TAO_CosConcurrency.lib TAO_CosNaming.lib TAO_IORTable.lib TAO_PortableServer.lib TAO.lib ace.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"../../bin/Debug/X86EM/Concurrency_Service.exe" /libpath:"../../LIB/Release/X86EM" /libpath:"../../../LIB/Release/X86EM" /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ELSEIF "$(CFG)" == "Concurrency_Service - Win32 (WCE x86) Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "X86Dbg"
+# PROP BASE Intermediate_Dir "X86Dbg"
+# PROP BASE CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "../../LIB/Debug/X86EM"
+# PROP Intermediate_Dir "Debug/X86EM"
+# PROP CPU_ID "{D6518FF3-710F-11D3-99F2-00105A0DF099}"
+# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
+# PROP Ignore_Export_Lib 0
+# PROP Target_Dir ""
+RSC=rc.exe
+# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "_i386_" /r
+CPP=cl.exe
+# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "_i386_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "i_386_" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /Zi /Od /I "$(ACE_ROOT)" /I "$(TAO_ROOT)" /I "$(TAO_ROOT)/orbsvcs" /D "DEBUG" /D "_i386_" /D "i_386_" /D "_X86_" /D "x86" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D TAO_ORBSVCS_HAS_DLL=1 /FR /YX /Gs8192 /GF /c
+MTL=midl.exe
+# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /subsystem:$(CESubsystem) /MACHINE:IX86
+# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) aygshell.lib TAO_CosConcurrencyd.lib TAO_CosNamingd.lib TAO_IORTabled.lib TAO_PortableServerd.lib TAOd.lib aced.lib ace_osd.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /out:"../../../bin/Debug/X86EM/Concurrency_Service.exe" /libpath:"../../LIB/Debug/X86EM" /libpath:"../../../LIB/Debug/X86EM" /subsystem:$(CESubsystem) /MACHINE:IX86
+
+!ENDIF
+
+# Begin Target
+
+# Name "Concurrency_Service - Win32 (WCE ARM) Release"
+# Name "Concurrency_Service - Win32 (WCE ARM) Debug"
+# Name "Concurrency_Service - Win32 (WCE x86) Release"
+# Name "Concurrency_Service - Win32 (WCE x86) Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Source File
+
+SOURCE=.\Concurrency_Service.cpp
+
+!IF "$(CFG)" == "Concurrency_Service - Win32 (WCE ARM) Release"
+
+DEP_CPP_CONCU=\
+ ".\Concurrency_Service.h"\
+
+NODEP_CPP_CONCU=\
+ "..\..\..\..\..\..\orbsvcs\Concurrency\CC_LockSetFactory.h"\
+ "..\..\..\..\..\..\orbsvcs\Concurrency\concurrency_export.h"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlC.h"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlC.i"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlS.i"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlS_T.cpp"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlS_T.h"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlS_T.i"\
+ "..\..\..\..\..\..\orbsvcs\CosNamingC.i"\
+ "..\..\..\..\..\..\orbsvcs\CosNamingS.i"\
+ "..\..\..\..\..\..\orbsvcs\CosNamingS_T.cpp"\
+ "..\..\..\..\..\..\orbsvcs\CosNamingS_T.h"\
+ "..\..\..\..\..\..\orbsvcs\CosNamingS_T.i"\
+ "..\..\..\..\..\..\orbsvcs\Naming\Naming_Context_Interface.h"\
+ "..\..\..\..\..\..\orbsvcs\Naming\naming_export.h"\
+ "..\tao\any.h"\
+ "..\tao\corbafwd.h"\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orbconf.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TAO_Export.h"\
+ "..\tao\TimeBaseC.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\cdr.h"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\debug.h"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.h"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\orb.h"\
+ ".\ao\ORB.i"\
+ ".\ao\PolicyC.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\sequence.h"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.h"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\rbsvcs\Concurrency\Concurrency_Utils.h"\
+ ".\rbsvcs\CosConcurrencyControlS.h"\
+ ".\rbsvcs\CosNamingC.h"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\svc_utils_export.h"\
+
+
+!ELSEIF "$(CFG)" == "Concurrency_Service - Win32 (WCE ARM) Debug"
+
+DEP_CPP_CONCU=\
+ ".\Concurrency_Service.h"\
+
+NODEP_CPP_CONCU=\
+ "..\..\..\..\..\..\orbsvcs\Concurrency\CC_LockSetFactory.h"\
+ "..\..\..\..\..\..\orbsvcs\Concurrency\concurrency_export.h"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlC.h"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlC.i"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlS.i"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlS_T.cpp"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlS_T.h"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlS_T.i"\
+ "..\..\..\..\..\..\orbsvcs\CosNamingC.i"\
+ "..\..\..\..\..\..\orbsvcs\CosNamingS.i"\
+ "..\..\..\..\..\..\orbsvcs\CosNamingS_T.cpp"\
+ "..\..\..\..\..\..\orbsvcs\CosNamingS_T.h"\
+ "..\..\..\..\..\..\orbsvcs\CosNamingS_T.i"\
+ "..\..\..\..\..\..\orbsvcs\Naming\Naming_Context_Interface.h"\
+ "..\..\..\..\..\..\orbsvcs\Naming\naming_export.h"\
+ "..\tao\any.h"\
+ "..\tao\corbafwd.h"\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orbconf.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TAO_Export.h"\
+ "..\tao\TimeBaseC.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\cdr.h"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\debug.h"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.h"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\orb.h"\
+ ".\ao\ORB.i"\
+ ".\ao\PolicyC.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\sequence.h"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.h"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\rbsvcs\Concurrency\Concurrency_Utils.h"\
+ ".\rbsvcs\CosConcurrencyControlS.h"\
+ ".\rbsvcs\CosNamingC.h"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\svc_utils_export.h"\
+
+
+!ELSEIF "$(CFG)" == "Concurrency_Service - Win32 (WCE x86) Release"
+
+DEP_CPP_CONCU=\
+ ".\Concurrency_Service.h"\
+
+NODEP_CPP_CONCU=\
+ "..\..\..\..\..\..\orbsvcs\Concurrency\CC_LockSetFactory.h"\
+ "..\..\..\..\..\..\orbsvcs\Concurrency\concurrency_export.h"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlC.h"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlC.i"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlS.i"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlS_T.cpp"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlS_T.h"\
+ "..\..\..\..\..\..\orbsvcs\CosConcurrencyControlS_T.i"\
+ "..\..\..\..\..\..\orbsvcs\CosNamingC.i"\
+ "..\..\..\..\..\..\orbsvcs\CosNamingS.i"\
+ "..\..\..\..\..\..\orbsvcs\CosNamingS_T.cpp"\
+ "..\..\..\..\..\..\orbsvcs\CosNamingS_T.h"\
+ "..\..\..\..\..\..\orbsvcs\CosNamingS_T.i"\
+ "..\..\..\..\..\..\orbsvcs\Naming\Naming_Context_Interface.h"\
+ "..\..\..\..\..\..\orbsvcs\Naming\naming_export.h"\
+ "..\tao\any.h"\
+ "..\tao\corbafwd.h"\
+ "..\tao\CurrentC.h"\
+ "..\tao\DomainC.i"\
+ "..\tao\DynamicC.h"\
+ "..\tao\DynamicC.i"\
+ "..\tao\Encodable.h"\
+ "..\tao\IOPC.h"\
+ "..\tao\IOPC.i"\
+ "..\tao\LocalObject.i"\
+ "..\tao\MessagingC.h"\
+ "..\tao\MessagingC.i"\
+ "..\tao\object.h"\
+ "..\tao\OctetSeqC.h"\
+ "..\tao\OctetSeqC.i"\
+ "..\tao\orbconf.h"\
+ "..\tao\PollableC.h"\
+ "..\tao\PollableC.i"\
+ "..\tao\PortableInterceptorC.i"\
+ "..\tao\PortableServer\Collocated_Object.i"\
+ "..\tao\PortableServer\portableserver_export.h"\
+ "..\tao\PortableServer\PortableServerC.h"\
+ "..\tao\PortableServer\PortableServerC.i"\
+ "..\tao\PortableServer\Servant_Base.h"\
+ "..\tao\PortableServer\Servant_Base.i"\
+ "..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\tao\SmartProxies\Smart_Proxies.inl"\
+ "..\tao\SmartProxies\smartproxies_export.h"\
+ "..\tao\StringSeqC.i"\
+ "..\tao\TAO_Export.h"\
+ "..\tao\TimeBaseC.h"\
+ "..\tao\TimeBaseC.i"\
+ "..\tao\ValueBase.h"\
+ "..\tao\ValueFactory.h"\
+ ".\ao\Abstract_Servant_Base.h"\
+ ".\ao\Any.i"\
+ ".\ao\BoundsC.h"\
+ ".\ao\BoundsC.i"\
+ ".\ao\cdr.h"\
+ ".\ao\CDR.i"\
+ ".\ao\corba.h"\
+ ".\ao\CORBA_String.h"\
+ ".\ao\CORBA_String.inl"\
+ ".\ao\corbafwd.i"\
+ ".\ao\CurrentC.i"\
+ ".\ao\debug.h"\
+ ".\ao\DomainC.h"\
+ ".\ao\Environment.h"\
+ ".\ao\Environment.i"\
+ ".\ao\Exception.h"\
+ ".\ao\Exception.i"\
+ ".\ao\LocalObject.h"\
+ ".\ao\Managed_Types.h"\
+ ".\ao\Managed_Types.i"\
+ ".\ao\nvlist.h"\
+ ".\ao\NVList.i"\
+ ".\ao\Object.i"\
+ ".\ao\Object_KeyC.h"\
+ ".\ao\Object_KeyC.i"\
+ ".\ao\Object_Proxy_Broker.h"\
+ ".\ao\Object_Proxy_Impl.h"\
+ ".\ao\ObjectIDList.h"\
+ ".\ao\ObjectIDList.i"\
+ ".\ao\orb.h"\
+ ".\ao\ORB.i"\
+ ".\ao\PolicyC.h"\
+ ".\ao\PolicyC.i"\
+ ".\ao\PortableInterceptorC.h"\
+ ".\ao\PortableServer\Collocated_Object.h"\
+ ".\ao\PortableServer\Direct_Object_Proxy_Impl.h"\
+ ".\ao\PortableServer\ORB_Manager.h"\
+ ".\ao\PortableServer\PortableServer.h"\
+ ".\ao\PortableServer\ThruPOA_Object_Proxy_Impl.h"\
+ ".\ao\Principal.h"\
+ ".\ao\Principal.i"\
+ ".\ao\sequence.h"\
+ ".\ao\Sequence.i"\
+ ".\ao\Sequence_T.cpp"\
+ ".\ao\Sequence_T.h"\
+ ".\ao\Sequence_T.i"\
+ ".\ao\Services.h"\
+ ".\ao\Services.i"\
+ ".\AO\SmartProxies\Smart_Proxies.h"\
+ ".\ao\StringSeqC.h"\
+ ".\ao\TAO_Singleton.cpp"\
+ ".\ao\TAO_Singleton.h"\
+ ".\ao\TAO_Singleton.inl"\
+ ".\ao\TAO_Singleton_Manager.h"\
+ ".\ao\TAO_Singleton_Manager.inl"\
+ ".\ao\try_macros.h"\
+ ".\ao\typecode.h"\
+ ".\ao\Typecode.i"\
+ ".\ao\ValueBase.i"\
+ ".\ao\ValueFactory.i"\
+ ".\ao\varbase.h"\
+ ".\ao\WrongTransactionC.h"\
+ ".\ce\ACE.h"\
+ ".\ce\ACE.i"\
+ ".\ce\ACE_export.h"\
+ ".\ce\ace_wchar.h"\
+ ".\ce\ace_wchar.inl"\
+ ".\ce\Addr.h"\
+ ".\ce\Addr.i"\
+ ".\ce\Atomic_Op.i"\
+ ".\ce\Base_Thread_Adapter.h"\
+ ".\ce\Base_Thread_Adapter.inl"\
+ ".\ce\Basic_Types.h"\
+ ".\ce\Basic_Types.i"\
+ ".\ce\CDR_Base.h"\
+ ".\ce\CDR_Base.inl"\
+ ".\ce\CDR_Stream.h"\
+ ".\ce\CDR_Stream.i"\
+ ".\ce\config-all.h"\
+ ".\ce\config-cygwin32-common.h"\
+ ".\ce\config-cygwin32.h"\
+ ".\ce\config-g++-common.h"\
+ ".\ce\config-ghs-common.h"\
+ ".\ce\config-win32-borland.h"\
+ ".\ce\config-win32-common.h"\
+ ".\ce\config-win32-ghs.h"\
+ ".\ce\config-win32-mingw.h"\
+ ".\ce\config-win32-msvc-5.h"\
+ ".\ce\config-win32-msvc-6.h"\
+ ".\ce\config-win32-msvc-7.h"\
+ ".\ce\config-win32-msvc.h"\
+ ".\ce\config-win32-visualage.h"\
+ ".\ce\config-win32.h"\
+ ".\ce\config-WinCE.h"\
+ ".\ce\config.h"\
+ ".\ce\CORBA_macros.h"\
+ ".\ce\Event_Handler.h"\
+ ".\ce\Event_Handler.i"\
+ ".\ce\File_Lock.h"\
+ ".\ce\File_Lock.inl"\
+ ".\ce\Flag_Manip.h"\
+ ".\ce\Flag_Manip.i"\
+ ".\ce\Free_List.cpp"\
+ ".\ce\Free_List.h"\
+ ".\ce\Free_List.i"\
+ ".\ce\Get_Opt.h"\
+ ".\ce\Get_Opt.i"\
+ ".\ce\Handle_Ops.h"\
+ ".\ce\Handle_Ops.i"\
+ ".\ce\Handle_Set.h"\
+ ".\ce\Handle_Set.i"\
+ ".\ce\INET_Addr.h"\
+ ".\ce\INET_Addr.i"\
+ ".\ce\Init_ACE.h"\
+ ".\ce\Init_ACE.i"\
+ ".\ce\iosfwd.h"\
+ ".\ce\IPC_SAP.h"\
+ ".\ce\IPC_SAP.i"\
+ ".\ce\Lib_Find.h"\
+ ".\ce\Lib_Find.i"\
+ ".\ce\Log_Msg.h"\
+ ".\ce\Log_Msg_Callback.h"\
+ ".\ce\Log_Priority.h"\
+ ".\ce\Log_Record.h"\
+ ".\ce\Log_Record.i"\
+ ".\ce\Malloc.h"\
+ ".\ce\Malloc.i"\
+ ".\ce\Malloc_Allocator.h"\
+ ".\ce\Malloc_Allocator.i"\
+ ".\ce\Malloc_Base.h"\
+ ".\ce\Malloc_T.cpp"\
+ ".\ce\Malloc_T.h"\
+ ".\ce\Malloc_T.i"\
+ ".\ce\Managed_Object.cpp"\
+ ".\ce\Managed_Object.h"\
+ ".\ce\Managed_Object.i"\
+ ".\ce\Mem_Map.h"\
+ ".\ce\Mem_Map.i"\
+ ".\ce\Memory_Pool.h"\
+ ".\ce\Memory_Pool.i"\
+ ".\ce\Message_Block.h"\
+ ".\ce\Message_Block.i"\
+ ".\ce\Message_Block_T.cpp"\
+ ".\ce\Message_Block_T.h"\
+ ".\ce\Message_Block_T.i"\
+ ".\ce\Min_Max.h"\
+ ".\ce\Node.cpp"\
+ ".\ce\Node.h"\
+ ".\ce\Object_Manager.h"\
+ ".\ce\Object_Manager.i"\
+ ".\ce\OS.h"\
+ ".\ce\OS.i"\
+ ".\ce\OS_Dirent.h"\
+ ".\ce\OS_Dirent.inl"\
+ ".\ce\OS_Errno.h"\
+ ".\ce\OS_Errno.inl"\
+ ".\ce\OS_Export.h"\
+ ".\ce\OS_Log_Msg_Attributes.h"\
+ ".\ce\OS_Log_Msg_Attributes.inl"\
+ ".\ce\OS_Memory.h"\
+ ".\ce\OS_Memory.inl"\
+ ".\ce\OS_String.h"\
+ ".\ce\OS_String.inl"\
+ ".\ce\OS_TLI.h"\
+ ".\ce\OS_TLI.inl"\
+ ".\ce\post.h"\
+ ".\ce\pre.h"\
+ ".\ce\Process_Mutex.h"\
+ ".\ce\Process_Mutex.inl"\
+ ".\ce\Process_Semaphore.h"\
+ ".\ce\Process_Semaphore.inl"\
+ ".\ce\Reactor.h"\
+ ".\ce\Reactor.i"\
+ ".\ce\Reactor_Impl.h"\
+ ".\ce\RW_Process_Mutex.h"\
+ ".\ce\RW_Process_Mutex.inl"\
+ ".\ce\Signal.h"\
+ ".\ce\Signal.i"\
+ ".\ce\SOCK.h"\
+ ".\ce\SOCK.i"\
+ ".\ce\Sock_Connect.h"\
+ ".\ce\Sock_Connect.i"\
+ ".\ce\SOCK_Dgram.h"\
+ ".\ce\SOCK_Dgram.i"\
+ ".\ce\SOCK_Dgram_Mcast.h"\
+ ".\ce\SOCK_Dgram_Mcast.i"\
+ ".\ce\SString.h"\
+ ".\ce\SString.i"\
+ ".\ce\streams.h"\
+ ".\ce\SV_Semaphore_Complex.h"\
+ ".\ce\SV_Semaphore_Complex.i"\
+ ".\ce\SV_Semaphore_Simple.h"\
+ ".\ce\SV_Semaphore_Simple.i"\
+ ".\ce\svc_export.h"\
+ ".\ce\Synch.h"\
+ ".\ce\Synch.i"\
+ ".\ce\Synch_T.cpp"\
+ ".\ce\Synch_T.h"\
+ ".\ce\Synch_T.i"\
+ ".\ce\Test_and_Set.cpp"\
+ ".\ce\Test_and_Set.h"\
+ ".\ce\Test_and_Set.i"\
+ ".\ce\Thread.h"\
+ ".\ce\Thread.i"\
+ ".\ce\Thread_Adapter.h"\
+ ".\ce\Thread_Adapter.inl"\
+ ".\ce\Thread_Control.h"\
+ ".\ce\Thread_Control.inl"\
+ ".\ce\Thread_Exit.h"\
+ ".\ce\Thread_Hook.h"\
+ ".\ce\Timer_Queue.h"\
+ ".\ce\Timer_Queue_T.cpp"\
+ ".\ce\Timer_Queue_T.h"\
+ ".\ce\Timer_Queue_T.i"\
+ ".\ce\Trace.h"\
+ ".\ce\Unbounded_Queue.cpp"\
+ ".\ce\Unbounded_Queue.h"\
+ ".\ce\Unbounded_Queue.inl"\
+ ".\ce\Unbounded_Set.cpp"\
+ ".\ce\Unbounded_Set.h"\
+ ".\ce\Unbounded_Set.inl"\
+ ".\rbsvcs\Concurrency\Concurrency_Utils.h"\
+ ".\rbsvcs\CosConcurrencyControlS.h"\
+ ".\rbsvcs\CosNamingC.h"\
+ ".\rbsvcs\CosNamingS.h"\
+ ".\rbsvcs\IOR_Multicast.h"\
+ ".\rbsvcs\Naming\Naming_Utils.h"\
+ ".\rbsvcs\svc_utils_export.h"\
+
+
+!ELSEIF "$(CFG)" == "Concurrency_Service - Win32 (WCE x86) Debug"
+
+DEP_CPP_CONCU=\
+ "..\..\..\ace\ACE.h"\
+ "..\..\..\ace\ACE.i"\
+ "..\..\..\ace\ACE_export.h"\
+ "..\..\..\ace\ace_wchar.h"\
+ "..\..\..\ace\ace_wchar.inl"\
+ "..\..\..\ace\Argv_Type_Converter.h"\
+ "..\..\..\ace\Argv_Type_Converter.inl"\
+ "..\..\..\ace\Atomic_Op.i"\
+ "..\..\..\ace\Base_Thread_Adapter.h"\
+ "..\..\..\ace\Base_Thread_Adapter.inl"\
+ "..\..\..\ace\Basic_Types.h"\
+ "..\..\..\ace\Basic_Types.i"\
+ "..\..\..\ace\CDR_Base.h"\
+ "..\..\..\ace\CDR_Base.inl"\
+ "..\..\..\ace\CDR_Stream.h"\
+ "..\..\..\ace\CDR_Stream.i"\
+ "..\..\..\ace\config-all.h"\
+ "..\..\..\ace\config-cygwin32-common.h"\
+ "..\..\..\ace\config-cygwin32.h"\
+ "..\..\..\ace\config-g++-common.h"\
+ "..\..\..\ace\config-ghs-common.h"\
+ "..\..\..\ace\config-win32-borland.h"\
+ "..\..\..\ace\config-win32-common.h"\
+ "..\..\..\ace\config-win32-ghs.h"\
+ "..\..\..\ace\config-win32-mingw.h"\
+ "..\..\..\ace\config-win32-msvc-5.h"\
+ "..\..\..\ace\config-win32-msvc-6.h"\
+ "..\..\..\ace\config-win32-msvc-7.h"\
+ "..\..\..\ace\config-win32-msvc.h"\
+ "..\..\..\ace\config-win32-visualage.h"\
+ "..\..\..\ace\config-win32.h"\
+ "..\..\..\ace\config-WinCE.h"\
+ "..\..\..\ace\config.h"\
+ "..\..\..\ace\CORBA_macros.h"\
+ "..\..\..\ace\Event_Handler.h"\
+ "..\..\..\ace\Event_Handler.i"\
+ "..\..\..\ace\File_Lock.h"\
+ "..\..\..\ace\File_Lock.inl"\
+ "..\..\..\ace\Flag_Manip.h"\
+ "..\..\..\ace\Flag_Manip.i"\
+ "..\..\..\ace\Free_List.cpp"\
+ "..\..\..\ace\Free_List.h"\
+ "..\..\..\ace\Free_List.i"\
+ "..\..\..\ace\Get_Opt.h"\
+ "..\..\..\ace\Get_Opt.i"\
+ "..\..\..\ace\Handle_Ops.h"\
+ "..\..\..\ace\Handle_Ops.i"\
+ "..\..\..\ace\Init_ACE.h"\
+ "..\..\..\ace\Init_ACE.i"\
+ "..\..\..\ace\iosfwd.h"\
+ "..\..\..\ace\Lib_Find.h"\
+ "..\..\..\ace\Lib_Find.i"\
+ "..\..\..\ace\Log_Msg.h"\
+ "..\..\..\ace\Log_Msg_Callback.h"\
+ "..\..\..\ace\Log_Priority.h"\
+ "..\..\..\ace\Log_Record.h"\
+ "..\..\..\ace\Log_Record.i"\
+ "..\..\..\ace\Malloc.h"\
+ "..\..\..\ace\Malloc.i"\
+ "..\..\..\ace\Malloc_Allocator.h"\
+ "..\..\..\ace\Malloc_Allocator.i"\
+ "..\..\..\ace\Malloc_Base.h"\
+ "..\..\..\ace\Malloc_T.cpp"\
+ "..\..\..\ace\Malloc_T.h"\
+ "..\..\..\ace\Malloc_T.i"\
+ "..\..\..\ace\Managed_Object.cpp"\
+ "..\..\..\ace\Managed_Object.h"\
+ "..\..\..\ace\Managed_Object.i"\
+ "..\..\..\ace\Mem_Map.h"\
+ "..\..\..\ace\Mem_Map.i"\
+ "..\..\..\ace\Memory_Pool.h"\
+ "..\..\..\ace\Memory_Pool.i"\
+ "..\..\..\ace\Message_Block.h"\
+ "..\..\..\ace\Message_Block.i"\
+ "..\..\..\ace\Message_Block_T.cpp"\
+ "..\..\..\ace\Message_Block_T.h"\
+ "..\..\..\ace\Message_Block_T.i"\
+ "..\..\..\ace\Min_Max.h"\
+ "..\..\..\ace\Node.cpp"\
+ "..\..\..\ace\Node.h"\
+ "..\..\..\ace\Object_Manager.h"\
+ "..\..\..\ace\Object_Manager.i"\
+ "..\..\..\ace\OS.h"\
+ "..\..\..\ace\OS.i"\
+ "..\..\..\ace\OS_Dirent.h"\
+ "..\..\..\ace\OS_Dirent.inl"\
+ "..\..\..\ace\OS_Errno.h"\
+ "..\..\..\ace\OS_Errno.inl"\
+ "..\..\..\ace\OS_Export.h"\
+ "..\..\..\ace\OS_Log_Msg_Attributes.h"\
+ "..\..\..\ace\OS_Log_Msg_Attributes.inl"\
+ "..\..\..\ace\OS_Memory.h"\
+ "..\..\..\ace\OS_Memory.inl"\
+ "..\..\..\ace\OS_String.h"\
+ "..\..\..\ace\OS_String.inl"\
+ "..\..\..\ace\OS_TLI.h"\
+ "..\..\..\ace\OS_TLI.inl"\
+ "..\..\..\ace\post.h"\
+ "..\..\..\ace\pre.h"\
+ "..\..\..\ace\Process_Mutex.h"\
+ "..\..\..\ace\Process_Mutex.inl"\
+ "..\..\..\ace\Process_Semaphore.h"\
+ "..\..\..\ace\Process_Semaphore.inl"\
+ "..\..\..\ace\RW_Process_Mutex.h"\
+ "..\..\..\ace\RW_Process_Mutex.inl"\
+ "..\..\..\ace\Signal.h"\
+ "..\..\..\ace\Signal.i"\
+ "..\..\..\ace\Sock_Connect.h"\
+ "..\..\..\ace\Sock_Connect.i"\
+ "..\..\..\ace\SString.h"\
+ "..\..\..\ace\SString.i"\
+ "..\..\..\ace\streams.h"\
+ "..\..\..\ace\SV_Semaphore_Complex.h"\
+ "..\..\..\ace\SV_Semaphore_Complex.i"\
+ "..\..\..\ace\SV_Semaphore_Simple.h"\
+ "..\..\..\ace\SV_Semaphore_Simple.i"\
+ "..\..\..\ace\svc_export.h"\
+ "..\..\..\ace\Synch.h"\
+ "..\..\..\ace\Synch.i"\
+ "..\..\..\ace\Synch_T.cpp"\
+ "..\..\..\ace\Synch_T.h"\
+ "..\..\..\ace\Synch_T.i"\
+ "..\..\..\ace\Test_and_Set.cpp"\
+ "..\..\..\ace\Test_and_Set.h"\
+ "..\..\..\ace\Test_and_Set.i"\
+ "..\..\..\ace\Thread.h"\
+ "..\..\..\ace\Thread.i"\
+ "..\..\..\ace\Thread_Adapter.h"\
+ "..\..\..\ace\Thread_Adapter.inl"\
+ "..\..\..\ace\Thread_Control.h"\
+ "..\..\..\ace\Thread_Control.inl"\
+ "..\..\..\ace\Thread_Exit.h"\
+ "..\..\..\ace\Thread_Hook.h"\
+ "..\..\..\ace\Trace.h"\
+ "..\..\..\ace\Unbounded_Set.cpp"\
+ "..\..\..\ace\Unbounded_Set.h"\
+ "..\..\..\ace\Unbounded_Set.inl"\
+ "..\..\tao\any.h"\
+ "..\..\tao\Any.i"\
+ "..\..\tao\cdr.h"\
+ "..\..\tao\CDR.i"\
+ "..\..\tao\CORBA_String.h"\
+ "..\..\tao\CORBA_String.inl"\
+ "..\..\tao\corbafwd.h"\
+ "..\..\tao\corbafwd.i"\
+ "..\..\tao\CurrentC.h"\
+ "..\..\tao\CurrentC.i"\
+ "..\..\tao\debug.h"\
+ "..\..\tao\Encodable.h"\
+ "..\..\tao\Environment.h"\
+ "..\..\tao\Environment.i"\
+ "..\..\tao\Exception.h"\
+ "..\..\tao\Exception.i"\
+ "..\..\tao\Managed_Types.h"\
+ "..\..\tao\Managed_Types.i"\
+ "..\..\tao\object.h"\
+ "..\..\tao\Object.i"\
+ "..\..\tao\Object_Proxy_Broker.h"\
+ "..\..\tao\Object_Proxy_Impl.h"\
+ "..\..\tao\orb.h"\
+ "..\..\tao\ORB.i"\
+ "..\..\tao\orbconf.h"\
+ "..\..\tao\PolicyC.h"\
+ "..\..\tao\PolicyC.i"\
+ "..\..\tao\PortableServer\ORB_Manager.h"\
+ "..\..\tao\PortableServer\PortableServer.h"\
+ "..\..\tao\PortableServer\portableserver_export.h"\
+ "..\..\tao\PortableServer\PortableServerC.h"\
+ "..\..\tao\PortableServer\PortableServerC.i"\
+ "..\..\tao\Remote_Object_Proxy_Impl.h"\
+ "..\..\tao\sequence.h"\
+ "..\..\tao\Sequence.i"\
+ "..\..\tao\Sequence_T.cpp"\
+ "..\..\tao\Sequence_T.h"\
+ "..\..\tao\Sequence_T.i"\
+ "..\..\tao\Services.h"\
+ "..\..\tao\Services.i"\
+ "..\..\tao\TAO_Export.h"\
+ "..\..\tao\try_macros.h"\
+ "..\..\tao\typecode.h"\
+ "..\..\tao\Typecode.i"\
+ "..\..\tao\varbase.h"\
+ ".\Concurrency_Service.h"\
+
+NODEP_CPP_CONCU=\
+ ".\orbsvcs\Concurrency\Concurrency_Utils.h"\
+ ".\orbsvcs\Naming\Naming_Utils.h"\
+
+
+!ENDIF
+
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Source File
+
+SOURCE=.\Concurrency_Service.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project