Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for NewProcFS (0.13 sec)

  1. pkg/util/procfs/procfs_unsupported.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package procfs
    
    import (
    	"fmt"
    	"syscall"
    )
    
    type ProcFS struct{}
    
    func NewProcFS() ProcFSInterface {
    	return &ProcFS{}
    }
    
    // GetFullContainerName gets the container name given the root process id of the container.
    func (pfs *ProcFS) GetFullContainerName(pid int) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top