Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.17 16 lines 406 B view raw
1/* 2 * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) 3 * Licensed under the GPL 4 */ 5 6#ifndef __SYSDEP_I386_PTRACE_H 7#define __SYSDEP_I386_PTRACE_H 8 9#define UPT_SYSCALL_ARG1(r) UPT_BX(r) 10#define UPT_SYSCALL_ARG2(r) UPT_CX(r) 11#define UPT_SYSCALL_ARG3(r) UPT_DX(r) 12#define UPT_SYSCALL_ARG4(r) UPT_SI(r) 13#define UPT_SYSCALL_ARG5(r) UPT_DI(r) 14#define UPT_SYSCALL_ARG6(r) UPT_BP(r) 15 16#endif