mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
*_nix.v support
This commit is contained in:
19
vlib/sync/sync_nix.v
Normal file
19
vlib/sync/sync_nix.v
Normal file
@ -0,0 +1,19 @@
|
||||
// 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.
|
||||
|
||||
module sync
|
||||
|
||||
#include <pthread.h>
|
||||
struct Mutex {
|
||||
mutex C.pthread_mutex_t
|
||||
}
|
||||
|
||||
pub fn (m Mutex) lock() {
|
||||
C.pthread_mutex_lock(&m.mutex)
|
||||
}
|
||||
|
||||
pub fn (m Mutex) unlock() {
|
||||
C.pthread_mutex_unlock(&m.mutex)
|
||||
}
|
||||
|
Reference in New Issue
Block a user