Changeset 29e7cc7 in mainline for kernel/generic/src/ddi/ddi.c
- Timestamp:
- 2025-04-18T15:14:10Z (2 months ago)
- Children:
- e77c3ed
- Parents:
- 800d188 (diff), 25fdb2d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ddi/ddi.c
r800d188 r29e7cc7 60 60 61 61 /** This lock protects the @c pareas ordered dictionary. */ 62 static mutex_t pareas_lock;62 static MUTEX_INITIALIZE(pareas_lock, MUTEX_PASSIVE); 63 63 64 64 /** Ordered dictionary of enabled physical memory areas by base address. */ … … 74 74 { 75 75 odict_initialize(&pareas, pareas_getkey, pareas_cmp); 76 mutex_initialize(&pareas_lock, MUTEX_PASSIVE);77 76 } 78 77
Note:
See TracChangeset
for help on using the changeset viewer.