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

ptrace.h « include « lib « src « ppc64 « arch « compel - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0274c26752376636471b0b7db430740abec84a33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __COMPEL_PTRACE_H__
#define __COMPEL_PTRACE_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