1 #include <../src/sys/classes/draw/impls/x/ximpl.h> /*I "petscsys.h" I*/ 2 3 #if defined(PETSC_HAVE_SETJMP_H) 4 5 jmp_buf PetscXIOErrorHandlerJumpBuf; 6 7 void PetscXIOErrorHandlerJump(PETSC_UNUSED void *ctx) { 8 longjmp(PetscXIOErrorHandlerJumpBuf, 1); 9 } 10 11 PetscXIOErrorHandler PetscSetXIOErrorHandler(PetscXIOErrorHandler xioerrhdl) { 12 return (PetscXIOErrorHandler)XSetIOErrorHandler((XIOErrorHandler)xioerrhdl); 13 } 14 15 #endif 16