File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,13 +46,6 @@ void Thread::Resume()
4646 BfpThread_Resume (GetInternalThread ()->mThreadHandle , NULL );
4747}
4848
49- void Thread::SetJoinOnDelete (bool joinOnDelete)
50- {
51- auto internalThread = GetInternalThread ();
52- Beefy::AutoCrit autoCrit (internalThread->mCritSect );
53- internalThread->mJoinOnDelete = joinOnDelete;
54- }
55-
5649int Thread::GetPriorityNative ()
5750{
5851 return (int )BfpThread_GetPriority (GetInternalThread ()->mThreadHandle , NULL ) + 2 ;
Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ namespace bf
4242 BFRT_EXPORT void ManualThreadInit ();
4343 BFRT_EXPORT int GetPriorityNative ();
4444 BFRT_EXPORT void SetPriorityNative (int priority);
45- BFRT_EXPORT void SetJoinOnDelete (bool joinOnDelete);
4645 BFRT_EXPORT bool GetIsAlive ();
4746 BFRT_EXPORT bool GetIsThreadPoolThread ();
4847 BFRT_EXPORT bool JoinInternal (int millisecondsTimeout);
You can’t perform that action at this time.
0 commit comments