blob: 517beebdeab50fe5afcaad278a3a7086f4420dae [file] [log] [blame]
Alexander Graf97d44b12016-05-20 23:28:22 +02001/*
Philipp Tomsichb4806d62017-10-10 16:21:13 +02002 * (C) Copyright 2017 Theobroma Systems Design und Consulting GmbH
3 * (C) Copyright 2016 Alexander Graf <agraf@suse.de>
Alexander Graf97d44b12016-05-20 23:28:22 +02004 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#ifndef _SETJMP_H_
9#define _SETJMP_H_ 1
10
Philipp Tomsichb4806d62017-10-10 16:21:13 +020011/*
12 * This really should be opaque, but the EFI implementation wrongly
13 * assumes that a 'struct jmp_buf_data' is defined.
14 */
Alexander Graf97d44b12016-05-20 23:28:22 +020015struct jmp_buf_data {
Philipp Tomsichb4806d62017-10-10 16:21:13 +020016#if defined(__aarch64__)
17 u64 regs[13];
18#else
19 u32 regs[10]; /* r4-r9, sl, fp, sp, lr */
20#endif
Alexander Graf97d44b12016-05-20 23:28:22 +020021};
22
23typedef struct jmp_buf_data jmp_buf[1];
24
Philipp Tomsichb4806d62017-10-10 16:21:13 +020025int setjmp(jmp_buf jmp);
26void longjmp(jmp_buf jmp, int ret);
Alexander Graf97d44b12016-05-20 23:28:22 +020027
28#endif /* _SETJMP_H_ */