1
0
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:
Alexander Medvednikov
2019-07-15 19:19:53 +02:00
parent b36a9f7e55
commit 449fd372f9
7 changed files with 5 additions and 19 deletions

19
vlib/sync/sync_nix.v Normal file
View 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)
}