54234c7e1d
- use delays to implement setup_call - fix user_* flag - error handling i CXX should b local - fix mess on how to call openQuert - deter pt -> from a pointer to another one - avoid text forms when you can use C: LOCLS to locals.h - fux seto_call - new gated call - mem streams
25 lines
627 B
C
25 lines
627 B
C
|
|
#ifndef DLOCALS_H
|
|
#define DLOCALS_H
|
|
|
|
#undef LOCAL
|
|
#undef LOCAL_INIT
|
|
#undef LOCAL_INITF
|
|
#undef LOCAL_INIT_RESTORE
|
|
#undef LOCAL_ARRAY
|
|
#undef LOCAL_ARRAY_ARRAY
|
|
|
|
#define LOCAL(TYPE, NAME) TYPE NAME
|
|
#define LOCAL_INIT(TYPE, NAME, INIT) TYPE NAME
|
|
#define LOCAL_INITF(TYPE, NAME, INIT) TYPE NAME
|
|
#define LOCAL_INIT_RESTORE(TYPE, NAME, INIT, RESTORE) TYPE NAME
|
|
#define LOCAL_ARRAY(TYPE, NAME, DIM1) TYPE NAME [ DIM1 ]
|
|
#define LOCAL_ARRAY_ARRAY(TYPE, NAME, DIM1, DIM2) TYPE NAME [ DIM1 ][ DIM2 ]
|
|
|
|
// Stuff that must be considered local to a thread or worker
|
|
typedef struct worker_local {
|
|
#include "locals.h"
|
|
} w_local;
|
|
|
|
#endif
|