FreeBSD Bugzilla – Attachment 235506 Details for
Bug 258056
lang/go118: musn't poll /dev/fuse
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
lang/go118 special case /dev/fuse on FreeBSD
patch-src_os_file_unix.go (text/plain), 407 bytes, created by
Keith White
on 2022-07-27 13:09:45 UTC
(
hide
)
Description:
lang/go118 special case /dev/fuse on FreeBSD
Filename:
MIME Type:
Creator:
Keith White
Created:
2022-07-27 13:09:45 UTC
Size:
407 bytes
patch
obsolete
>--- src/os/file_unix.go.orig 2022-07-12 11:22:57.000000000 -0400 >+++ src/os/file_unix.go 2022-07-27 08:35:28.234028000 -0400 >@@ -165,6 +165,10 @@ > if (runtime.GOOS == "darwin" || runtime.GOOS == "ios") && typ == syscall.S_IFIFO { > pollable = false > } >+ >+ if runtime.GOOS == "freebsd" && name == "/dev/fuse" { // /dev/fuse always reports ready for writing >+ pollable = false >+ } > } > } >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 258056
:
235480
|
235481
| 235506 |
235792
|
235811