parent
8d5e587333
commit
aeb3f528d4
@ -0,0 +1,13 @@
|
|||||||
|
#include "error.h"
|
||||||
|
|
||||||
|
internal void _cow_poison(cow_t* restrict cow, enum cow_err kind, const char *msg)
|
||||||
|
{
|
||||||
|
if(cow->error.e_global) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
internal void _cow_poison_ref(cow_t* restrict cow, cow_error* globl)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,40 @@
|
|||||||
|
#ifndef _COW_ERROR_H
|
||||||
|
#define _COW_ERROR_H
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
#include <cow.h>
|
||||||
|
|
||||||
|
#include "macros.h"
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#define restrict __restrict__
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef struct cow_error cow_error;
|
||||||
|
union poison {
|
||||||
|
struct cow_error {
|
||||||
|
cow_error* prev;
|
||||||
|
|
||||||
|
const char* message;
|
||||||
|
|
||||||
|
enum cow_err kind : 31;
|
||||||
|
/// Should we free this instance?
|
||||||
|
unsigned char owned : 1;
|
||||||
|
} e_static;
|
||||||
|
cow_error* e_global;
|
||||||
|
};
|
||||||
|
|
||||||
|
#define COW_ERROR_NONE ((struct cow_error){ .prev = NULL, .message = NULL, .kind = COW_ERR_SUCCESS, .owned = 0 })
|
||||||
|
#define COW_POISON_NONE ((union poison){ .e_static = COW_ERROR_NONE})
|
||||||
|
|
||||||
|
void _cow_poison(cow_t* restrict cow, enum cow_err kind, const char *msg) internal;
|
||||||
|
void _cow_poison_ref(cow_t* restrict cow, cow_error* globl) internal;
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#undef restrict
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif /* _COW_ERROR_H */
|
@ -0,0 +1,5 @@
|
|||||||
|
|
||||||
|
#ifndef internal
|
||||||
|
#define internal __attribute__((visibility("internal")))
|
||||||
|
#endif /* internal */
|
||||||
|
|
Loading…
Reference in new issue