├── README.md ├── chapter_10.5.1 ├── Makefile └── main.cpp ├── chapter_10 ├── .chapter_10.cpp.swp ├── Makefile ├── chapter_10 ├── chapter_10.cpp ├── chapter_10.d └── chapter_10.o ├── chapter_10_win ├── chapter_10.cpp ├── chapter_10.vcxproj ├── chapter_10.vcxproj.filters └── chapter_10.vcxproj.user ├── chapter_11.5 ├── chapter_11.5.cpp ├── chapter_11.5.vcxproj ├── chapter_11.5.vcxproj.filters └── chapter_11.5.vcxproj.user ├── chapter_11 ├── .helloworld.o.cmd ├── .hworld.ko.cmd ├── .hworld.mod.o.cmd ├── .hworld.o.cmd ├── .tmp_versions │ └── hworld.mod ├── Makefile ├── Module.symvers ├── helloworld.c ├── helloworld.o ├── hworld.ko ├── hworld.mod.c ├── hworld.mod.o ├── hworld.o └── modules.order ├── chapter_11_win ├── Device.c ├── Device.h ├── Driver.c ├── Driver.h ├── Helloworld.inf ├── Helloworld.vcxproj ├── Helloworld.vcxproj.filters ├── Helloworld.vcxproj.user ├── Public.h ├── Queue.c ├── Queue.h ├── ReadMe.txt └── Trace.h ├── chapter_2 ├── chapter_2.cpp ├── chapter_2.vcxproj ├── chapter_2.vcxproj.filters ├── chapter_2.vcxproj.user ├── ppm.cpp ├── student.h └── test.cpp ├── chapter_2_mul_threads ├── chapter_2_mul_threads.cpp ├── chapter_2_mul_threads.vcxproj ├── chapter_2_mul_threads.vcxproj.filters └── chapter_2_mul_threads.vcxproj.user ├── chapter_3.1 ├── Makefile ├── main.cpp ├── student.cpp ├── student.h ├── teacher.cpp └── teacher.h ├── chapter_3.3.2 ├── Makefile ├── chapter_3.3.2 ├── chapter_3.3.2.cpp ├── chapter_3.3.2.d └── chapter_3.3.2.o ├── chapter_3.3 ├── Makefile ├── chapter_3.3 └── chapter_3.3.cpp ├── chapter_4.1.4 ├── Makefile ├── Makefile_release ├── chapter_4.1.4.cpp └── chapter_4.1.4.d ├── chapter_4.1.4_win ├── chapter_4.1.4.cpp ├── chapter_4.1.4.vcxproj ├── chapter_4.1.4.vcxproj.filters └── chapter_4.1.4.vcxproj.user ├── chapter_4.1 ├── Makefile ├── chapter_4.1 ├── chapter_4.1.cpp ├── chapter_4.1.d └── chapter_4.1.o ├── chapter_4.1_win ├── chapter_4.1.cpp ├── chapter_4.1.vcxproj ├── chapter_4.1.vcxproj.filters └── chapter_4.1.vcxproj.user ├── chapter_4 ├── Makefile ├── chapter_3.3 ├── chapter_4.cpp ├── chapter_4.d └── chapter_4.o ├── chapter_4_win ├── chapter_4.cpp ├── chapter_4.vcxproj ├── chapter_4.vcxproj.filters └── chapter_4.vcxproj.user ├── chapter_5.1 ├── chapter_5.1.cpp ├── chapter_5.1.vcxproj ├── chapter_5.1.vcxproj.filters └── chapter_5.1.vcxproj.user ├── chapter_5.1_dll ├── chapter_5.1_dll.cpp ├── chapter_5.1_dll.h ├── chapter_5.1_dll.vcxproj ├── chapter_5.1_dll.vcxproj.filters ├── chapter_5.1_dll.vcxproj.user ├── dllmain.cpp ├── framework.h ├── pch.cpp └── pch.h ├── chapter_5.2 ├── dtest │ ├── Makefile │ ├── t.cpp │ ├── t.d │ ├── t.o │ └── test ├── testexe │ ├── Makefile │ ├── libtest.so │ ├── testexe │ ├── testexe.cpp │ ├── testexe.d │ └── testexe.o └── testso │ ├── Makefile │ ├── libtest.so │ ├── test.cpp │ ├── test.d │ ├── test.h │ └── test.o ├── chapter_6.1.5 ├── chapter_6.1.5.cpp ├── chapter_6.1.5.vcxproj ├── chapter_6.1.5.vcxproj.filters └── chapter_6.1.5.vcxproj.user ├── chapter_6.1 ├── chapter_6.1.cpp ├── chapter_6.1.vcxproj ├── chapter_6.1.vcxproj.filters └── chapter_6.1.vcxproj.user ├── chapter_6.2 └── testmem.cpp ├── chapter_7.1 ├── chapter_7.1.vcxproj ├── chapter_7.1.vcxproj.filters ├── chapter_7.1.vcxproj.user ├── chapter_7.2.cpp └── chapter_7.3.cpp ├── chapter_7.3 ├── Makefile └── chapter_7.3.cpp ├── chapter_8.2 ├── Makefile ├── chapter_8.2 └── chapter_8.2.cpp ├── chapter_9 ├── chapter_9.cpp ├── chapter_9.vcxproj ├── chapter_9.vcxproj.filters └── chapter_9.vcxproj.user └── debug_examples.sln /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/README.md -------------------------------------------------------------------------------- /chapter_10.5.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_10.5.1/Makefile -------------------------------------------------------------------------------- /chapter_10.5.1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_10.5.1/main.cpp -------------------------------------------------------------------------------- /chapter_10/.chapter_10.cpp.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_10/.chapter_10.cpp.swp -------------------------------------------------------------------------------- /chapter_10/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_10/Makefile -------------------------------------------------------------------------------- /chapter_10/chapter_10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_10/chapter_10 -------------------------------------------------------------------------------- /chapter_10/chapter_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_10/chapter_10.cpp -------------------------------------------------------------------------------- /chapter_10/chapter_10.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_10/chapter_10.d -------------------------------------------------------------------------------- /chapter_10/chapter_10.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_10/chapter_10.o -------------------------------------------------------------------------------- /chapter_10_win/chapter_10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_10_win/chapter_10.cpp -------------------------------------------------------------------------------- /chapter_10_win/chapter_10.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_10_win/chapter_10.vcxproj -------------------------------------------------------------------------------- /chapter_10_win/chapter_10.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_10_win/chapter_10.vcxproj.filters -------------------------------------------------------------------------------- /chapter_10_win/chapter_10.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_10_win/chapter_10.vcxproj.user -------------------------------------------------------------------------------- /chapter_11.5/chapter_11.5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11.5/chapter_11.5.cpp -------------------------------------------------------------------------------- /chapter_11.5/chapter_11.5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11.5/chapter_11.5.vcxproj -------------------------------------------------------------------------------- /chapter_11.5/chapter_11.5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11.5/chapter_11.5.vcxproj.filters -------------------------------------------------------------------------------- /chapter_11.5/chapter_11.5.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11.5/chapter_11.5.vcxproj.user -------------------------------------------------------------------------------- /chapter_11/.helloworld.o.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11/.helloworld.o.cmd -------------------------------------------------------------------------------- /chapter_11/.hworld.ko.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11/.hworld.ko.cmd -------------------------------------------------------------------------------- /chapter_11/.hworld.mod.o.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11/.hworld.mod.o.cmd -------------------------------------------------------------------------------- /chapter_11/.hworld.o.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11/.hworld.o.cmd -------------------------------------------------------------------------------- /chapter_11/.tmp_versions/hworld.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11/.tmp_versions/hworld.mod -------------------------------------------------------------------------------- /chapter_11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11/Makefile -------------------------------------------------------------------------------- /chapter_11/Module.symvers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapter_11/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11/helloworld.c -------------------------------------------------------------------------------- /chapter_11/helloworld.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11/helloworld.o -------------------------------------------------------------------------------- /chapter_11/hworld.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11/hworld.ko -------------------------------------------------------------------------------- /chapter_11/hworld.mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11/hworld.mod.c -------------------------------------------------------------------------------- /chapter_11/hworld.mod.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11/hworld.mod.o -------------------------------------------------------------------------------- /chapter_11/hworld.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11/hworld.o -------------------------------------------------------------------------------- /chapter_11/modules.order: -------------------------------------------------------------------------------- 1 | kernel//root/codes/book_debug/chapter_11/hworld.ko 2 | -------------------------------------------------------------------------------- /chapter_11_win/Device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11_win/Device.c -------------------------------------------------------------------------------- /chapter_11_win/Device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11_win/Device.h -------------------------------------------------------------------------------- /chapter_11_win/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11_win/Driver.c -------------------------------------------------------------------------------- /chapter_11_win/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11_win/Driver.h -------------------------------------------------------------------------------- /chapter_11_win/Helloworld.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11_win/Helloworld.inf -------------------------------------------------------------------------------- /chapter_11_win/Helloworld.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11_win/Helloworld.vcxproj -------------------------------------------------------------------------------- /chapter_11_win/Helloworld.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11_win/Helloworld.vcxproj.filters -------------------------------------------------------------------------------- /chapter_11_win/Helloworld.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11_win/Helloworld.vcxproj.user -------------------------------------------------------------------------------- /chapter_11_win/Public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11_win/Public.h -------------------------------------------------------------------------------- /chapter_11_win/Queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11_win/Queue.c -------------------------------------------------------------------------------- /chapter_11_win/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11_win/Queue.h -------------------------------------------------------------------------------- /chapter_11_win/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11_win/ReadMe.txt -------------------------------------------------------------------------------- /chapter_11_win/Trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_11_win/Trace.h -------------------------------------------------------------------------------- /chapter_2/chapter_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_2/chapter_2.cpp -------------------------------------------------------------------------------- /chapter_2/chapter_2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_2/chapter_2.vcxproj -------------------------------------------------------------------------------- /chapter_2/chapter_2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_2/chapter_2.vcxproj.filters -------------------------------------------------------------------------------- /chapter_2/chapter_2.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_2/chapter_2.vcxproj.user -------------------------------------------------------------------------------- /chapter_2/ppm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_2/ppm.cpp -------------------------------------------------------------------------------- /chapter_2/student.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_2/student.h -------------------------------------------------------------------------------- /chapter_2/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_2/test.cpp -------------------------------------------------------------------------------- /chapter_2_mul_threads/chapter_2_mul_threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_2_mul_threads/chapter_2_mul_threads.cpp -------------------------------------------------------------------------------- /chapter_2_mul_threads/chapter_2_mul_threads.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_2_mul_threads/chapter_2_mul_threads.vcxproj -------------------------------------------------------------------------------- /chapter_2_mul_threads/chapter_2_mul_threads.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_2_mul_threads/chapter_2_mul_threads.vcxproj.filters -------------------------------------------------------------------------------- /chapter_2_mul_threads/chapter_2_mul_threads.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_2_mul_threads/chapter_2_mul_threads.vcxproj.user -------------------------------------------------------------------------------- /chapter_3.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_3.1/Makefile -------------------------------------------------------------------------------- /chapter_3.1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_3.1/main.cpp -------------------------------------------------------------------------------- /chapter_3.1/student.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_3.1/student.cpp -------------------------------------------------------------------------------- /chapter_3.1/student.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_3.1/student.h -------------------------------------------------------------------------------- /chapter_3.1/teacher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_3.1/teacher.cpp -------------------------------------------------------------------------------- /chapter_3.1/teacher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_3.1/teacher.h -------------------------------------------------------------------------------- /chapter_3.3.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_3.3.2/Makefile -------------------------------------------------------------------------------- /chapter_3.3.2/chapter_3.3.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_3.3.2/chapter_3.3.2 -------------------------------------------------------------------------------- /chapter_3.3.2/chapter_3.3.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_3.3.2/chapter_3.3.2.cpp -------------------------------------------------------------------------------- /chapter_3.3.2/chapter_3.3.2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_3.3.2/chapter_3.3.2.d -------------------------------------------------------------------------------- /chapter_3.3.2/chapter_3.3.2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_3.3.2/chapter_3.3.2.o -------------------------------------------------------------------------------- /chapter_3.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_3.3/Makefile -------------------------------------------------------------------------------- /chapter_3.3/chapter_3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_3.3/chapter_3.3 -------------------------------------------------------------------------------- /chapter_3.3/chapter_3.3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_3.3/chapter_3.3.cpp -------------------------------------------------------------------------------- /chapter_4.1.4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1.4/Makefile -------------------------------------------------------------------------------- /chapter_4.1.4/Makefile_release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1.4/Makefile_release -------------------------------------------------------------------------------- /chapter_4.1.4/chapter_4.1.4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1.4/chapter_4.1.4.cpp -------------------------------------------------------------------------------- /chapter_4.1.4/chapter_4.1.4.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1.4/chapter_4.1.4.d -------------------------------------------------------------------------------- /chapter_4.1.4_win/chapter_4.1.4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1.4_win/chapter_4.1.4.cpp -------------------------------------------------------------------------------- /chapter_4.1.4_win/chapter_4.1.4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1.4_win/chapter_4.1.4.vcxproj -------------------------------------------------------------------------------- /chapter_4.1.4_win/chapter_4.1.4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1.4_win/chapter_4.1.4.vcxproj.filters -------------------------------------------------------------------------------- /chapter_4.1.4_win/chapter_4.1.4.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1.4_win/chapter_4.1.4.vcxproj.user -------------------------------------------------------------------------------- /chapter_4.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1/Makefile -------------------------------------------------------------------------------- /chapter_4.1/chapter_4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1/chapter_4.1 -------------------------------------------------------------------------------- /chapter_4.1/chapter_4.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1/chapter_4.1.cpp -------------------------------------------------------------------------------- /chapter_4.1/chapter_4.1.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1/chapter_4.1.d -------------------------------------------------------------------------------- /chapter_4.1/chapter_4.1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1/chapter_4.1.o -------------------------------------------------------------------------------- /chapter_4.1_win/chapter_4.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1_win/chapter_4.1.cpp -------------------------------------------------------------------------------- /chapter_4.1_win/chapter_4.1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1_win/chapter_4.1.vcxproj -------------------------------------------------------------------------------- /chapter_4.1_win/chapter_4.1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1_win/chapter_4.1.vcxproj.filters -------------------------------------------------------------------------------- /chapter_4.1_win/chapter_4.1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4.1_win/chapter_4.1.vcxproj.user -------------------------------------------------------------------------------- /chapter_4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4/Makefile -------------------------------------------------------------------------------- /chapter_4/chapter_3.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4/chapter_3.3 -------------------------------------------------------------------------------- /chapter_4/chapter_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4/chapter_4.cpp -------------------------------------------------------------------------------- /chapter_4/chapter_4.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4/chapter_4.d -------------------------------------------------------------------------------- /chapter_4/chapter_4.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4/chapter_4.o -------------------------------------------------------------------------------- /chapter_4_win/chapter_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4_win/chapter_4.cpp -------------------------------------------------------------------------------- /chapter_4_win/chapter_4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4_win/chapter_4.vcxproj -------------------------------------------------------------------------------- /chapter_4_win/chapter_4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4_win/chapter_4.vcxproj.filters -------------------------------------------------------------------------------- /chapter_4_win/chapter_4.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_4_win/chapter_4.vcxproj.user -------------------------------------------------------------------------------- /chapter_5.1/chapter_5.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.1/chapter_5.1.cpp -------------------------------------------------------------------------------- /chapter_5.1/chapter_5.1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.1/chapter_5.1.vcxproj -------------------------------------------------------------------------------- /chapter_5.1/chapter_5.1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.1/chapter_5.1.vcxproj.filters -------------------------------------------------------------------------------- /chapter_5.1/chapter_5.1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.1/chapter_5.1.vcxproj.user -------------------------------------------------------------------------------- /chapter_5.1_dll/chapter_5.1_dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.1_dll/chapter_5.1_dll.cpp -------------------------------------------------------------------------------- /chapter_5.1_dll/chapter_5.1_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.1_dll/chapter_5.1_dll.h -------------------------------------------------------------------------------- /chapter_5.1_dll/chapter_5.1_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.1_dll/chapter_5.1_dll.vcxproj -------------------------------------------------------------------------------- /chapter_5.1_dll/chapter_5.1_dll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.1_dll/chapter_5.1_dll.vcxproj.filters -------------------------------------------------------------------------------- /chapter_5.1_dll/chapter_5.1_dll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.1_dll/chapter_5.1_dll.vcxproj.user -------------------------------------------------------------------------------- /chapter_5.1_dll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.1_dll/dllmain.cpp -------------------------------------------------------------------------------- /chapter_5.1_dll/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.1_dll/framework.h -------------------------------------------------------------------------------- /chapter_5.1_dll/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.1_dll/pch.cpp -------------------------------------------------------------------------------- /chapter_5.1_dll/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.1_dll/pch.h -------------------------------------------------------------------------------- /chapter_5.2/dtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.2/dtest/Makefile -------------------------------------------------------------------------------- /chapter_5.2/dtest/t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.2/dtest/t.cpp -------------------------------------------------------------------------------- /chapter_5.2/dtest/t.d: -------------------------------------------------------------------------------- 1 | t.o: t.cpp 2 | -------------------------------------------------------------------------------- /chapter_5.2/dtest/t.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.2/dtest/t.o -------------------------------------------------------------------------------- /chapter_5.2/dtest/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.2/dtest/test -------------------------------------------------------------------------------- /chapter_5.2/testexe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.2/testexe/Makefile -------------------------------------------------------------------------------- /chapter_5.2/testexe/libtest.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.2/testexe/libtest.so -------------------------------------------------------------------------------- /chapter_5.2/testexe/testexe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.2/testexe/testexe -------------------------------------------------------------------------------- /chapter_5.2/testexe/testexe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.2/testexe/testexe.cpp -------------------------------------------------------------------------------- /chapter_5.2/testexe/testexe.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.2/testexe/testexe.d -------------------------------------------------------------------------------- /chapter_5.2/testexe/testexe.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.2/testexe/testexe.o -------------------------------------------------------------------------------- /chapter_5.2/testso/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.2/testso/Makefile -------------------------------------------------------------------------------- /chapter_5.2/testso/libtest.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.2/testso/libtest.so -------------------------------------------------------------------------------- /chapter_5.2/testso/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.2/testso/test.cpp -------------------------------------------------------------------------------- /chapter_5.2/testso/test.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.2/testso/test.d -------------------------------------------------------------------------------- /chapter_5.2/testso/test.h: -------------------------------------------------------------------------------- 1 | extern "C" 2 | double calc_pi(); 3 | -------------------------------------------------------------------------------- /chapter_5.2/testso/test.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_5.2/testso/test.o -------------------------------------------------------------------------------- /chapter_6.1.5/chapter_6.1.5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_6.1.5/chapter_6.1.5.cpp -------------------------------------------------------------------------------- /chapter_6.1.5/chapter_6.1.5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_6.1.5/chapter_6.1.5.vcxproj -------------------------------------------------------------------------------- /chapter_6.1.5/chapter_6.1.5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_6.1.5/chapter_6.1.5.vcxproj.filters -------------------------------------------------------------------------------- /chapter_6.1.5/chapter_6.1.5.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_6.1.5/chapter_6.1.5.vcxproj.user -------------------------------------------------------------------------------- /chapter_6.1/chapter_6.1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_6.1/chapter_6.1.cpp -------------------------------------------------------------------------------- /chapter_6.1/chapter_6.1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_6.1/chapter_6.1.vcxproj -------------------------------------------------------------------------------- /chapter_6.1/chapter_6.1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_6.1/chapter_6.1.vcxproj.filters -------------------------------------------------------------------------------- /chapter_6.1/chapter_6.1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_6.1/chapter_6.1.vcxproj.user -------------------------------------------------------------------------------- /chapter_6.2/testmem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_6.2/testmem.cpp -------------------------------------------------------------------------------- /chapter_7.1/chapter_7.1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_7.1/chapter_7.1.vcxproj -------------------------------------------------------------------------------- /chapter_7.1/chapter_7.1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_7.1/chapter_7.1.vcxproj.filters -------------------------------------------------------------------------------- /chapter_7.1/chapter_7.1.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_7.1/chapter_7.1.vcxproj.user -------------------------------------------------------------------------------- /chapter_7.1/chapter_7.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_7.1/chapter_7.2.cpp -------------------------------------------------------------------------------- /chapter_7.1/chapter_7.3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_7.1/chapter_7.3.cpp -------------------------------------------------------------------------------- /chapter_7.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_7.3/Makefile -------------------------------------------------------------------------------- /chapter_7.3/chapter_7.3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_7.3/chapter_7.3.cpp -------------------------------------------------------------------------------- /chapter_8.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_8.2/Makefile -------------------------------------------------------------------------------- /chapter_8.2/chapter_8.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_8.2/chapter_8.2 -------------------------------------------------------------------------------- /chapter_8.2/chapter_8.2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_8.2/chapter_8.2.cpp -------------------------------------------------------------------------------- /chapter_9/chapter_9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_9/chapter_9.cpp -------------------------------------------------------------------------------- /chapter_9/chapter_9.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_9/chapter_9.vcxproj -------------------------------------------------------------------------------- /chapter_9/chapter_9.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_9/chapter_9.vcxproj.filters -------------------------------------------------------------------------------- /chapter_9/chapter_9.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/chapter_9/chapter_9.vcxproj.user -------------------------------------------------------------------------------- /debug_examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimpleSoft-2020/book_debug/HEAD/debug_examples.sln --------------------------------------------------------------------------------