-
Notifications
You must be signed in to change notification settings - Fork 309
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate a dump when each of the specified GC memory thresholds are e…
…xceeded (#194) * Refactor procdump/profiler * initial checkin * Feature complete * Update README with new switch and example * Fix memory leak * Fixes * PR feedback * PR feedback
- Loading branch information
1 parent
e2cd965
commit cf2341d
Showing
17 changed files
with
715 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#include "ProfilerCommon.h" | ||
#include "CoreDumpWriter.h" | ||
#include "Events.h" | ||
#include "GenHelpers.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License | ||
|
||
//-------------------------------------------------------------------- | ||
// | ||
// Profiler Common | ||
// | ||
//-------------------------------------------------------------------- | ||
#ifndef PROFILERCOMMON_H | ||
#define PROFILERCOMMON_H | ||
|
||
enum TriggerType | ||
{ | ||
Processor, | ||
Commit, | ||
Timer, | ||
Signal, | ||
ThreadCount, | ||
FileDescriptorCount, | ||
Exception, | ||
GCThreshold | ||
}; | ||
|
||
#endif // PROFILERCOMMON_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.