Skip to content

Commit 0ba3931

Browse files
committed
Mitigate #252.
1 parent 9e4258b commit 0ba3931

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

vfs/shm_windows.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ type vfsShm struct {
3333
sync.Mutex
3434
}
3535

36-
var _ blockingSharedMemory = &vfsShm{}
36+
// var _ blockingSharedMemory = &vfsShm{}
3737

3838
func (s *vfsShm) Close() error {
3939
// Unmap regions.
@@ -185,6 +185,6 @@ func (s *vfsShm) shmUnmap(delete bool) {
185185
}
186186
}
187187

188-
func (s *vfsShm) shmEnableBlocking(block bool) {
189-
s.blocking = block
190-
}
188+
// func (s *vfsShm) shmEnableBlocking(block bool) {
189+
// s.blocking = block
190+
// }

0 commit comments

Comments
 (0)