2012-02-03 12:13:24 -08:00
|
|
|
/* vim: set shiftwidth=4 tabstop=8 autoindent cindent expandtab: */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2012-02-03 12:13:24 -08:00
|
|
|
|
|
|
|
/* API for getting a stack trace of the C/C++ */
|
|
|
|
|
|
|
|
#ifndef StackWalk_h_
|
|
|
|
#define StackWalk_h_
|
|
|
|
|
|
|
|
// XXX: it would be nice to eventually remove this header dependency on nsStackWalk.h
|
|
|
|
#include "nsStackWalk.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
nsresult
|
2012-08-22 08:56:38 -07:00
|
|
|
FramePointerStackWalk(NS_WalkStackCallback aCallback, uint32_t aSkipFrames,
|
2012-12-20 21:31:57 -08:00
|
|
|
uint32_t aMaxFrames, void *aClosure, void **bp,
|
|
|
|
void *stackEnd);
|
2012-02-03 12:13:24 -08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* !defined(StackWalk_h_) */
|