Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ddi/ddi.c

    r597fa24 r07d4271  
    6060
    6161/** This lock protects the @c pareas ordered dictionary. */
    62 static MUTEX_INITIALIZE(pareas_lock, MUTEX_PASSIVE);
     62static mutex_t pareas_lock;
    6363
    6464/** Ordered dictionary of enabled physical memory areas by base address. */
     
    7474{
    7575        odict_initialize(&pareas, pareas_getkey, pareas_cmp);
     76        mutex_initialize(&pareas_lock, MUTEX_PASSIVE);
    7677}
    7778
Note: See TracChangeset for help on using the changeset viewer.