summaryrefslogtreecommitdiffstats
path: root/usr/include/arch/ia64/klibc/archsetjmp.h
blob: 43564ee56a318049cb79648bb464ea2276093b0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * arch/ia64/include/klibc/archsetjmp.h
 *
 * Code borrowed from the FreeBSD kernel.
 *
 */

#ifndef _KLIBC_ARCHSETJMP_H
#define _KLIBC_ARCHSETJMP_H

/* User code must not depend on the internal representation of jmp_buf. */
#define _JBLEN 0x200

/* guaranteed 128-bit alignment! */
typedef char jmp_buf[_JBLEN] __attribute__ ((aligned(16)));

#endif