Files
ascend-docker-runtime/cli/src/ns.h
2020-07-04 18:31:47 +08:00

11 lines
289 B
C

#ifndef _NS_H
#define _NS_H
#include <sys/types.h>
int GetNsPath(const int pid, const char *nsType, char *buf, size_t bufSize);
int GetSelfNsPath(const char *nsType, char *buf, size_t bufSize);
int EnterNsByFd(int fd, int nsType);
int EnterNsByPath(const char *path, int nsType);
#endif