mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 15:05:19 +00:00
3fe191b0df
Allow to set break point again when all break points are removed and wasm app starts running.
18 lines
334 B
C
18 lines
334 B
C
/*
|
|
* Copyright (C) 2021 Ant Group. All rights reserved.
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
*/
|
|
|
|
#ifndef PACKETS_H
|
|
#define PACKETS_H
|
|
|
|
#include "gdbserver.h"
|
|
|
|
void
|
|
write_data_raw(WASMGDBServer *gdbserver, const uint8 *data, ssize_t len);
|
|
|
|
void
|
|
write_packet(WASMGDBServer *gdbserver, const char *data);
|
|
|
|
#endif
|