core.cc (11988:665cd5f8b52b) core.cc (12011:1279b1d30ccd)
1/*
2 * Copyright (c) 2017 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 220 unchanged lines hidden (view full) ---

229
230 m_core
231 .def("setLogLevel", &Logger::setLevel)
232 .def("setOutputDir", &setOutputDir)
233 .def("doExitCleanup", &doExitCleanup)
234
235 .def("disableAllListeners", &ListenSocket::disableAll)
236 .def("listenersDisabled", &ListenSocket::allDisabled)
1/*
2 * Copyright (c) 2017 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 220 unchanged lines hidden (view full) ---

229
230 m_core
231 .def("setLogLevel", &Logger::setLevel)
232 .def("setOutputDir", &setOutputDir)
233 .def("doExitCleanup", &doExitCleanup)
234
235 .def("disableAllListeners", &ListenSocket::disableAll)
236 .def("listenersDisabled", &ListenSocket::allDisabled)
237 .def("listenersLoopbackOnly", &ListenSocket::loopbackOnly)
237 .def("seedRandom", [](uint64_t seed) { random_mt.init(seed); })
238
239
240 .def("setClockFrequency", &setClockFrequency)
241 .def("curTick", curTick)
242 ;
243
244 /* TODO: These should be read-only */

--- 28 unchanged lines hidden ---
238 .def("seedRandom", [](uint64_t seed) { random_mt.init(seed); })
239
240
241 .def("setClockFrequency", &setClockFrequency)
242 .def("curTick", curTick)
243 ;
244
245 /* TODO: These should be read-only */

--- 28 unchanged lines hidden ---