longjmp.h 440 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __UML_LONGJMP_H
  3. #define __UML_LONGJMP_H
  4. #include <sysdep/archsetjmp.h>
  5. #include <os.h>
  6. extern int setjmp(jmp_buf);
  7. extern void longjmp(jmp_buf, int);
  8. #define UML_LONGJMP(buf, val) do { \
  9. longjmp(*buf, val); \
  10. } while(0)
  11. #define UML_SETJMP(buf) ({ \
  12. int n; \
  13. volatile int enable; \
  14. enable = get_signals(); \
  15. n = setjmp(*buf); \
  16. if(n != 0) \
  17. set_signals(enable); \
  18. n; })
  19. #endif