v/vlib/sync/sync_nix.v

34 lines
704 B
V
Raw Normal View History

2019-06-23 02:21:30 +00: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 19:53:22 +00:00
module sync
#include <pthread.h>
2019-11-24 03:27:02 +00:00
fn C.pthread_mutex_init()
2019-12-21 22:41:42 +00:00
2019-11-24 03:27:02 +00:00
fn C.pthread_mutex_lock()
2019-12-21 22:41:42 +00:00
fn C.pthread_mutex_unlock()
// [init_with=new_mutex] // TODO: implement support for this struct attribute, and disallow Mutex{} from outside the sync.new_mutex() function.
pub struct Mutex {
2019-06-22 19:53:22 +00:00
mutex C.pthread_mutex_t
}
2019-10-25 14:24:40 +00:00
pub fn new_mutex() Mutex {
2019-12-21 22:41:42 +00:00
m := Mutex{
}
C.pthread_mutex_init(&m.mutex, C.NULL)
2019-10-25 14:24:40 +00:00
return m
}
2019-07-29 13:19:29 +00:00
pub fn (m mut Mutex) lock() {
2019-06-22 19:53:22 +00:00
C.pthread_mutex_lock(&m.mutex)
}
2019-07-29 13:19:29 +00:00
pub fn (m mut Mutex) unlock() {
2019-06-22 19:53:22 +00:00
C.pthread_mutex_unlock(&m.mutex)
}