Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorFelix Burton2012-10-17 18:19:05 +0000
committerFelix Burton2012-10-18 19:20:55 +0000
commit6d544dd1bacd6ce6b0dee18bfb801256c5171ddc (patch)
tree8c7e218274a533fb70c19ea7ae71342a9a4a829f /server
parent706998cddc5c9b6427af62728ee65288944b3370 (diff)
downloadorg.eclipse.tcf.agent-6d544dd1bacd6ce6b0dee18bfb801256c5171ddc.tar.gz
org.eclipse.tcf.agent-6d544dd1bacd6ce6b0dee18bfb801256c5171ddc.tar.xz
org.eclipse.tcf.agent-6d544dd1bacd6ce6b0dee18bfb801256c5171ddc.zip
TCF Agent: add shutdown manager to enable controlled shutdown of subsystems
Diffstat (limited to 'server')
-rw-r--r--server/server.vcproj8
-rw-r--r--server/server.vcxproj2
-rw-r--r--server/server.vcxproj.filters6
3 files changed, 16 insertions, 0 deletions
diff --git a/server/server.vcproj b/server/server.vcproj
index a02b098b..a2933df7 100644
--- a/server/server.vcproj
+++ b/server/server.vcproj
@@ -719,6 +719,14 @@
>
</File>
<File
+ RelativePath="..\agent\tcf\framework\shutdown.c"
+ >
+ </File>
+ <File
+ RelativePath="..\agent\tcf\framework\shutdown.h"
+ >
+ </File>
+ <File
RelativePath="..\agent\tcf\framework\signames.h"
>
</File>
diff --git a/server/server.vcxproj b/server/server.vcxproj
index acf2c9d7..05e3e625 100644
--- a/server/server.vcxproj
+++ b/server/server.vcxproj
@@ -222,6 +222,7 @@
<ClCompile Include="..\agent\tcf\framework\peer.c" />
<ClCompile Include="..\agent\tcf\framework\protocol.c" />
<ClCompile Include="..\agent\tcf\framework\proxy.c" />
+ <ClCompile Include="..\agent\tcf\framework\shutdown.c" />
<ClCompile Include="..\agent\tcf\framework\streams.c" />
<ClCompile Include="..\agent\tcf\framework\trace.c" />
<ClCompile Include="..\agent\system\Windows\tcf\pthreads-win32.c" />
@@ -274,6 +275,7 @@
<ClInclude Include="..\agent\tcf\framework\plugins.h" />
<ClInclude Include="..\agent\tcf\framework\protocol.h" />
<ClInclude Include="..\agent\tcf\framework\proxy.h" />
+ <ClInclude Include="..\agent\tcf\framework\shutdown.h" />
<ClInclude Include="..\agent\tcf\framework\signames.h" />
<ClInclude Include="..\agent\tcf\framework\streams.h" />
<ClInclude Include="..\agent\tcf\framework\tcf.h" />
diff --git a/server/server.vcxproj.filters b/server/server.vcxproj.filters
index ecf02ce7..7a051b04 100644
--- a/server/server.vcxproj.filters
+++ b/server/server.vcxproj.filters
@@ -156,6 +156,9 @@
<ClCompile Include="..\agent\tcf\framework\proxy.c">
<Filter>framework</Filter>
</ClCompile>
+ <ClCompile Include="..\agent\tcf\framework\shutdown.c">
+ <Filter>framework</Filter>
+ </ClCompile>
<ClCompile Include="..\agent\tcf\framework\streams.c">
<Filter>framework</Filter>
</ClCompile>
@@ -308,6 +311,9 @@
<ClInclude Include="..\agent\tcf\framework\proxy.h">
<Filter>framework</Filter>
</ClInclude>
+ <ClInclude Include="..\agent\tcf\framework\shutdown.h">
+ <Filter>framework</Filter>
+ </ClInclude>
<ClInclude Include="..\agent\tcf\framework\signames.h">
<Filter>framework</Filter>
</ClInclude>

Back to the top