From c8b2ef7b899766d04562f7e04a84251cea8fa701 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 6 Apr 2013 13:14:44 +0200 Subject: tagging ychat-0.8.0 --- src/memb/tupel.tmpl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/memb/tupel.tmpl') diff --git a/src/memb/tupel.tmpl b/src/memb/tupel.tmpl index bdde516..ab42748 100644 --- a/src/memb/tupel.tmpl +++ b/src/memb/tupel.tmpl @@ -1,29 +1,29 @@ template tupel::tupel() { - pthread_mutex_init( &mut_tupel, NULL ); + pthread_mutex_init(&mut_tupel, NULL); } template tupel::tupel(obj_type t_obj) { this->t_obj = t_obj; - pthread_mutex_init( &mut_tupel, NULL ); + pthread_mutex_init(&mut_tupel, NULL); } template tupel::~tupel() { - pthread_mutex_destroy( &mut_tupel ); + pthread_mutex_destroy(&mut_tupel); } template obj_type tupel::get_elem() { - pthread_mutex_lock( &mut_tupel ); + pthread_mutex_lock(&mut_tupel); obj_type t_ret = t_obj; - pthread_mutex_unlock( &mut_tupel ); + pthread_mutex_unlock(&mut_tupel); return t_ret; } @@ -31,7 +31,7 @@ template void tupel::set_elem(obj_type t_obj) { - pthread_mutex_lock( &mut_tupel ); + pthread_mutex_lock(&mut_tupel); this->t_obj = t_obj; - pthread_mutex_unlock( &mut_tupel ); + pthread_mutex_unlock(&mut_tupel); } -- cgit v1.2.3