← Back to all posts

#OPSYS

5 posts with this tag

Hisen's Memo on OPSYS

A collection of memos on CSCI 4210 Operating System

System Calls - What’s Underneath the Hood

In previous memos, I briefly mentioned that read() and write() functions in libc are wrappers of system call read and write

About libc - The Standard C library

The C standard library, often referred to as libc, is a standard library for the C programming language

The Philosophy of UNIX and C Programming Language

This memo overviews UNIX and C programming for CSCI 4210 Operating System from both high-level and low-level perspectives

The Guide to Memory Debugging

As a C programmer, debugging memory issues can be one of the most frustrating tasks