From bb0a445a6b57091fe5b878b09668d25edcb1e7ee Mon Sep 17 00:00:00 2001 From: olegos2 <74909582+olegos2@users.noreply.github.com> Date: Sat, 28 Dec 2024 21:06:51 +0500 Subject: Spelling/typo fixes in code and documentation updates (#2223) * Fix typo DLOpenned->DLOpened * Fix a typo in comments: versionned->versioned * Fix a typo in comment: cleanning->cleaning * Update COMPILE.md and USAGE.md * A few more typos in comments --- src/core.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core.c') diff --git a/src/core.c b/src/core.c index 655f9d96..cf7c7893 100644 --- a/src/core.c +++ b/src/core.c @@ -609,7 +609,7 @@ void computeRDTSC() uint64_t freq = ReadTSCFrequency(NULL); if(freq<((box64_rdtsc_1ghz)?1000000000LL:1000000)) { box64_rdtsc = 1; - if(hardware) printf_log(LOG_INFO, "Hardware counter to slow (%d kHz), not using it\n", freq/1000); + if(hardware) printf_log(LOG_INFO, "Hardware counter is too slow (%d kHz), not using it\n", freq/1000); hardware = 0; freq = ReadTSCFrequency(NULL); } @@ -1808,8 +1808,8 @@ void endBox64() printf_log(LOG_DEBUG, "Calling atexit registered functions (exiting box64)\n"); CallAllCleanup(emu); printf_log(LOG_DEBUG, "Calling fini for all loaded elfs and unload native libs\n"); - //void closeAllDLOpenned(); - //closeAllDLOpenned(); // close residual dlopenned libs. Disabled, seems like a bad idea, better to unload with proper dependancies + //void closeAllDLOpened(); + //closeAllDLOpened(); // close residual dlopened libs. Disabled, seems like a bad idea, better to unload with proper dependancies RunElfFini(my_context->elfs[0], emu); // unload needed libs needed_libs_t* needed = my_context->elfs[0]->needed; -- cgit 1.4.1