Skip to content

Commit

Permalink
fix tge compil
Browse files Browse the repository at this point in the history
  • Loading branch information
bha-evs committed Feb 29, 2024
1 parent 64216d9 commit f409b77
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/include/bofstd/bofthread.h
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ class BOFSTD_EXPORT BofThread
#endif
#endif

BofThread();
BofThread(bool _PriorityInversionAware_B);

// BofThread(const std::string &_rName_S);
Expand Down
4 changes: 4 additions & 0 deletions lib/src/bofthread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ typedef struct tagTHREADNAME_INFO
BEGIN_BOF_NAMESPACE()
std::atomic<int32_t> BofThread::S_mBofThreadBalance = 0;

BofThread::BofThread()
{
BofThread(false);
}
BofThread::BofThread(bool _PriorityInversionAware_B)
{
// printf("%u: CREATE THREAD\n", BOF::Bof_GetMsTickCount());
Expand Down

0 comments on commit f409b77

Please sign in to comment.