https://github.com/openbfdev/xdbd
eXtensible Debug Bridge Daemon
https://github.com/openbfdev/xdbd
Last synced: about 1 month ago
JSON representation
eXtensible Debug Bridge Daemon
- Host: GitHub
- URL: https://github.com/openbfdev/xdbd
- Owner: openbfdev
- Created: 2024-02-07T15:18:27.000Z (about 2 years ago)
- Default Branch: develop
- Last Pushed: 2024-06-13T12:47:50.000Z (over 1 year ago)
- Last Synced: 2024-06-13T15:20:06.486Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 101 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# other
1. adb will recognize the shell protocol. so this xdbd version need use adb shell -x to debug for closing the recognize shell protocol. in future we will fix it
# service
```c
struct xdbd_service_t {
xdbd_pid_t pid;
xdbd_event_t *read;
xdbd_event_t *write;
}
xdbd_service_create();
// xdbd_service_fetch();
xdbd_service_destroy();
```