File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -490,7 +490,7 @@ mod event {
490
490
#[ instantiate_tests( <iceoryx2_cal:: event:: sem_bitset_process_local:: Event >) ]
491
491
mod sem_bitset_process_local { }
492
492
493
- #[ cfg( not( target_os = "macos" ) ) ]
493
+ #[ cfg( not( any ( target_os = "macos" , target_os = "windows" ) ) ) ]
494
494
#[ instantiate_tests( <iceoryx2_cal:: event:: sem_bitset_posix_shared_memory:: Event >) ]
495
495
mod sem_bitset_posix_shared_memory { }
496
496
}
Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ impl crate::service::Service for Service {
52
52
type ServiceNameHasher = hash:: sha1:: Sha1 ;
53
53
type SharedMemory = shared_memory:: posix:: Memory < PoolAllocator > ;
54
54
type Connection = zero_copy_connection:: posix_shared_memory:: Connection ;
55
- #[ cfg( not( target_os = "macos" ) ) ]
55
+ #[ cfg( not( any ( target_os = "macos" , target_os = "windows" ) ) ) ]
56
56
type Event = event:: sem_bitset_posix_shared_memory:: Event ;
57
- #[ cfg( target_os = "macos" ) ]
57
+ #[ cfg( any ( target_os = "macos" , target_os = "windows" ) ) ]
58
58
type Event = event:: unix_datagram_socket:: EventImpl ;
59
59
60
60
fn from_state ( state : ServiceState < Self :: StaticStorage , Self :: DynamicStorage > ) -> Self {
You can’t perform that action at this time.
0 commit comments