diff options
Diffstat (limited to 'src/rt/util')
| -rw-r--r-- | src/rt/util/synchronized_indexed_list.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/rt/util/synchronized_indexed_list.h b/src/rt/util/synchronized_indexed_list.h index a7f79a74..a373db66 100644 --- a/src/rt/util/synchronized_indexed_list.h +++ b/src/rt/util/synchronized_indexed_list.h @@ -6,14 +6,8 @@ template<typename T> class synchronized_indexed_list : public indexed_list<T> { spin_lock _lock; -public: - /** - * Clients can use this global lock that is associated with the list to - * perform more coarse grained locking. Internally, the synchronized list - * doesn'tactually make any use of this lock. - */ - spin_lock global; +public: synchronized_indexed_list(memory_region *region) : indexed_list<T>(region) { // Nop. |