#software-engineering
Read more stories on Hashnode
Articles with this tag
io_uring is a new asynchronous I/O API for Linux created by Jens Axboe from Facebook. It aims to provide an API without the limitations of similar...
Filesystem in USErspace (FUSE) is a software interface for Unix and Unix-like computer operating systems that lets non-privileged users create their...
An inode is an index node for every file and directory in the filesystem. Inodes do not store actual data. Instead, they store the metadata where you...
(The information in this article might be incomplete, I only include information I understood or considered most relevant. Please visit the references...
What is static linking? Static linking links libraries at compile time, copying them to the final binary. What is dynamic linking? Dynamic linking...