enhanced for wpx response transformer

This commit is contained in:
2024-12-27 14:43:44 +09:00
parent 6809cfdeb6
commit f1572f9321
9 changed files with 277 additions and 101 deletions

View File

@ -16,7 +16,7 @@ func monotonic_time() uint64 {
var uts unix.Timespec
n = nanotime() // hopefully it's faster than a system call. say, vdso is utilized.
if (n >= 0) { return uint64(n) }
if n >= 0 { return uint64(n) }
err = unix.ClockGettime(unix.CLOCK_MONOTONIC, &uts)
if err != nil {