diff options
Diffstat (limited to 'src/memb/tupel.tmpl')
| -rw-r--r-- | src/memb/tupel.tmpl | 14 |
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); } |
