-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
// Copyright (c) 2020 Meng Huang ([email protected]) | ||
// This package is licensed under a MIT license that can be found in the LICENSE file. | ||
|
||
//go:build !linux && !darwin && !dragonfly && !freebsd && !netbsd && !openbsd | ||
// +build !linux,!darwin,!dragonfly,!freebsd,!netbsd,!openbsd | ||
|
||
package netpoll | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
// Copyright (c) 2020 Meng Huang ([email protected]) | ||
// This package is licensed under a MIT license that can be found in the LICENSE file. | ||
|
||
//go:build darwin || dragonfly || freebsd || netbsd || openbsd | ||
// +build darwin dragonfly freebsd netbsd openbsd | ||
|
||
package netpoll | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
// Copyright (c) 2020 Meng Huang ([email protected]) | ||
// This package is licensed under a MIT license that can be found in the LICENSE file. | ||
|
||
//go:build linux | ||
// +build linux | ||
|
||
package netpoll | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
// Copyright (c) 2020 Meng Huang ([email protected]) | ||
// This package is licensed under a MIT license that can be found in the LICENSE file. | ||
|
||
//go:build !linux && !darwin && !dragonfly && !freebsd && !netbsd && !openbsd | ||
// +build !linux,!darwin,!dragonfly,!freebsd,!netbsd,!openbsd | ||
|
||
package netpoll | ||
|