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


Golang cgroups.RemovePaths函數代碼示例

本文整理匯總了Golang中github.com/opencontainers/runc/libcontainer/cgroups.RemovePaths函數的典型用法代碼示例。如果您正苦於以下問題:Golang RemovePaths函數的具體用法?Golang RemovePaths怎麽用?Golang RemovePaths使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: Apply

func (m *Manager) Apply(pid int) (err error) {
	if m.Cgroups == nil {
		return nil
	}

	d, err := getCgroupData(m.Cgroups, pid)
	if err != nil {
		return err
	}

	paths := make(map[string]string)
	defer func() {
		if err != nil {
			cgroups.RemovePaths(paths)
		}
	}()
	for _, sys := range subsystems {
		if err := sys.Apply(d); err != nil {
			return err
		}
		// TODO: Apply should, ideally, be reentrant or be broken up into a separate
		// create and join phase so that the cgroup hierarchy for a container can be
		// created then join consists of writing the process pids to cgroup.procs
		p, err := d.path(sys.Name())
		if err != nil {
			if cgroups.IsNotFound(err) {
				continue
			}
			return err
		}
		paths[sys.Name()] = p
	}
	m.Paths = paths
	return nil
}
開發者ID:ifa6,項目名稱:runc,代碼行數:35,代碼來源:apply_raw.go

示例2: Destroy

func (m *Manager) Destroy() error {
	m.mu.Lock()
	defer m.mu.Unlock()
	if err := cgroups.RemovePaths(m.Paths); err != nil {
		return err
	}
	m.Paths = make(map[string]string)
	return nil
}
開發者ID:souravbh,項目名稱:lattice-release,代碼行數:9,代碼來源:apply_raw.go

示例3: Destroy

func (m *Manager) Destroy() error {
	m.mu.Lock()
	defer m.mu.Unlock()
	theConn.StopUnit(getUnitName(m.Cgroups), "replace", nil)
	if err := cgroups.RemovePaths(m.Paths); err != nil {
		return err
	}
	m.Paths = make(map[string]string)
	return nil
}
開發者ID:waterytowers,項目名稱:global-hack-day-3,代碼行數:10,代碼來源:apply_systemd.go


注:本文中的github.com/opencontainers/runc/libcontainer/cgroups.RemovePaths函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。