Fixup MSVC build

This commit is contained in:
Michael 2019-05-15 23:03:24 +01:00
parent 4bf2020839
commit f734ffeae4
4 changed files with 19 additions and 1 deletions

View File

@ -11,6 +11,18 @@
"buildCommandArgs": "-v",
"ctestCommandArgs": "",
"variables": []
},
{
"name": "x64-Release",
"generator": "Ninja",
"configurationType": "RelWithDebInfo",
"buildRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\build\\${name}",
"installRoot": "${env.USERPROFILE}\\CMakeBuilds\\${workspaceHash}\\install\\${name}",
"cmakeCommandArgs": "",
"buildCommandArgs": "-v",
"ctestCommandArgs": "",
"inheritEnvironments": [ "msvc_x64_x64" ],
"variables": []
}
]
}

View File

@ -1,5 +1,7 @@
#include <net/net_int.hpp>
#include <string>
namespace llarp
{
template <>

View File

@ -4,6 +4,10 @@
#include <iostream>
#include <util/logger.hpp>
#ifdef LoadString
#undef LoadString
#endif
namespace llarp
{
bool

View File

@ -61,7 +61,7 @@ llarp_threadpool_queue_job(struct llarp_threadpool *pool,
{
while(!pool->impl->tryAddJob(std::bind(job.work, job.user)))
{
::usleep(1000);
std::this_thread::sleep_for(std::chrono::microseconds(1000));
}
}
else