1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/sync/sync_nix.v
Richard Warburton 6701c3b263 Fixes #1362
2019-07-29 16:32:39 +02:00

20 lines
377 B
V

// 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 mut Mutex) lock() {
C.pthread_mutex_lock(&m.mutex)
}
pub fn (m mut Mutex) unlock() {
C.pthread_mutex_unlock(&m.mutex)
}