-lock_state::lock_state(const lock_state & other) {
- *this = other;
-}
-
-lock_state & lock_state::operator=(const lock_state & o) {
- held = o.held;
- held_by = o.held_by;
- wanted_by = o.wanted_by;
- old_requests = o.old_requests;
- return *this;
-}
-
-lock_state & lock_server::get_lock_state(lock_protocol::lockid_t lid) {