1277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe/*
2277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe * Copyright (C) 2014 The Android Open Source Project
3277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe *
4277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe * Licensed under the Apache License, Version 2.0 (the "License");
5277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe * you may not use this file except in compliance with the License.
6277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe * You may obtain a copy of the License at
7277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe *
8277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe *      http://www.apache.org/licenses/LICENSE-2.0
9277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe *
10277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe * Unless required by applicable law or agreed to in writing, software
11277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe * distributed under the License is distributed on an "AS IS" BASIS,
12277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe * See the License for the specific language governing permissions and
14277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe * limitations under the License.
15277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe */
16277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe
17277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe#ifndef ART_RUNTIME_NATIVE_DALVIK_SYSTEM_VMDEBUG_H_
18277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe#define ART_RUNTIME_NATIVE_DALVIK_SYSTEM_VMDEBUG_H_
19277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe
20277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe#include <jni.h>
21277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe
22277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampenamespace art {
23277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe
24277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampevoid register_dalvik_system_VMDebug(JNIEnv* env);
25277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe
26277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe}  // namespace art
27277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe
28277ccbd200ea43590dfc06a93ae184a765327ad0Andreas Gampe#endif  // ART_RUNTIME_NATIVE_DALVIK_SYSTEM_VMDEBUG_H_
29