summaryrefslogtreecommitdiff
path: root/src/memb/tupel.tmpl
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:44 +0200
commitc8b2ef7b899766d04562f7e04a84251cea8fa701 (patch)
tree52816b17c17e2db0cf89e68537ad1a52392f1510 /src/memb/tupel.tmpl
parentca28c0e618890330d429c0dc12429255b20f0c90 (diff)
tagging ychat-0.8.0ychat-0.8.0
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 bdde516..ab42748 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);
}