mirror of
https://github.com/golang/go
synced 2024-11-06 14:26:22 -07:00
4a2915052b
This reverts commit f25f6eab0c
.
Sorry, this was not meant to go in without the ztypes_freebsd_arm.go and the copyFromV9 function.
Change-Id: I4ac2a8a23809ec1b1b9e42992cd0f3c349848f06
Reviewed-on: https://go-review.googlesource.com/17472
Run-TryBot: Mikio Hara <mikioh.mikioh@gmail.com>
Run-TryBot: Alex Brainman <alex.brainman@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
20 lines
710 B
Go
20 lines
710 B
Go
// Copyright 2014 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 freebsd,amd64
|
|
|
|
package syscall
|
|
|
|
import "unsafe"
|
|
|
|
func (any *anyMessage) parseRouteMessage(b []byte) *RouteMessage {
|
|
p := (*RouteMessage)(unsafe.Pointer(any))
|
|
return &RouteMessage{Header: p.Header, Data: b[rsaAlignOf(int(unsafe.Offsetof(p.Header.Rmx))+SizeofRtMetrics):any.Msglen]}
|
|
}
|
|
|
|
func (any *anyMessage) parseInterfaceMessage(b []byte) *InterfaceMessage {
|
|
p := (*InterfaceMessage)(unsafe.Pointer(any))
|
|
return &InterfaceMessage{Header: p.Header, Data: b[int(unsafe.Offsetof(p.Header.Data))+int(p.Header.Data.Datalen) : any.Msglen]}
|
|
}
|