blob: 5b31e864495c0d17b37e541e04f6294af17857da [file] [log] [blame]
Shih-wei Liao1a18c8c2011-08-14 17:47:36 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3#ifndef ART_SRC_EXCEPTION_H_
4#define ART_SRC_EXCEPTION_H_
5
6#include "class_linker.h"
7#include "dex_file.h"
8#include "object.h"
9#include "thread.h"
10
11namespace art {
12
13struct InternalStackTrace {
14 const Method* method;
15 const uint16_t* pc;
16};
17
18extern InternalStackTrace *GetStackTrace(uint16_t stack_depth);
19
20}
21
22#endif // ART_SRC_EXCEPTION_H_