Browse Source

Merge pull request #1151 from Kelimion/xxhash

Fix typos
Jeroen van Rijn 4 years ago
parent
commit
31a5b2bbbd
2 changed files with 2 additions and 3 deletions
  1. 1 2
      core/time/time_windows.odin
  2. 1 1
      tests/core/hash/test_core_hash.odin

+ 1 - 2
core/time/time_windows.odin

@@ -24,8 +24,7 @@ _tick_now :: proc() -> Tick {
 		return q * num + r * num / den
 	}
 
-	// @thread_local qpc_frequency: win32.LARGE_INTEGER
-	qpc_frequency: win32.LARGE_INTEGER
+	@thread_local qpc_frequency: win32.LARGE_INTEGER
 
 	if qpc_frequency == 0 {
 		win32.QueryPerformanceFrequency(&qpc_frequency)

+ 1 - 1
tests/core/hash/test_core_hash.odin

@@ -79,7 +79,7 @@ benchmark_xxhash64 :: proc(options: ^time.Benchmark_Options, allocator := contex
 }
 
 benchmark_print :: proc(name: string, options: ^time.Benchmark_Options) {
-    fmt.printf("\t[%v] %v rounds, %v bytes procesed in %v ns\n\t\t%5.3f rounds/s, %5.3f MiB/s\n",
+    fmt.printf("\t[%v] %v rounds, %v bytes processed in %v ns\n\t\t%5.3f rounds/s, %5.3f MiB/s\n",
         name,
         options.rounds,
         options.processed,