cregit-Linux how code gets into the kernel

Release 4.7 include/asm-generic/siginfo.h

#ifndef _ASM_GENERIC_SIGINFO_H

#define _ASM_GENERIC_SIGINFO_H

#include <uapi/asm-generic/siginfo.h>


#define __SI_MASK	0xffff0000u

#define __SI_KILL	(0 << 16)

#define __SI_TIMER	(1 << 16)

#define __SI_POLL	(2 << 16)

#define __SI_FAULT	(3 << 16)

#define __SI_CHLD	(4 << 16)

#define __SI_RT		(5 << 16)

#define __SI_MESGQ	(6 << 16)

#define __SI_SYS	(7 << 16)

#define __SI_CODE(T,N)	((T) | ((N) & 0xffff))

struct siginfo;
void do_schedule_next_timer(struct siginfo *info);

extern int copy_siginfo_to_user(struct siginfo __user *to, const struct siginfo *from);

#endif

Overall Contributors

PersonTokensPropCommitsCommitProp
stephen rothwellstephen rothwell4148.24%225.00%
david howellsdavid howells2428.24%112.50%
george anzingergeorge anzinger1112.94%112.50%
will drewrywill drewry44.71%112.50%
david s. millerdavid s. miller33.53%112.50%
al viroal viro11.18%112.50%
linus torvaldslinus torvalds11.18%112.50%
Total85100.00%8100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}