├── Chapter 13 ├── Makefile └── memory-user.c ├── Chapter 13_14 ├── abk_vector.h ├── mem_allocate ├── mem_allocate.c ├── null.c ├── question5 ├── question5.c ├── question6 ├── question6.c ├── question7 ├── question7.c ├── question8 ├── question8.c └── readme.md ├── Chapter 15 └── README.md ├── Chapter 16 └── README.md ├── Chapter 17 └── README.md ├── Chapter 18 ├── README.md └── va2pa.c ├── Chapter 5 ├── .gitignore ├── README.md ├── hello.txt ├── question1.c ├── question2.c ├── question3-yorwos.c ├── question3.c ├── question4.c ├── question5.c ├── question6.c ├── question7.c └── question8.c ├── Chapter 6 └── system_call_benchmark.c ├── Chapter 7 └── README.md ├── Chapter 8 └── README.md ├── Chapter 9 └── README.md ├── README.md ├── System Projects └── Project 1 │ ├── abk_str_vector.h │ ├── colors.h │ ├── names.txt │ ├── numbers_names.txt │ ├── sort │ ├── sort.c │ ├── sorted_names.txt │ └── sorted_numbers_names.txt └── archived_material ├── ch7_aerial_view.md ├── ch8_aerial_view.md └── ch9_aerial_view.md /Chapter 13/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 13/Makefile -------------------------------------------------------------------------------- /Chapter 13/memory-user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 13/memory-user.c -------------------------------------------------------------------------------- /Chapter 13_14/abk_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 13_14/abk_vector.h -------------------------------------------------------------------------------- /Chapter 13_14/mem_allocate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 13_14/mem_allocate -------------------------------------------------------------------------------- /Chapter 13_14/mem_allocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 13_14/mem_allocate.c -------------------------------------------------------------------------------- /Chapter 13_14/null.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | char * greetings = "Hello World"; 6 | } 7 | -------------------------------------------------------------------------------- /Chapter 13_14/question5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 13_14/question5 -------------------------------------------------------------------------------- /Chapter 13_14/question5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 13_14/question5.c -------------------------------------------------------------------------------- /Chapter 13_14/question6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 13_14/question6 -------------------------------------------------------------------------------- /Chapter 13_14/question6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 13_14/question6.c -------------------------------------------------------------------------------- /Chapter 13_14/question7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 13_14/question7 -------------------------------------------------------------------------------- /Chapter 13_14/question7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 13_14/question7.c -------------------------------------------------------------------------------- /Chapter 13_14/question8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 13_14/question8 -------------------------------------------------------------------------------- /Chapter 13_14/question8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 13_14/question8.c -------------------------------------------------------------------------------- /Chapter 13_14/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 13_14/readme.md -------------------------------------------------------------------------------- /Chapter 15/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 15/README.md -------------------------------------------------------------------------------- /Chapter 16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 16/README.md -------------------------------------------------------------------------------- /Chapter 17/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 17/README.md -------------------------------------------------------------------------------- /Chapter 18/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 18/README.md -------------------------------------------------------------------------------- /Chapter 18/va2pa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 18/va2pa.c -------------------------------------------------------------------------------- /Chapter 5/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 5/.gitignore -------------------------------------------------------------------------------- /Chapter 5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 5/README.md -------------------------------------------------------------------------------- /Chapter 5/hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 5/hello.txt -------------------------------------------------------------------------------- /Chapter 5/question1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 5/question1.c -------------------------------------------------------------------------------- /Chapter 5/question2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 5/question2.c -------------------------------------------------------------------------------- /Chapter 5/question3-yorwos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 5/question3-yorwos.c -------------------------------------------------------------------------------- /Chapter 5/question3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 5/question3.c -------------------------------------------------------------------------------- /Chapter 5/question4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 5/question4.c -------------------------------------------------------------------------------- /Chapter 5/question5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 5/question5.c -------------------------------------------------------------------------------- /Chapter 5/question6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 5/question6.c -------------------------------------------------------------------------------- /Chapter 5/question7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 5/question7.c -------------------------------------------------------------------------------- /Chapter 5/question8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 5/question8.c -------------------------------------------------------------------------------- /Chapter 6/system_call_benchmark.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 6/system_call_benchmark.c -------------------------------------------------------------------------------- /Chapter 7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 7/README.md -------------------------------------------------------------------------------- /Chapter 8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 8/README.md -------------------------------------------------------------------------------- /Chapter 9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/Chapter 9/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/README.md -------------------------------------------------------------------------------- /System Projects/Project 1/abk_str_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/System Projects/Project 1/abk_str_vector.h -------------------------------------------------------------------------------- /System Projects/Project 1/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/System Projects/Project 1/colors.h -------------------------------------------------------------------------------- /System Projects/Project 1/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/System Projects/Project 1/names.txt -------------------------------------------------------------------------------- /System Projects/Project 1/numbers_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/System Projects/Project 1/numbers_names.txt -------------------------------------------------------------------------------- /System Projects/Project 1/sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/System Projects/Project 1/sort -------------------------------------------------------------------------------- /System Projects/Project 1/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/System Projects/Project 1/sort.c -------------------------------------------------------------------------------- /System Projects/Project 1/sorted_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/System Projects/Project 1/sorted_names.txt -------------------------------------------------------------------------------- /System Projects/Project 1/sorted_numbers_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/System Projects/Project 1/sorted_numbers_names.txt -------------------------------------------------------------------------------- /archived_material/ch7_aerial_view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/archived_material/ch7_aerial_view.md -------------------------------------------------------------------------------- /archived_material/ch8_aerial_view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/archived_material/ch8_aerial_view.md -------------------------------------------------------------------------------- /archived_material/ch9_aerial_view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedbilal/OSTEP-Solution/HEAD/archived_material/ch9_aerial_view.md --------------------------------------------------------------------------------