diff options
| author | ruki <[email protected]> | 2025-04-17 00:49:27 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-08-28 11:35:53 +0800 |
| commit | 3c48e6a4e5f5832e4a549578480a3e247a04e632 (patch) | |
| tree | c760b7b58c44b04bb1ad4b1c42e8795faf23671f /core/src | |
| parent | 79bf2c362c3127b3b7f9b0f3e192ecff90ee8fec (diff) | |
fix callback
Diffstat (limited to 'core/src')
| -rw-r--r-- | core/src/xmake/thread/prefix.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/src/xmake/thread/prefix.h b/core/src/xmake/thread/prefix.h index 0e503c7de..0db5bc67f 100644 --- a/core/src/xmake/thread/prefix.h +++ b/core/src/xmake/thread/prefix.h @@ -26,6 +26,17 @@ */ #include "../prefix.h" +/* ////////////////////////////////////////////////////////////////////////////////////// + * types + */ + +// the thread type +typedef struct __xm_thread_t +{ + tb_thread_ref_t handle; + +}xm_thread_t; + #endif |
