mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add in symbols needed in the WITNESS_ENTER and WITNESS_EXIT macros in
i386/include/mutex.h.
This commit is contained in:
parent
2b3d269b8b
commit
5057d21069
2 changed files with 10 additions and 0 deletions
|
|
@ -228,5 +228,10 @@ ASSYM(VM86_FRAMESIZE, sizeof(struct vm86frame));
|
|||
ASSYM(MTX_LOCK, offsetof(struct mtx, mtx_lock));
|
||||
ASSYM(MTX_RECURSE, offsetof(struct mtx, mtx_recurse));
|
||||
ASSYM(MTX_SAVEINTR, offsetof(struct mtx, mtx_saveintr));
|
||||
#ifdef WITNESS
|
||||
ASSYM(MTX_DEBUG, offsetof(struct mtx, mtx_debug));
|
||||
ASSYM(MTXD_WITNESS, offsetof(struct mtx_debug, mtxd_witness));
|
||||
#endif
|
||||
|
||||
ASSYM(MTX_UNOWNED, MTX_UNOWNED);
|
||||
ASSYM(MTX_SPIN, MTX_SPIN);
|
||||
|
|
|
|||
|
|
@ -228,5 +228,10 @@ ASSYM(VM86_FRAMESIZE, sizeof(struct vm86frame));
|
|||
ASSYM(MTX_LOCK, offsetof(struct mtx, mtx_lock));
|
||||
ASSYM(MTX_RECURSE, offsetof(struct mtx, mtx_recurse));
|
||||
ASSYM(MTX_SAVEINTR, offsetof(struct mtx, mtx_saveintr));
|
||||
#ifdef WITNESS
|
||||
ASSYM(MTX_DEBUG, offsetof(struct mtx, mtx_debug));
|
||||
ASSYM(MTXD_WITNESS, offsetof(struct mtx_debug, mtxd_witness));
|
||||
#endif
|
||||
|
||||
ASSYM(MTX_UNOWNED, MTX_UNOWNED);
|
||||
ASSYM(MTX_SPIN, MTX_SPIN);
|
||||
|
|
|
|||
Loading…
Reference in a new issue