Skip to content

Commit

Permalink
fix timeout event duplicate
Browse files Browse the repository at this point in the history
  • Loading branch information
cheng-zhongliang committed Oct 6, 2023
1 parent a1c1b8e commit cf0c8d6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions epoll.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
//go:build linux
// +build linux

// Copyright (c) 2023 cheng-zhongliang. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build linux
// +build linux

package event

import (
Expand Down
6 changes: 3 additions & 3 deletions kqueue.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
//go:build darwin || dragonfly || freebsd || netbsd || openbsd
// +build darwin dragonfly freebsd netbsd openbsd

// Copyright (c) 2023 cheng-zhongliang. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build darwin || dragonfly || freebsd || netbsd || openbsd
// +build darwin dragonfly freebsd netbsd openbsd

package event

import (
Expand Down

0 comments on commit cf0c8d6

Please sign in to comment.