16 lines
188 B
C
16 lines
188 B
C
|
|
||
|
#ifndef TC_PROMISE_H
|
||
|
#define TC_PROMISE_H
|
||
|
|
||
|
#include <utility/utility.h>
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
u64_t issueing_tick;
|
||
|
u32_t identifier;
|
||
|
|
||
|
} tc_promise_s;
|
||
|
|
||
|
#endif
|
||
|
|