Welcome to mirror list, hosted at ThFree Co, Russian Federation.

breakpoints.h « asm « uapi « include « lib « src « aarch64 « arch « compel - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f090490d999b7b91601c4047d7137c2873bcd56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __COMPEL_BREAKPOINTS_H__
#define __COMPEL_BREAKPOINTS_H__
#define ARCH_SI_TRAP TRAP_BRKPT

static inline int ptrace_set_breakpoint(pid_t pid, void *addr)
{
	return 0;
}

static inline int ptrace_flush_breakpoints(pid_t pid)
{
	return 0;
}

#endif