repo.or.cz
/
zen-stable.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
spi-topcliff-pch: add recovery processing in case wait-event timeout
[zen-stable.git]
/
arch
/
x86
/
um
/
shared
/
sysdep
/
ptrace.h
blob
2bbe1ec2d96ab1a4d8ae8ab540eae7f9360c2db4
1
#ifndef __SYSDEP_X86_PTRACE_H
2
#define __SYSDEP_X86_PTRACE_H
3
4
#ifdef __i386__
5
#include
"ptrace_32.h"
6
#else
7
#include
"ptrace_64.h"
8
#endif
9
10
static
inline
long
regs_return_value
(
struct
uml_pt_regs
*
regs
)
11
{
12
return
UPT_SYSCALL_RET
(
regs
);
13
}
14
15
#endif
/* __SYSDEP_X86_PTRACE_H */