mirror of https://github.com/pvnis/srsRAN_4G.git
srsLTE: Fix thread memory leak. Moved test. Fix CLang warnings.
parent
a7e92c384e
commit
ad46fc006f
@ -0,0 +1,31 @@
|
|||||||
|
#
|
||||||
|
# Copyright 2013-2019 Software Radio Systems Limited
|
||||||
|
#
|
||||||
|
# This file is part of srsLTE
|
||||||
|
#
|
||||||
|
# srsLTE is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU Affero General Public License as
|
||||||
|
# published by the Free Software Foundation, either version 3 of
|
||||||
|
# the License, or (at your option) any later version.
|
||||||
|
#
|
||||||
|
# srsLTE 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 Affero General Public License for more details.
|
||||||
|
#
|
||||||
|
# A copy of the GNU Affero General Public License can be found in
|
||||||
|
# the LICENSE file in the top-level directory of this distribution
|
||||||
|
# and at http://www.gnu.org/licenses/.
|
||||||
|
#
|
||||||
|
|
||||||
|
add_executable(thread_pool_test thread_pool_test.cc)
|
||||||
|
target_link_libraries(thread_pool_test
|
||||||
|
srslte_common)
|
||||||
|
add_test(thread_pool_test thread_pool_test)
|
||||||
|
|
||||||
|
add_executable(thread_test thread_test.cc)
|
||||||
|
target_link_libraries(thread_test
|
||||||
|
srsue_phy
|
||||||
|
srslte_common)
|
||||||
|
add_test(thread_test thread_test)
|
||||||
|
|
@ -0,0 +1,46 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2013-2019 Software Radio Systems Limited
|
||||||
|
*
|
||||||
|
* This file is part of srsLTE.
|
||||||
|
*
|
||||||
|
* srsLTE is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as
|
||||||
|
* published by the Free Software Foundation, either version 3 of
|
||||||
|
* the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* srsLTE 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 Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* A copy of the GNU Affero General Public License can be found in
|
||||||
|
* the LICENSE file in the top-level directory of this distribution
|
||||||
|
* and at http://www.gnu.org/licenses/.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <iostream>
|
||||||
|
#include <srslte/common/threads.h>
|
||||||
|
|
||||||
|
class thread_test : public thread
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
thread_test() : thread("Threat Test") {}
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void run_thread() override { std::cout << "Hello world!" << std::endl; }
|
||||||
|
};
|
||||||
|
|
||||||
|
int main(int argc, char** argv)
|
||||||
|
{
|
||||||
|
// Declare thread
|
||||||
|
thread_test mythread;
|
||||||
|
|
||||||
|
// Start
|
||||||
|
mythread.start(0);
|
||||||
|
|
||||||
|
// Wait to finish, join
|
||||||
|
mythread.wait_thread_finish();
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue