Skip to content

Commit

Permalink
window ci debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ladnir committed Jun 9, 2024
1 parent a5bad8c commit 06d08dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def Build(projectName, argv, install, par, sudo, noConfig):

mkDirCmd = "mkdir -p {0}".format(buildDir);
CMakeCmd = "cmake -S . -B {0} {1}".format(buildDir, argStr)
BuildCmd = "cmake --build {0} {1} {2} ".format(buildDir, config, parallel)
BuildCmd = "cmake --build {0} {1} {2} -- -verbosity:diagnostic ".format(buildDir, config, parallel)


InstallCmd = ""
Expand Down
6 changes: 4 additions & 2 deletions frontend/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,11 @@ int main(int argc, char** argv)
_Mutex_base& m = *(_Mutex_base*)&m_mutex;

{
_Mtx_lock(&m._Mtx_storage);
//_Mtx_lock(&m._Mtx_storage);
m_mutex.lock();
std::cout << "pre " << std::endl;
_Mtx_unlock(&m._Mtx_storage);
m_mutex.unlock();
//_Mtx_unlock(&m._Mtx_storage);

}
//macoro::CLP cmd(argc, argv);
Expand Down

0 comments on commit 06d08dc

Please sign in to comment.