CX Framework
Cross-platform C utility framework
Loading...
Searching...
No Matches
thread_private.h
1#pragma once
2
3#include "thread.h"
4
5_Ret_valid_ Thread *_thrPlatformCreate();
6bool _thrPlatformStart(Thread *thread);
7bool _thrPlatformWait(Thread *thread, int64 timeout);
Thread creation and management.