Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
604b91a4
Commit
604b91a4
authored
Aug 08, 2011
by
Joel Sing
Committed by
Russ Cox
Aug 08, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
os: add support for openbsd
R=rsc CC=golang-dev
https://golang.org/cl/4798061
parent
9c2ebab8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
0 deletions
+44
-0
src/pkg/os/Makefile
src/pkg/os/Makefile
+12
-0
src/pkg/os/stat_openbsd.go
src/pkg/os/stat_openbsd.go
+32
-0
No files found.
src/pkg/os/Makefile
View file @
604b91a4
...
...
@@ -53,6 +53,18 @@ GOFILES_linux=\
exec_unix.go
\
signal_unix.go
\
GOFILES_openbsd
=
\
dir_unix.go
\
error_posix.go
\
env_unix.go
\
file_posix.go
\
file_unix.go
\
path_unix.go
\
sys_bsd.go
\
exec_posix.go
\
exec_unix.go
\
signal_unix.go
\
GOFILES_windows
=
\
dir_windows.go
\
error_posix.go
\
...
...
src/pkg/os/stat_openbsd.go
0 → 100644
View file @
604b91a4
// Copyright 2009 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"
func
isSymlink
(
stat
*
syscall
.
Stat_t
)
bool
{
return
stat
.
Mode
&
syscall
.
S_IFMT
==
syscall
.
S_IFLNK
}
func
fileInfoFromStat
(
name
string
,
fi
*
FileInfo
,
lstat
,
stat
*
syscall
.
Stat_t
)
*
FileInfo
{
fi
.
Dev
=
uint64
(
stat
.
Dev
)
fi
.
Ino
=
uint64
(
stat
.
Ino
)
fi
.
Nlink
=
uint64
(
stat
.
Nlink
)
fi
.
Mode
=
uint32
(
stat
.
Mode
)
fi
.
Uid
=
int
(
stat
.
Uid
)
fi
.
Gid
=
int
(
stat
.
Gid
)
fi
.
Rdev
=
uint64
(
stat
.
Rdev
)
fi
.
Size
=
int64
(
stat
.
Size
)
fi
.
Blksize
=
int64
(
stat
.
Blksize
)
fi
.
Blocks
=
stat
.
Blocks
fi
.
Atime_ns
=
syscall
.
TimespecToNsec
(
stat
.
Atim
)
fi
.
Mtime_ns
=
syscall
.
TimespecToNsec
(
stat
.
Mtim
)
fi
.
Ctime_ns
=
syscall
.
TimespecToNsec
(
stat
.
Ctim
)
fi
.
Name
=
basename
(
name
)
if
isSymlink
(
lstat
)
&&
!
isSymlink
(
stat
)
{
fi
.
FollowedSymlink
=
true
}
return
fi
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment