mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
sync: add sync.thread_id() u64 { (#13810)
This commit is contained in:
7
vlib/sync/thread_windows.c.v
Normal file
7
vlib/sync/thread_windows.c.v
Normal file
@@ -0,0 +1,7 @@
|
||||
module sync
|
||||
|
||||
fn C.GetCurrentThreadId() u32
|
||||
|
||||
pub fn thread_id() u64 {
|
||||
return u64(C.GetCurrentThreadId())
|
||||
}
|
||||
Reference in New Issue
Block a user