diff options
| author | Jim Huang <jserv@ccns.ncku.edu.tw> | 2024-12-08 00:07:14 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-07 17:07:14 +0100 |
| commit | ca47ee273e350a3655da29447e3e9cadb9dea438 (patch) | |
| tree | 95b61a8133dfe0580203f499461cb981454c27b2 /src | |
| parent | eb299f500b296266a1da2f30495de3fb0805f41a (diff) | |
| download | box64-ca47ee273e350a3655da29447e3e9cadb9dea438.tar.gz box64-ca47ee273e350a3655da29447e3e9cadb9dea438.zip | |
[CORE] Refine runtime messages (#2125)
This commit addresses inconsistent runtime messages by correcting grammatical errors and typos, and properly handling singular and plural forms.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core.c b/src/core.c index c43fd056..3a1e180b 100644 --- a/src/core.c +++ b/src/core.c @@ -592,10 +592,10 @@ void computeRDTSC() box64_rdtsc_shift = 0; #if defined(ARM64) || defined(RV64) hardware = 1; - box64_rdtsc = 0; // allow hardxare counter + box64_rdtsc = 0; // allow hardware counter #else box64_rdtsc = 1; - printf_log(LOG_INFO, "Will use time-based emulation for rdtsc, even if hardware counter are available\n"); + printf_log(LOG_INFO, "Will use time-based emulation for RDTSC, even if hardware counters are available\n"); #endif uint64_t freq = ReadTSCFrequency(NULL); if(freq<((box64_rdtsc_1ghz)?1000000000LL:1000000)) { @@ -605,11 +605,11 @@ void computeRDTSC() freq = ReadTSCFrequency(NULL); } uint64_t efreq = freq; - while(efreq<2000000000 && box64_rdtsc_shift<31) { // minium 2GHz, but not too much shift + while(efreq<2000000000 && box64_rdtsc_shift<31) { // minimum 2GHz, but not too much shift ++box64_rdtsc_shift; efreq = freq<<box64_rdtsc_shift; } - printf_log(LOG_INFO, "Will use %s counter measured at ", box64_rdtsc?"Software":"Hardware"); + printf_log(LOG_INFO, "Will use %s counter measured at ", box64_rdtsc?"software":"hardware"); int ghz = freq>=1000000000LL; if(ghz) freq/=100000000LL; else freq/=100000; if(ghz) printf_log(LOG_INFO, "%d.%d GHz", freq/10, freq%10); @@ -1300,7 +1300,7 @@ void LoadLogEnv() // grab cpu name int ncpu = getNCpu(); const char* cpuname = getCpuName(); - printf_log(LOG_INFO, " PageSize:%zd Running on %s with %d Cores\n", box64_pagesize, cpuname, ncpu); + printf_log(LOG_INFO, " PageSize:%zd Running on %s with %d core%s\n", box64_pagesize, cpuname, ncpu, ncpu > 1 ? "s" : ""); // grab and calibrate hardware counter computeRDTSC(); } @@ -1503,7 +1503,7 @@ void LoadEnvVars(box64context_t *context) printf_log(LOG_INFO, "\n"); } } - // add libssl and libcrypto (and a few other) to prefer emulated version because of multiple version exist + // Add libssl and libcrypto (and a few others) to prefer the emulated version because multiple versions exist AddPath("libssl.so.1", &context->box64_emulated_libs, 0); AddPath("libssl.so.1.0.0", &context->box64_emulated_libs, 0); AddPath("libcrypto.so.1", &context->box64_emulated_libs, 0); |