gcc/libgo/go/net/newpollserver_rtems.go
Ian Lance Taylor e0f69f36ea libgo: change build procedure to use build tags
Previously the libgo Makefile explicitly listed the set of files to
    compile for each package.  For packages that use build tags, this
    required a lot of awkward automake conditionals in the Makefile.
    
    This CL changes the build to look at the build tags in the files.
    The new shell script libgo/match.sh does the matching.  This required
    adjusting a lot of build tags, and removing some files that are never
    used.  I verified that the exact same sets of files are compiled on
    amd64 GNU/Linux.  I also tested the build on i386 Solaris.
    
    Writing match.sh revealed some bugs in the build tag handling that
    already exists, in a slightly different form, in the gotest shell
    script.  This CL fixes those problems as well.
    
    The old code used automake conditionals to handle systems that were
    missing strerror_r and wait4.  Rather than deal with those in Go, those
    functions are now implemented in runtime/go-nosys.c when necessary, so
    the Go code can simply assume that they exist.
    
    The os testsuite looked for dir_unix.go, which was never built for gccgo
    and has now been removed.  I changed the testsuite to look for dir.go
    instead.
    
    Reviewed-on: https://go-review.googlesource.com/25546

From-SVN: r239189
2016-08-06 00:36:33 +00:00

81 lines
1.8 KiB
Go

// Copyright 2010 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build rtems
package net
import (
"os"
"syscall"
)
func selfConnectedTCPSocket() (pr, pw *os.File, err error) {
// See ../syscall/exec.go for description of ForkLock.
syscall.ForkLock.RLock()
sockfd, e := syscall.Socket(syscall.AF_INET, syscall.SOCK_STREAM, 0)
if e != 0 {
syscall.ForkLock.RUnlock()
return nil, nil, os.Errno(e)
}
syscall.CloseOnExec(sockfd)
syscall.ForkLock.RUnlock()
// Allow reuse of recently-used addresses.
syscall.SetsockoptInt(sockfd, syscall.SOL_SOCKET, syscall.SO_REUSEADDR, 1)
var laTCP *TCPAddr
var la syscall.Sockaddr
if laTCP, err = ResolveTCPAddr("127.0.0.1:0"); err != nil {
Error:
return nil, nil, err
}
if la, err = laTCP.sockaddr(syscall.AF_INET); err != nil {
goto Error
}
e = syscall.Bind(sockfd, la)
if e != 0 {
Errno:
syscall.Close(sockfd)
return nil, nil, os.Errno(e)
}
laddr, _ := syscall.Getsockname(sockfd)
e = syscall.Connect(sockfd, laddr)
if e != 0 {
goto Errno
}
fd := os.NewFile(sockfd, "wakeupSocket")
return fd, fd, nil
}
func newPollServer() (s *pollServer, err error) {
s = new(pollServer)
s.cr = make(chan *netFD, 1)
s.cw = make(chan *netFD, 1)
// s.pr and s.pw are indistinguishable.
if s.pr, s.pw, err = selfConnectedTCPSocket(); err != nil {
return nil, err
}
var e int
if e = syscall.SetNonblock(s.pr.Fd(), true); e != 0 {
Errno:
err = &os.PathError{"setnonblock", s.pr.Name(), os.Errno(e)}
Error:
s.pr.Close()
return nil, err
}
if s.poll, err = newpollster(); err != nil {
goto Error
}
if _, err = s.poll.AddFD(s.pr.Fd(), 'r', true); err != nil {
s.poll.Close()
goto Error
}
s.pending = make(map[int]*netFD)
go s.Run()
return s, nil
}