mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
MFi386: revision 1.507.
This commit is contained in:
parent
f642c834f4
commit
f9c7a90bef
2 changed files with 2 additions and 2 deletions
|
|
@ -1764,7 +1764,7 @@ init386(first)
|
|||
*/
|
||||
mtx_init(&Giant, "Giant", MTX_DEF | MTX_RECURSE);
|
||||
mtx_init(&sched_lock, "sched lock", MTX_SPIN | MTX_RECURSE);
|
||||
mtx_init(&proc0.p_mtx, "process lock", MTX_DEF);
|
||||
mtx_init(&proc0.p_mtx, "process lock", MTX_DEF|MTX_DUPOK);
|
||||
mtx_init(&clock_lock, "clk", MTX_SPIN | MTX_RECURSE);
|
||||
mtx_init(&icu_lock, "icu", MTX_SPIN | MTX_NOWITNESS);
|
||||
mtx_lock(&Giant);
|
||||
|
|
|
|||
|
|
@ -1764,7 +1764,7 @@ init386(first)
|
|||
*/
|
||||
mtx_init(&Giant, "Giant", MTX_DEF | MTX_RECURSE);
|
||||
mtx_init(&sched_lock, "sched lock", MTX_SPIN | MTX_RECURSE);
|
||||
mtx_init(&proc0.p_mtx, "process lock", MTX_DEF);
|
||||
mtx_init(&proc0.p_mtx, "process lock", MTX_DEF|MTX_DUPOK);
|
||||
mtx_init(&clock_lock, "clk", MTX_SPIN | MTX_RECURSE);
|
||||
mtx_init(&icu_lock, "icu", MTX_SPIN | MTX_NOWITNESS);
|
||||
mtx_lock(&Giant);
|
||||
|
|
|
|||
Loading…
Reference in a new issue