mirror of
https://github.com/xmrig/xmrig.git
synced 2024-12-23 12:09:22 +00:00
Fix compile warnings.
This commit is contained in:
parent
bc128d11d9
commit
72c8404d18
5 changed files with 13 additions and 4 deletions
|
@ -84,7 +84,7 @@ static int showVersion()
|
||||||
# if defined(LIBRESSL_VERSION_TEXT)
|
# if defined(LIBRESSL_VERSION_TEXT)
|
||||||
printf("LibreSSL/%s\n", LIBRESSL_VERSION_TEXT + 9);
|
printf("LibreSSL/%s\n", LIBRESSL_VERSION_TEXT + 9);
|
||||||
# elif defined(OPENSSL_VERSION_TEXT)
|
# elif defined(OPENSSL_VERSION_TEXT)
|
||||||
constexpr const char *v = OPENSSL_VERSION_TEXT + 8;
|
constexpr const char *v = &OPENSSL_VERSION_TEXT[8];
|
||||||
printf("OpenSSL/%.*s\n", static_cast<int>(strchr(v, ' ') - v), v);
|
printf("OpenSSL/%.*s\n", static_cast<int>(strchr(v, ' ') - v), v);
|
||||||
# endif
|
# endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -157,7 +157,7 @@ void xmrig::BaseConfig::printVersions()
|
||||||
snprintf(buf, sizeof buf, "LibreSSL/%s ", LIBRESSL_VERSION_TEXT + 9);
|
snprintf(buf, sizeof buf, "LibreSSL/%s ", LIBRESSL_VERSION_TEXT + 9);
|
||||||
libs += buf;
|
libs += buf;
|
||||||
# elif defined(OPENSSL_VERSION_TEXT)
|
# elif defined(OPENSSL_VERSION_TEXT)
|
||||||
constexpr const char *v = OPENSSL_VERSION_TEXT + 8;
|
constexpr const char *v = &OPENSSL_VERSION_TEXT[8];
|
||||||
snprintf(buf, sizeof buf, "OpenSSL/%.*s ", static_cast<int>(strchr(v, ' ') - v), v);
|
snprintf(buf, sizeof buf, "OpenSSL/%.*s ", static_cast<int>(strchr(v, ' ') - v), v);
|
||||||
libs += buf;
|
libs += buf;
|
||||||
# endif
|
# endif
|
||||||
|
|
|
@ -29,13 +29,20 @@ namespace xmrig {
|
||||||
class HttpListener : public IHttpListener
|
class HttpListener : public IHttpListener
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
inline HttpListener(IHttpListener *listener, const char *tag = nullptr) : m_tag(tag), m_listener(listener) {}
|
inline HttpListener(IHttpListener *listener, const char *tag = nullptr) :
|
||||||
|
# ifdef APP_DEBUG
|
||||||
|
m_tag(tag),
|
||||||
|
# endif
|
||||||
|
m_listener(listener)
|
||||||
|
{}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void onHttpData(const HttpData &data) override;
|
void onHttpData(const HttpData &data) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
# ifdef APP_DEBUG
|
||||||
const char *m_tag;
|
const char *m_tag;
|
||||||
|
# endif
|
||||||
IHttpListener *m_listener;
|
IHttpListener *m_listener;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -91,7 +91,7 @@ bool KPCache::init(uint32_t epoch)
|
||||||
const uint32_t a = (cache_nodes * i) / n;
|
const uint32_t a = (cache_nodes * i) / n;
|
||||||
const uint32_t b = (cache_nodes * (i + 1)) / n;
|
const uint32_t b = (cache_nodes * (i + 1)) / n;
|
||||||
|
|
||||||
threads.emplace_back([this, a, b, cache_nodes, &cache]() {
|
threads.emplace_back([this, a, b, &cache]() {
|
||||||
uint32_t j = a;
|
uint32_t j = a;
|
||||||
for (; j + 4 <= b; j += 4) ethash_calculate_dag_item4_opt(((node*)m_DAGCache.data()) + j, j, num_dataset_parents, &cache);
|
for (; j + 4 <= b; j += 4) ethash_calculate_dag_item4_opt(((node*)m_DAGCache.data()) + j, j, num_dataset_parents, &cache);
|
||||||
for (; j < b; ++j) ethash_calculate_dag_item_opt(((node*)m_DAGCache.data()) + j, j, num_dataset_parents, &cache);
|
for (; j < b; ++j) ethash_calculate_dag_item_opt(((node*)m_DAGCache.data()) + j, j, num_dataset_parents, &cache);
|
||||||
|
|
|
@ -207,7 +207,9 @@ RandomX_ConfigurationBase::RandomX_ConfigurationBase()
|
||||||
# endif
|
# endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef XMRIG_ARMv8
|
||||||
static uint32_t Log2(size_t value) { return (value > 1) ? (Log2(value / 2) + 1) : 0; }
|
static uint32_t Log2(size_t value) { return (value > 1) ? (Log2(value / 2) + 1) : 0; }
|
||||||
|
#endif
|
||||||
|
|
||||||
void RandomX_ConfigurationBase::Apply()
|
void RandomX_ConfigurationBase::Apply()
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue