-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add concurrent programs: picosh, httpd, ringbuffer, mbus
- Loading branch information
Showing
12 changed files
with
1,442 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Complementary Programs for course "Linux Kernel Internals" | ||
|
||
## Project Listing | ||
- [picosh](picosh/): A minimalist UNIX shell. | ||
- [httpd](httpd/): A multi-threaded web server. | ||
- [ringbuffer](ringbuffer/): A lock-less ring buffer. | ||
- [mbus](mbus/): A concurrent message bus. | ||
|
||
## License | ||
|
||
The above projects are released under the BSD 2 clause license. | ||
Use of this source code is governed by a BSD-style license that can be found | ||
in the LICENSE file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
httpd: httpd.c | ||
gcc -Wall -Wextra -o httpd httpd.c -lpthread | ||
|
||
clean: | ||
rm -f httpd | ||
|
||
indent: | ||
clang-format -i httpd.c |
Oops, something went wrong.