summaryrefslogtreecommitdiff
path: root/src/memb/tupel.tmpl
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:48 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:48 +0200
commit4ecbf33fae730bc79c4a47e6efda615b104754ad (patch)
treedd59412b6d8bea88995211f60b786728ac30acc4 /src/memb/tupel.tmpl
parentbf5fc4cc4a15e8e57db58c2e065e0f5adbd8e800 (diff)
tagging ychat-0.7.8ychat-0.7.8
Diffstat (limited to 'src/memb/tupel.tmpl')
-rw-r--r--src/memb/tupel.tmpl14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/memb/tupel.tmpl b/src/memb/tupel.tmpl
index ab42748..bdde516 100644
--- a/src/memb/tupel.tmpl
+++ b/src/memb/tupel.tmpl
@@ -1,29 +1,29 @@
template<class obj_type>
tupel<obj_type>::tupel()
{
- pthread_mutex_init(&mut_tupel, NULL);
+ pthread_mutex_init( &mut_tupel, NULL );
}
template<class obj_type>
tupel<obj_type>::tupel(obj_type t_obj)
{
this->t_obj = t_obj;
- pthread_mutex_init(&mut_tupel, NULL);
+ pthread_mutex_init( &mut_tupel, NULL );
}
template<class obj_type>
tupel<obj_type>::~tupel()
{
- pthread_mutex_destroy(&mut_tupel);
+ pthread_mutex_destroy( &mut_tupel );
}
template<class obj_type>
obj_type
tupel<obj_type>::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<class obj_type>
void
tupel<obj_type>::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 );
}