1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/sync/sync_mac.v
Alexander Medvednikov 2ca6859982 sync public fns
2019-06-26 18:29:43 +02:00

20 lines
369 B
Go

// 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)
}