2019-06-23 05:21:30 +03:00
|
|
|
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
|
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
2019-06-22 22:53:22 +03:00
|
|
|
module sync
|
|
|
|
|
|
|
|
#include <pthread.h>
|
2019-10-25 17:24:40 +03:00
|
|
|
|
2019-11-24 06:27:02 +03:00
|
|
|
fn C.pthread_mutex_init()
|
|
|
|
fn C.pthread_mutex_lock()
|
|
|
|
fn C.pthread_mutex_unlock()
|
|
|
|
|
|
|
|
|
2019-10-25 17:24:40 +03:00
|
|
|
//[init_with=new_mutex] // TODO: implement support for this struct attribute, and disallow Mutex{} from outside the sync.new_mutex() function.
|
2019-10-24 13:19:27 +03:00
|
|
|
pub struct Mutex {
|
2019-06-22 22:53:22 +03:00
|
|
|
mutex C.pthread_mutex_t
|
|
|
|
}
|
|
|
|
|
2019-10-25 17:24:40 +03:00
|
|
|
pub fn new_mutex() Mutex {
|
|
|
|
m := Mutex{}
|
|
|
|
C.pthread_mutex_init( &m.mutex, C.NULL)
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
2019-07-29 16:19:29 +03:00
|
|
|
pub fn (m mut Mutex) lock() {
|
2019-06-22 22:53:22 +03:00
|
|
|
C.pthread_mutex_lock(&m.mutex)
|
|
|
|
}
|
|
|
|
|
2019-07-29 16:19:29 +03:00
|
|
|
pub fn (m mut Mutex) unlock() {
|
2019-06-22 22:53:22 +03:00
|
|
|
C.pthread_mutex_unlock(&m.mutex)
|
|
|
|
}
|
|
|
|
|