Deleted Added
full compact
39c39
< * $FreeBSD: head/sys/kern/kern_synch.c 73915 2001-03-07 03:01:53Z jhb $
---
> * $FreeBSD: head/sys/kern/kern_synch.c 74912 2001-03-28 09:03:24Z jhb $
385c385
< WITNESS_SLEEP(0, mtx);
---
> WITNESS_SLEEP(0, &mtx->mtx_object);
404c404
< WITNESS_SAVE(mtx, mtx);
---
> WITNESS_SAVE(&mtx->mtx_object, mtx);
501c501
< WITNESS_RESTORE(mtx, mtx);
---
> WITNESS_RESTORE(&mtx->mtx_object, mtx);
576c576
< WITNESS_SLEEP(0, mtx);
---
> WITNESS_SLEEP(0, &mtx->mtx_object);
581c581
< WITNESS_SAVE(mtx, mtx);
---
> WITNESS_SAVE(&mtx->mtx_object, mtx);
694c694
< WITNESS_RESTORE(mtx, mtx);
---
> WITNESS_RESTORE(&mtx->mtx_object, mtx);