v/vlib/sync
2025-08-26 18:09:53 +03:00
..
bench sync: use SpinLock for channel (fix #24680) (#24802) 2025-06-28 14:55:06 +03:00
pool sync.pool: restore the parallel operation (surrounding the cb call in process_in_thread in a lock in 1b52538, effectively disabled parallelism) 2025-03-25 09:16:43 +02:00
stdatomic sync: fix spin lock, add destroy() and try_lock(), add valgrind annotate support (#24798) 2025-06-27 16:13:44 +03:00
threads
array_rlock_test.v
chan_mod_sync_test.v parser: fix duplicate mod imports (fix #24552) (#24559) 2025-05-24 11:05:25 +03:00
channel_1_test.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
channel_2_test.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
channel_3_test.v
channel_4_test.v
channel_array_mut_test.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
channel_close_test.v
channel_fill_test.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
channel_opt_propagate_test.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
channel_polling_test.v all: unwrap const() blocks 2023-11-25 10:02:51 +03:00
channel_push_or_1_test.v
channel_push_or_2_test.v
channel_select_2_test.v
channel_select_3_test.v
channel_select_4_test.v
channel_select_5_test.v
channel_select_6_test.v ci: remove the // vtest flaky: true tags from the remaining tests (#24379) 2025-06-19 20:16:49 +03:00
channel_select_test.v ci: remove the // vtest flaky: true tags from the remaining tests (#24379) 2025-06-19 20:16:49 +03:00
channel_try_buf_test.v
channel_try_unbuf_test.v
channels.c.v sync: use SpinLock for channel (fix #24680) (#24802) 2025-06-28 14:55:06 +03:00
channels.js.v
common_mutex.v sync: improve documentation (#24799) 2025-06-27 10:29:09 +03:00
cond.v sync: improve documentation (#24799) 2025-06-27 10:29:09 +03:00
cond_test.v sync: add condition support (#24574) 2025-05-29 18:00:17 +03:00
empty_struct_chan_init_test.v
many_times.v all: replace fn name '@xxx' with 'xxx' (#22506) 2024-10-12 22:17:02 +03:00
many_times_test.v tools: cleanup entries from the hardcoded skip_files list in common.v (used by v test, v test-self etc); use the new // vtest build: syntax to mark the tests instead (#23918) 2025-03-13 19:51:51 +02:00
mutex_test.v all: replace fn name '@xxx' with 'xxx' (#22506) 2024-10-12 22:17:02 +03:00
once.v sync: improve documentation (#24799) 2025-06-27 10:29:09 +03:00
once_test.v tools: cleanup entries from the hardcoded skip_files list in common.v (used by v test, v test-self etc); use the new // vtest build: syntax to mark the tests instead (#23918) 2025-03-13 19:51:51 +02:00
once_with_param_test.v
README.md doc: update trim_doc_node_description, make module readmes more uniform (#20792) 2024-02-12 12:38:47 +02:00
rwmutex_test.v all: replace fn name '@xxx' with 'xxx' (#22506) 2024-10-12 22:17:02 +03:00
select_close_test.v sync: increase retries for vlib/sync/select_close_test.v to 3, to reduce CI false positives in the gcc-windows job 2025-06-08 12:56:08 +03:00
spinlock_test.v sync: fix spin lock, add destroy() and try_lock(), add valgrind annotate support (#24798) 2025-06-27 16:13:44 +03:00
struct_chan_init_test.v
sync.c.v sync: fix spin lock, add destroy() and try_lock(), add valgrind annotate support (#24798) 2025-06-27 16:13:44 +03:00
sync_darwin.c.v sync: remove the call to C.pthread_rwlockattr_setpshared (not needed, since it is the default on POSIX) (#24166) 2025-04-09 13:13:29 +03:00
sync_default.c.v sync: improve documentation (#24799) 2025-06-27 10:29:09 +03:00
sync_freebsd.c.v sync: remove the call to C.pthread_rwlockattr_setpshared (not needed, since it is the default on POSIX) (#24166) 2025-04-09 13:13:29 +03:00
sync_windows.c.v os,sync: enable running v -cross -o x.c cmd/v on windows too (part 1, fix V errors) 2025-08-26 18:09:53 +03:00
thread_default.c.v
thread_test.v
thread_windows.c.v sync: add thread local storage (TLS) support (#24849) 2025-07-06 17:42:33 +03:00
tls.v sync: add thread local storage (TLS) support (#24849) 2025-07-06 17:42:33 +03:00
tls_default.c.v sync: add thread local storage (TLS) support (#24849) 2025-07-06 17:42:33 +03:00
tls_test.v sync: add thread local storage (TLS) support (#24849) 2025-07-06 17:42:33 +03:00
tls_windows.c.v sync: add thread local storage (TLS) support (#24849) 2025-07-06 17:42:33 +03:00
waitgroup.c.v sync: improve documentation (#24799) 2025-06-27 10:29:09 +03:00
waitgroup_test.v sync: use an atomic counter in test_waitgroup_go in waitgroup_test.v 2025-06-30 21:57:26 +03:00

Description

sync provides cross platform handling of concurrency primitives.