Changeset dc747e3 in mainline for generic/include/mm
- Timestamp:
- 2005-12-15T10:27:59Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7dd2561
- Parents:
- 3fc03fd
- Location:
- generic/include/mm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/include/mm/frame.h
r3fc03fd rdc747e3 55 55 link_t link; /**< link to previous and next zone */ 56 56 57 spinlock_t lock; /**< this lock protects everything below */57 SPINLOCK_DECLARE(lock); /**< this lock protects everything below */ 58 58 __address base; /**< physical address of the first frame in the frames array */ 59 59 frame_t *frames; /**< array of frame_t structures in this zone */ -
generic/include/mm/vm.h
r3fc03fd rdc747e3 58 58 */ 59 59 struct vm_area { 60 spinlock_t lock;60 SPINLOCK_DECLARE(lock); 61 61 link_t link; 62 62 vm_type_t type; … … 73 73 */ 74 74 struct vm { 75 spinlock_t lock;75 SPINLOCK_DECLARE(lock); 76 76 link_t vm_area_head; 77 77 pte_t *ptl0;
Note:
See TracChangeset
for help on using the changeset viewer.
