项目作者: mikenoethiger

项目描述 :
A collection of C programs, notes and exams that aggregated during the system programming lectures.
高级语言: C
项目地址: git://github.com/mikenoethiger/system-programming.git
创建时间: 2020-02-18T19:31:10Z
项目社区:https://github.com/mikenoethiger/system-programming

开源协议:GNU General Public License v3.0

下载


About

This is a collection of C programs, notes and exams that aggregated during the system programming lectures.
These programs are about the linux programming interface.
Error handling has been largely neglected, the programs are reduced to the very fundamental api calls, aiming to get a better grasp of the linux programming interface itself.

Build

The programs are located in the src directory.

The basic pattern to compile a single program with gcc is as follows:

  1. gcc src_file.c -o executable_file

This will compile src_file.c and generate an executable file called executable_file in the same directory. Execute it with ./executable_file.

A makefile is present to compile all programs at once to src/out:

  1. cd src
  2. make

Single programs can be compiled using their names:

  1. make time1

Depending on your operating system, you might miss some libraries that are necessary for a few programs.
E.g., OS X does not provide POSIX mqueue.h, thus the message queue programs won’t compile on OS X.
Therefore, our lecturer suggested to work on a Raspberry Pi using a linux distribution.
An alternative way is to compile and execute the programs in a docker container.
You can find a Dockerfile in this repository which uses an ubuntu image and install the gcc compiler, make, the libc library and the libncurses library (all things you need throughout the lecture).

Build the image using the provided shell script:

  1. chmod u+x docker-build.sh
  2. ./docker-build.sh

Afterwards, start a container (this will directly connect you to the container, so you can start hacking):

  1. chmod u+x docker-start.sh
  2. ./docker-start.sh

All files/directories from your working directory will be synced with the container, so you can edit on your computer and compile/execute in the container.
Run exit when connected to the container to terminate the session.

Notes

Lecture notes can be found in markdown format in ./notes.
These notes largely consist of links to the man pages of system calls but sometimes also provide complementary comments and usage examples.

Direct Links:

Exams

You can find both of my exams (autumn semester 2019) in the ./exams directory.

Collaboration

I advocate sharing of knowledge, you are free to fork, edit and distribute this repository.
Make sure to send me back your changes/additions as a pull request, such that future students can benefit too.