odyssey/machine/mm_macro.h

14 lines
197 B
C
Raw Normal View History

2017-03-21 10:56:02 +00:00
#ifndef MM_MACRO_H_
#define MM_MACRO_H_
/*
* machinarium.
*
* cooperative multitasking engine.
*/
#define mm_container_of(ptr, t, f) \
((t*)((char*)(ptr) - __builtin_offsetof(t, f)))
#endif