Update powerpc64-linux-gnu/baseline_symbols.txt
[official-gcc.git] / libgo / go / net / main_cloexec_test.go
blobfa1ed0205723b2f9a570dad0bc5b761a817bfe4c
1 // Copyright 2015 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // +build dragonfly freebsd linux
7 package net
9 import "internal/poll"
11 func init() {
12 extraTestHookInstallers = append(extraTestHookInstallers, installAccept4TestHook)
13 extraTestHookUninstallers = append(extraTestHookUninstallers, uninstallAccept4TestHook)
16 var (
17 // Placeholders for saving original socket system calls.
18 origAccept4 = poll.Accept4Func
21 func installAccept4TestHook() {
22 poll.Accept4Func = sw.Accept4
25 func uninstallAccept4TestHook() {
26 poll.Accept4Func = origAccept4