Giter Site home page Giter Site logo

Comments (1)

terminaldweller avatar terminaldweller commented on September 14, 2024

mknod : creates a file system node (file, device special file or named pipe)
access : checks the access rights of the calling pid to a directory provided
ioctl : changes the parameters of a device drive through accessing the device file
umask : sets the file creation mask (for example when you fork a child process you use this to manipulate the child process' access rights)
readlink : print the value of a symlink
msync : flushes changes to a file. its mostly there to ensure file intergrity in case something goes bad during making changes to the memory-mapped copy of a file since munmap will unmap the file regardless.
fcntl64 ; performs operations on the fd based on the "cmd" arg passed to it
mknodat : does the same as mknod plus takes an extra arg that open the fs node relative to that arg instead of CWD
faccessat : the same as access plus an extra arg. the path arg will ne relative to this extra arg instead of CWD
fallocate : either deallocate or preallocate disk space to a file on filesystems that support it

from ocaml-offchain.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.