mirror of
https://github.com/vlang/v.git
synced 2025-09-08 23:07:19 -04:00
8 lines
107 B
V
8 lines
107 B
V
module sync
|
|
|
|
fn C.GetCurrentThreadId() u32
|
|
|
|
pub fn thread_id() u64 {
|
|
return u64(C.GetCurrentThreadId())
|
|
}
|