當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Header.Devminor方法代碼示例

本文整理匯總了Golang中github.com/docker/docker/vendor/src/code/google/com/p/go/src/pkg/archive/tar.Header.Devminor方法的典型用法代碼示例。如果您正苦於以下問題:Golang Header.Devminor方法的具體用法?Golang Header.Devminor怎麽用?Golang Header.Devminor使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/docker/docker/vendor/src/code/google/com/p/go/src/pkg/archive/tar.Header的用法示例。


在下文中一共展示了Header.Devminor方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: setHeaderForSpecialDevice

func setHeaderForSpecialDevice(hdr *tar.Header, ta *tarAppender, name string, stat interface{}) (nlink uint32, inode uint64, err error) {
	s, ok := stat.(*syscall.Stat_t)

	if !ok {
		err = errors.New("cannot convert stat value to syscall.Stat_t")
		return
	}

	nlink = uint32(s.Nlink)
	inode = uint64(s.Ino)

	// Currently go does not fil in the major/minors
	if s.Mode&syscall.S_IFBLK == syscall.S_IFBLK ||
		s.Mode&syscall.S_IFCHR == syscall.S_IFCHR {
		hdr.Devmajor = int64(major(uint64(s.Rdev)))
		hdr.Devminor = int64(minor(uint64(s.Rdev)))
	}

	return
}
開發者ID:Crispy1975,項目名稱:deis,代碼行數:20,代碼來源:archive_unix.go


注:本文中的github.com/docker/docker/vendor/src/code/google/com/p/go/src/pkg/archive/tar.Header.Devminor方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。