mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-05 11:37:46 +00:00
60b483bd3b
Revert this once syscall.seek is implemented cf. https://github.com/tinygo-org/tinygo/issues/1906
43 lines
1016 B
Go
43 lines
1016 B
Go
// +build darwin linux,!baremetal
|
|
|
|
// Copyright 2016 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.
|
|
|
|
package os
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// Sync is a stub, not yet implemented
|
|
func (f *File) Sync() error {
|
|
return ErrNotImplemented
|
|
}
|
|
|
|
// statNolog stats a file with no test logging.
|
|
func statNolog(name string) (FileInfo, error) {
|
|
var fs fileStat
|
|
err := ignoringEINTR(func() error {
|
|
return handleSyscallError(syscall.Stat(name, &fs.sys))
|
|
})
|
|
if err != nil {
|
|
return nil, &PathError{Op: "stat", Path: name, Err: err}
|
|
}
|
|
fillFileStatFromSys(&fs, name)
|
|
return &fs, nil
|
|
}
|
|
|
|
// lstatNolog lstats a file with no test logging.
|
|
func lstatNolog(name string) (FileInfo, error) {
|
|
var fs fileStat
|
|
err := ignoringEINTR(func() error {
|
|
return handleSyscallError(syscall.Lstat(name, &fs.sys))
|
|
})
|
|
if err != nil {
|
|
return nil, &PathError{Op: "lstat", Path: name, Err: err}
|
|
}
|
|
fillFileStatFromSys(&fs, name)
|
|
return &fs, nil
|
|
}
|