From 11bd7a3e906795b46b1fd20276a28002978bf1ab Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Sat, 2 Mar 2013 22:55:51 -0800 Subject: [PATCH] mutex: fix indentation --- mutex.cc | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/mutex.cc b/mutex.cc index 1450005..0bb627d 100644 --- a/mutex.cc +++ b/mutex.cc @@ -6,23 +6,28 @@ #include "action.h" namespace std { -mutex::mutex() { - state.islocked=false; - thread_id_t tid=thread_current()->get_id(); - state.alloc_tid=tid; - state.alloc_clock=model->get_cv(tid)->getClock(tid); + +mutex::mutex() +{ + state.islocked = false; + thread_id_t tid = thread_current()->get_id(); + state.alloc_tid = tid; + state.alloc_clock = model->get_cv(tid)->getClock(tid); } -void mutex::lock() { - model->switch_to_master(new ModelAction(ATOMIC_LOCK, std::memory_order_seq_cst, this)); +void mutex::lock() +{ + model->switch_to_master(new ModelAction(ATOMIC_LOCK, std::memory_order_seq_cst, this)); } -bool mutex::try_lock() { - return model->switch_to_master(new ModelAction(ATOMIC_TRYLOCK, std::memory_order_seq_cst, this)); +bool mutex::try_lock() +{ + return model->switch_to_master(new ModelAction(ATOMIC_TRYLOCK, std::memory_order_seq_cst, this)); } -void mutex::unlock() { - model->switch_to_master(new ModelAction(ATOMIC_UNLOCK, std::memory_order_seq_cst, this)); +void mutex::unlock() +{ + model->switch_to_master(new ModelAction(ATOMIC_UNLOCK, std::memory_order_seq_cst, this)); } } -- 2.34.1