except.c
资源名称:c.rar [点击查看]
上传用户:shmaik
上传日期:2014-06-01
资源大小:45093k
文件大小:1k
源码类别:

VC书籍

开发平台:

C/C++

  1. static char rcsid[] = "$Id: H:/drh/idioms/book/RCS/except.doc,v 1.10 1997/02/21 19:43:55 drh Exp $";
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. #include "assert.h"
  5. #include "except.h"
  6. #define T Except_T
  7. #ifdef WIN32
  8. __declspec(thread)
  9. #endif
  10. Except_Frame *Except_stack = NULL;
  11. void Except_raise(const T *e, const char *file,
  12. int line) {
  13. Except_Frame *p = Except_stack;
  14. assert(e);
  15. if (p == NULL) {
  16. fprintf(stderr, "Uncaught exception");
  17. if (e->reason)
  18. fprintf(stderr, " %s", e->reason);
  19. else
  20. fprintf(stderr, " at 0x%p", e);
  21. if (file && line > 0)
  22. fprintf(stderr, " raised at %s:%dn", file, line);
  23. fprintf(stderr, "aborting...n");
  24. fflush(stderr);
  25. abort();
  26. }
  27. p->exception = e;
  28. p->file = file;
  29. p->line = line;
  30. Except_stack = Except_stack->prev;
  31. longjmp(p->env, Except_raised);
  32. }