1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//! Thread and synchronization utilities
//!
//! This module provides advanced synchronization primitives including:
//! - Linux Futex Integration for high-performance synchronization
//! - Instance-Specific Thread-Local Storage management
//! - Atomic Operations Framework for lock-free programming
pub use *;
pub use *;
pub use *;
use crateResult;
/// Cross-platform synchronization trait
/// Platform-specific implementation selector
pub type DefaultPlatformSync = crateLinuxFutex;
pub type DefaultPlatformSync = crateFallbackSync;
;