mirror of
https://review.haiku-os.org/haiku
synced 2025-02-05 13:24:56 +01:00
2f36ef5afe
* typedef for jmp_buf was using int where it should be long. * setjmp was clearing the buffer pointer rather than the signal mask before calling sigsetjmp. * KDL now works without crashing on x86_64.
12 lines
229 B
C
12 lines
229 B
C
/*
|
|
* Copyright 2005-2012 Haiku Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _ARCH_SETJMP_H_
|
|
#define _ARCH_SETJMP_H_
|
|
|
|
|
|
typedef unsigned long __jmp_buf[8];
|
|
|
|
#endif /* _ARCH_SETJMP_H_ */
|