Skip to content

Instantly share code, notes, and snippets.

@mrbrdo
Created October 14, 2014 15:22
Show Gist options
  • Save mrbrdo/920235f81a849205cdbb to your computer and use it in GitHub Desktop.
Save mrbrdo/920235f81a849205cdbb to your computer and use it in GitHub Desktop.
struct mrb_jmpbuf buf;
MRB_TRY(&buf) {
mrb->jmp = &buf;
}
MRB_CATCH(&buf) {
// handle error
}
MRB_END_EXC(&buf);
// call mruby code that throws error
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment