Browse Source

removed doc

fixed references in Profiler.AddIn
clean up in allocator.cpp

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3858 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
Siegfried Pammer 17 years ago
parent
commit
ba077160ba
  1. 6
      src/AddIns/Misc/Profiler/Frontend/AddIn/AddIn.csproj
  2. 2
      src/AddIns/Misc/Profiler/Hook/allocator.cpp
  3. BIN
      src/AddIns/Misc/Profiler/doc/Documentation.chm

6
src/AddIns/Misc/Profiler/Frontend/AddIn/AddIn.csproj

@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
<OutputPath>..\..\bin\</OutputPath>
<OutputPath>..\..\bin</OutputPath>
<StartAction>Program</StartAction>
<StartProgram>$(SharpDevelopBinPath)\SharpDevelop.exe</StartProgram>
<StartArguments>/addindir:$(MSBuildProjectDirectory)\$(OutputPath)</StartArguments>
@ -43,15 +43,19 @@ @@ -43,15 +43,19 @@
<ItemGroup>
<Reference Include="ICSharpCode.Core">
<HintPath>..\..\..\..\..\..\bin\ICSharpCode.Core.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ICSharpCode.Core.Presentation">
<HintPath>..\..\..\..\..\..\bin\ICSharpCode.Core.Presentation.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ICSharpCode.SharpDevelop">
<HintPath>..\..\..\..\..\..\bin\ICSharpCode.SharpDevelop.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="ICSharpCode.SharpDevelop.Dom">
<HintPath>..\..\..\..\..\..\bin\ICSharpCode.SharpDevelop.Dom.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Microsoft.Build.Engine" />
<Reference Include="Microsoft.Build.Framework" />

2
src/AddIns/Misc/Profiler/Hook/allocator.cpp

@ -64,6 +64,7 @@ void* fastAllocator::malloc(size_t bytes) @@ -64,6 +64,7 @@ void* fastAllocator::malloc(size_t bytes)
}
}
#pragma warning(disable : 4100)
void fastAllocator::free(void* memory, size_t bytes)
{
assert(memory != nullptr);
@ -72,6 +73,7 @@ void fastAllocator::free(void* memory, size_t bytes) @@ -72,6 +73,7 @@ void fastAllocator::free(void* memory, size_t bytes)
assert(((size_t*)memory)[-1] == bytes);
#endif
}
#pragma warning(default : 4100)
template<class T> void freeListAllocator<T>::initialize(void* pos, void* endPos)
{

BIN
src/AddIns/Misc/Profiler/doc/Documentation.chm

Binary file not shown.
Loading…
Cancel
Save