Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

1
2
3
4
5
6
7
#include_next <asm/ptrace.h>
/* ARM_VFPREGS_SIZE has been added in 3.0 */
#if defined(__arm__) && !defined(ARM_VFPREGS_SIZE)
/* The size of the user-visible VFP state as seen by PTRACE_GET/SETVFPREGS
   and core dumps.  */
#define ARM_VFPREGS_SIZE ( 32 * 8 /*fpregs*/ + 4 /*fpscr*/ )
#endif