chore: rename TargetOps to DiffTargetApi

This commit is contained in:
xinyangli 2024-07-15 18:54:07 +08:00
parent 5ddf0b48be
commit cac75f1698
Signed by: xin
SSH key fingerprint: SHA256:qZ/tzd8lYRtUFSrfBDBMcUqV4GHKxqeqRA3huItgvbk
3 changed files with 3 additions and 3 deletions

View file

@ -8,7 +8,7 @@
#include <vector>
// Target dynamic library has to implement these functions
struct TargetOps {
struct DiffTargetApi {
typedef void (*cont_t)(void *args, gdb_action_t *res);
cont_t cont;
@ -48,7 +48,7 @@ struct TargetMeta {
class Target {
public:
TargetOps ops;
DiffTargetApi ops;
TargetMeta meta;
arch_info_t arch;
size_t argsize;