You've already forked linux-packaging-mono
Imported Upstream version 4.8.0.309
Former-commit-id: 5f9c6ae75f295e057a7d2971f3a6df4656fa8850
This commit is contained in:
parent
ee1447783b
commit
94b2861243
@@ -69,21 +69,25 @@ namespace System.Diagnostics {
|
||||
init_frames (METHODS_TO_SKIP, false);
|
||||
}
|
||||
|
||||
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
||||
public StackTrace (bool fNeedFileInfo)
|
||||
{
|
||||
init_frames (METHODS_TO_SKIP, fNeedFileInfo);
|
||||
}
|
||||
|
||||
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
||||
public StackTrace (int skipFrames)
|
||||
{
|
||||
init_frames (skipFrames, false);
|
||||
}
|
||||
|
||||
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
||||
public StackTrace (int skipFrames, bool fNeedFileInfo)
|
||||
{
|
||||
init_frames (skipFrames, fNeedFileInfo);
|
||||
}
|
||||
|
||||
[MethodImplAttribute (MethodImplOptions.NoInlining)]
|
||||
void init_frames (int skipFrames, bool fNeedFileInfo)
|
||||
{
|
||||
if (skipFrames < 0)
|
||||
|
||||
Reference in New Issue
Block a user