v/vlib/sync/sync_nix.c.v

27 lines
631 B
V
Raw Normal View History

2020-01-23 20:04:46 +00:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
2019-06-23 02:21:30 +00:00
// 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
#flag -lpthread
2019-12-21 22:41:42 +00:00
// [init_with=new_mutex] // TODO: implement support for this struct attribute, and disallow Mutex{} from outside the sync.new_mutex() function.
[ref_only]
pub struct Mutex {
2019-06-22 19:53:22 +00:00
mutex C.pthread_mutex_t
}
pub fn new_mutex() &Mutex {
m := &Mutex{}
2019-12-21 22:41:42 +00:00
C.pthread_mutex_init(&m.mutex, C.NULL)
2019-10-25 14:24:40 +00:00
return m
}
2020-05-17 11:51:18 +00:00
pub fn (mut m Mutex) lock() {
2019-06-22 19:53:22 +00:00
C.pthread_mutex_lock(&m.mutex)
}
2020-05-17 11:51:18 +00:00
pub fn (mut m Mutex) unlock() {
2019-06-22 19:53:22 +00:00
C.pthread_mutex_unlock(&m.mutex)
}