libvirt/src/cgroup.h

47 lines
1.0 KiB
C
Raw Normal View History

/*
* cgroup.h: Interface to tools for managing cgroups
*
* Copyright IBM Corp. 2008
*
* See COPYING.LIB for the License of this software
*
* Authors:
* Dan Smith <danms@us.ibm.com>
*/
#ifndef CGROUP_H
#define CGROUP_H
#include <stdint.h>
struct virCgroup;
typedef struct virCgroup *virCgroupPtr;
#include "domain_conf.h"
int virCgroupHaveSupport(void);
int virCgroupForDomain(virDomainDefPtr def,
const char *driverName,
virCgroupPtr *group);
int virCgroupAddTask(virCgroupPtr group, pid_t pid);
int virCgroupSetMemory(virCgroupPtr group, unsigned long kb);
int virCgroupDenyAllDevices(virCgroupPtr group);
int virCgroupAllowDevice(virCgroupPtr group,
char type,
int major,
int minor);
int virCgroupSetCpuShares(virCgroupPtr group, unsigned long shares);
int virCgroupGetCpuShares(virCgroupPtr group, unsigned long *shares);
int virCgroupRemove(virCgroupPtr group);
void virCgroupFree(virCgroupPtr *group);
#endif /* CGROUP_H */