Nilorea Library
C utilities for networking, threading, graphics
Loading...
Searching...
No Matches
n_exceptions.c
Go to the documentation of this file.
1
8#include <pthread.h>
9#include "nilorea/n_common.h"
10#include "nilorea/n_log.h"
12
14
18void push_exception(void) {
20
21 if (_new) {
22 _new->head = __Exceptions;
23 __Exceptions = _new;
24 } else {
25 n_log(LOG_ERR, "Cannot even add a new exception context !!");
26 }
27} /* push_exception() */
28
33void pop_exception(int ex) {
34 ExceptionContextList* head = NULL;
35 head = __Exceptions->head;
37 __Exceptions = head;
38
39 if (ex != NO_EXCEPTION) {
40 if (__Exceptions) {
41 longjmp(__Exceptions->context, ex);
42 }
43 }
44} /* pop_exception */
#define Free(__ptr)
Free Handler to get errors.
Definition n_common.h:242
jmp_buf context
saving the current context
struct ExceptionContextList * head
pointer to the next stacked exception
void pop_exception(int ex)
Function to pop an exception in the list.
ExceptionContextList * __Exceptions
Globale variable for exception stack management.
#define NO_EXCEPTION
Possibly Throwed value, everything is fine.
void push_exception(void)
Function to push an exception in the list.
Exception stack structure.
#define n_log(__LEVEL__,...)
Logging function wrapper to get line and func.
Definition n_log.h:69
#define LOG_ERR
error conditions
Definition n_log.h:56
Common headers and low-level functions & define.
Exception management for C.
Generic log system.