mirror of
https://github.com/Ascend/ascend-docker-runtime.git
synced 2025-10-12 23:33:47 +08:00
11 lines
289 B
C
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 |