Linux Audio

Check our new training course

Embedded Linux Audio

Check our new training course
with Creative Commons CC-BY-SA
lecture materials

Bootlin logo

Elixir Cross Referencer

Loading...
/* This file is lisenced under LGPL.
 * Copyright (C) 2002-2003,    George Thanos <george.thanos@gdt.gr>
 *                             Yannis Mitsos <yannis.mitsos@gdt.gr>
 */

#ifndef _BITS_SETJMP_H
#define _BITS_SETJMP_H	1

#if !defined _SETJMP_H && !defined _PTHREAD_H
# error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
#endif

typedef struct {
	unsigned long G3;
	unsigned long G4;
	unsigned long SavedSP;
	unsigned long SavedPC;
	unsigned long SavedSR;
	unsigned long ReturnValue;
} __jmp_buf[1];

#endif	/* bits/setjmp.h */