github.com/opencontainers/umoci@v0.4.8-0.20240508124516-656e4836fb0d/pkg/system/mknod_unix.go (about)

     1  //go:build !freebsd
     2  // +build !freebsd
     3  
     4  /*
     5   * umoci: Umoci Modifies Open Containers' Images
     6   * Copyright (C) 2016-2020 SUSE LLC
     7   *
     8   * Licensed under the Apache License, Version 2.0 (the "License");
     9   * you may not use this file except in compliance with the License.
    10   * You may obtain a copy of the License at
    11   *
    12   *    http://www.apache.org/licenses/LICENSE-2.0
    13   *
    14   * Unless required by applicable law or agreed to in writing, software
    15   * distributed under the License is distributed on an "AS IS" BASIS,
    16   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    17   * See the License for the specific language governing permissions and
    18   * limitations under the License.
    19   */
    20  
    21  package system
    22  
    23  import (
    24  	"golang.org/x/sys/unix"
    25  )
    26  
    27  // Mknod creates a filesystem node (file, device special file or named pipe) named path
    28  // with attributes specified by mode and dev.
    29  func Mknod(path string, mode uint32, dev uint64) error {
    30  	return unix.Mknod(path, mode, int(dev))
    31  }