Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: b1940cd21c0f4abdce101253e860feff547291b0 authored by Linus Torvalds on 06 January 2015, 01:05:20 UTC
Linux 3.19-rc3
Tip revision: b1940cd
ucontext.h
#ifndef _ASM_IA64_UCONTEXT_H
#define _ASM_IA64_UCONTEXT_H

struct ucontext {
	struct sigcontext uc_mcontext;
};

#define uc_link		uc_mcontext.sc_gr[0]	/* wrong type; nobody cares */
#define uc_sigmask	uc_mcontext.sc_sigmask
#define uc_stack	uc_mcontext.sc_stack

#endif /* _ASM_IA64_UCONTEXT_H */
back to top