Skip to content

Commit

Permalink
Make ulock stracing less noisy
Browse files Browse the repository at this point in the history
  • Loading branch information
jart committed Oct 3, 2023
1 parent 85f64f3 commit 11c18fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libc/intrin/ulock.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ int ulock_wait(uint32_t operation, void *addr, uint64_t value,
uint32_t timeout_micros) {
int rc;
operation |= ULF_WAIT_CANCEL_POINT;
STRACE("ulock_wait(%#x, %p, %lx, %u) → ...", operation, addr, value,
timeout_micros);
LOCKTRACE("ulock_wait(%#x, %p, %lx, %u) → ...", operation, addr, value,
timeout_micros);
rc = sys_ulock_wait(operation, addr, value, timeout_micros);
STRACE("ulock_wait(%#x, %p, %lx, %u) → %d% m", operation, addr, value,
timeout_micros, rc);
Expand Down

0 comments on commit 11c18fa

Please sign in to comment.