1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

all: remove rwshared keyword, make its semantics default for shared (#5710)

This commit is contained in:
Uwe Krüger
2020-07-07 01:57:31 +02:00
committed by GitHub
parent 013c0e6e16
commit ef02373061
14 changed files with 70 additions and 96 deletions

View File

@@ -402,6 +402,7 @@ fn C.pthread_mutex_unlock(voidptr) int
fn C.pthread_rwlockattr_init(voidptr) int
fn C.pthread_rwlockattr_setkind_np(voidptr, int) int
fn C.pthread_rwlockattr_setpshared(voidptr, int) int
fn C.pthread_rwlock_init(voidptr, voidptr) int
fn C.pthread_rwlock_rdlock(voidptr) int
fn C.pthread_rwlock_wrlock(voidptr) int