From 3f0cae3446fd30a51edafc8c73c56b95d6f10802 Mon Sep 17 00:00:00 2001 From: cherierm Date: Tue, 23 Oct 2007 09:53:15 +0000 Subject: [PATCH] This change is about the the add-on of the semaphore examples and by the implementation of the gettimeofday() functions for Windows. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4852 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- build/vc7/simgrid/all.sln | 12 + build/vc7/simgrid/libSimgrid.c | 7 - build/vc7/simgrid/libSimgrid.sln | 20 - build/vc7/simgrid/libSimgrid.vcproj | 598 ---------------------------- build/vc7/simgrid/simgrid.vcproj | 2 +- 5 files changed, 13 insertions(+), 626 deletions(-) delete mode 100644 build/vc7/simgrid/libSimgrid.c delete mode 100644 build/vc7/simgrid/libSimgrid.sln delete mode 100644 build/vc7/simgrid/libSimgrid.vcproj diff --git a/build/vc7/simgrid/all.sln b/build/vc7/simgrid/all.sln index 0af885bb17..609c478f59 100644 --- a/build/vc7/simgrid/all.sln +++ b/build/vc7/simgrid/all.sln @@ -23,6 +23,10 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sd_test", "..\examples\simd EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sd_test2", "..\examples\simdag\sd_test2\sd_test2.vcproj", "{F2CCCCB9-0342-44E1-B1E3-53E6103EC294}" EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sem_basic", "..\examples\xbt\sem_basic\sem_basic.vcproj", "{DFDB47E0-83D2-41F1-AF4B-DC5EA312A08C}" +EndProject +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sem_sched", "..\examples\xbt\sem_sched\sem_sched.vcproj", "{A95FC8DF-52C7-45FD-B7D1-D93081DE6BB1}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Win32 = Debug|Win32 @@ -73,6 +77,14 @@ Global {F2CCCCB9-0342-44E1-B1E3-53E6103EC294}.Debug|Win32.Build.0 = Debug|Win32 {F2CCCCB9-0342-44E1-B1E3-53E6103EC294}.Release|Win32.ActiveCfg = Release|Win32 {F2CCCCB9-0342-44E1-B1E3-53E6103EC294}.Release|Win32.Build.0 = Release|Win32 + {DFDB47E0-83D2-41F1-AF4B-DC5EA312A08C}.Debug|Win32.ActiveCfg = Debug|Win32 + {DFDB47E0-83D2-41F1-AF4B-DC5EA312A08C}.Debug|Win32.Build.0 = Debug|Win32 + {DFDB47E0-83D2-41F1-AF4B-DC5EA312A08C}.Release|Win32.ActiveCfg = Release|Win32 + {DFDB47E0-83D2-41F1-AF4B-DC5EA312A08C}.Release|Win32.Build.0 = Release|Win32 + {A95FC8DF-52C7-45FD-B7D1-D93081DE6BB1}.Debug|Win32.ActiveCfg = Debug|Win32 + {A95FC8DF-52C7-45FD-B7D1-D93081DE6BB1}.Debug|Win32.Build.0 = Debug|Win32 + {A95FC8DF-52C7-45FD-B7D1-D93081DE6BB1}.Release|Win32.ActiveCfg = Release|Win32 + {A95FC8DF-52C7-45FD-B7D1-D93081DE6BB1}.Release|Win32.Build.0 = Release|Win32 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/build/vc7/simgrid/libSimgrid.c b/build/vc7/simgrid/libSimgrid.c deleted file mode 100644 index c2a6fe57e0..0000000000 --- a/build/vc7/simgrid/libSimgrid.c +++ /dev/null @@ -1,7 +0,0 @@ -#include - - -int WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void* lpReserved) -{ - return 1; -} \ No newline at end of file diff --git a/build/vc7/simgrid/libSimgrid.sln b/build/vc7/simgrid/libSimgrid.sln deleted file mode 100644 index 8d6dbb9c05..0000000000 --- a/build/vc7/simgrid/libSimgrid.sln +++ /dev/null @@ -1,20 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 9.00 -# Visual Studio 2005 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libSimgrid", "libSimgrid.vcproj", "{617987DE-296D-4E0C-BD53-8D639E6FDA09}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Release|Win32 = Release|Win32 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {617987DE-296D-4E0C-BD53-8D639E6FDA09}.Debug|Win32.ActiveCfg = Debug|Win32 - {617987DE-296D-4E0C-BD53-8D639E6FDA09}.Debug|Win32.Build.0 = Debug|Win32 - {617987DE-296D-4E0C-BD53-8D639E6FDA09}.Release|Win32.ActiveCfg = Release|Win32 - {617987DE-296D-4E0C-BD53-8D639E6FDA09}.Release|Win32.Build.0 = Release|Win32 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/build/vc7/simgrid/libSimgrid.vcproj b/build/vc7/simgrid/libSimgrid.vcproj deleted file mode 100644 index 530dba5e85..0000000000 --- a/build/vc7/simgrid/libSimgrid.vcproj +++ /dev/null @@ -1,598 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/build/vc7/simgrid/simgrid.vcproj b/build/vc7/simgrid/simgrid.vcproj index d1e4d2e828..23af0b20ad 100644 --- a/build/vc7/simgrid/simgrid.vcproj +++ b/build/vc7/simgrid/simgrid.vcproj @@ -63,7 +63,7 @@ SuppressStartupBanner="true" DebugInformationFormat="4" CompileAs="1" - DisableSpecificWarnings="4996;4100;4127;4204;4018;4389;4244;4706;4715;4090" + DisableSpecificWarnings="4127;4996;4244;4715" OmitDefaultLibName="false" />