How the process task structure is different in both docker and the host process any specific module is differed in docker apart from host?
相关问题
- Docker task in Azure devops won't accept "$(pw
- how to get running process information in java?
- Unable to run mariadb when mount volume
- Stop child process when parent process stops
- Unspecified error (0x80004005) while running a Doc
Since processed are represented in kernel by structure called ‘
task_struct
', that structure is the same in a container.A container is based on system calls to the host kernel, and any kernel-related structure comes directly from said kernel.
See "Architecting Containers: Why Understanding User Space vs. Kernel Space Matters"