mirror of
https://github.com/xmrig/xmrig.git
synced 2025-01-11 13:24:40 +00:00
Added copyright.
This commit is contained in:
parent
9fcc542676
commit
62eb66486d
3 changed files with 47 additions and 4 deletions
|
@ -127,12 +127,10 @@ elseif (APPLE)
|
||||||
)
|
)
|
||||||
else()
|
else()
|
||||||
set(SOURCES_OS
|
set(SOURCES_OS
|
||||||
|
src/base/io/Async.cpp
|
||||||
src/base/io/json/Json_unix.cpp
|
src/base/io/json/Json_unix.cpp
|
||||||
src/base/kernel/Platform_unix.cpp
|
src/base/kernel/Platform_unix.cpp
|
||||||
)
|
)
|
||||||
list(APPEND SOURCES_BASE
|
|
||||||
src/base/io/Async.cpp
|
|
||||||
)
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,23 @@
|
||||||
|
/* XMRig
|
||||||
|
* Copyright (c) 2015-2020 libuv project contributors.
|
||||||
|
* Copyright (c) 2020 cohcho <https://github.com/cohcho>
|
||||||
|
* Copyright (c) 2018-2020 SChernykh <https://github.com/SChernykh>
|
||||||
|
* Copyright (c) 2016-2020 XMRig <https://github.com/xmrig>, <support@xmrig.com>
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "base/io/Async.h"
|
#include "base/io/Async.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,26 @@
|
||||||
#pragma once
|
/* XMRig
|
||||||
|
* Copyright (c) 2015-2020 libuv project contributors.
|
||||||
|
* Copyright (c) 2020 cohcho <https://github.com/cohcho>
|
||||||
|
* Copyright (c) 2018-2020 SChernykh <https://github.com/SChernykh>
|
||||||
|
* Copyright (c) 2016-2020 XMRig <https://github.com/xmrig>, <support@xmrig.com>
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef XMRIG_ASYNC_H
|
||||||
|
#define XMRIG_ASYNC_H
|
||||||
|
|
||||||
|
|
||||||
#include <uv.h>
|
#include <uv.h>
|
||||||
|
|
||||||
|
@ -25,3 +47,6 @@ extern int uv_async_send(uv_async_t *async);
|
||||||
|
|
||||||
} // namespace xmrig
|
} // namespace xmrig
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#endif /* XMRIG_ASYNC_H */
|
||||||
|
|
Loading…
Reference in a new issue