Displaying 1 result from an estimated 1 matches for "kcov_remote_id".
Did you mean:
kcov_remote_add
2019 Oct 21
0
[PATCH RFC 1/3] kcov: remote coverage support
..._IO('c', 101)
> + #define KCOV_REMOTE_ENABLE _IOW('c', 102, struct kcov_remote_arg)
> +
> + #define COVER_SIZE (64 << 10)
> +
> + #define KCOV_TRACE_PC 0
> + #define KCOV_TRACE_CMP 1
> +
> + #define KCOV_REMOTE_ID 0x42
> +
> + int main(int argc, char **argv)
> + {
> + int fd;
> + unsigned long *cover, n, i;
> + uint64_t handle;
> +
> + fd = open("/sys/kernel/debug/kcov", O_RDWR);
> + if (fd == -1)
> + perror("o...