Files
sdk/runtime/vm/gdbjit_android.h
T
jackpal@google.com c4238c71da Add GDB JIT support back into Android build.
Based on Linux version.

Review URL: https://chromiumcodereview.appspot.com//10827327

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@10697 260f80e4-7a28-3924-810f-c04153c831b5
2012-08-15 02:02:16 +00:00

16 lines
453 B
C

// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#ifndef VM_GDBJIT_ANDROID_H_
#define VM_GDBJIT_ANDROID_H_
#include <stdint.h>
extern "C" {
void addDynamicSection(const char* symfile_addr, uint64_t symfile_size);
void deleteDynamicSections();
};
#endif // VM_GDBJIT_ANDROID_H_