├── .github └── workflows │ └── gh-pages.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── makefile ├── makefile.code └── site ├── .gitignore ├── archetypes └── default.md ├── config.toml ├── content ├── _index.md ├── chapter1 │ └── _index.md ├── chapter10 │ ├── 10.10.md │ ├── 10.6.md │ ├── 10.7.md │ ├── 10.8.md │ ├── 10.9.md │ ├── _index.md │ └── code │ │ ├── .gitignore │ │ ├── 10.10.c │ │ ├── 10.6.c │ │ ├── 10.7.c │ │ ├── 10.8.c │ │ ├── bar.txt │ │ ├── baz.txt │ │ ├── csapp.c │ │ ├── csapp.h │ │ ├── foo.txt │ │ └── makefile ├── chapter11 │ ├── 11.10.md │ ├── 11.11.md │ ├── 11.12.md │ ├── 11.13.md │ ├── 11.6.md │ ├── 11.7.md │ ├── 11.8.md │ ├── 11.9.md │ ├── _index.md │ └── code │ │ ├── .gitignore │ │ ├── cgi-bin │ │ ├── .gitignore │ │ ├── adder.c │ │ ├── form-adder.c │ │ ├── form-adder.c.diff │ │ ├── head-adder.c │ │ ├── head-adder.c.diff │ │ ├── makefile │ │ ├── post-adder.c │ │ └── post-adder.c.diff │ │ ├── csapp.c │ │ ├── csapp.h │ │ ├── ghost-in-shell.mpeg │ │ ├── home.html │ │ ├── makefile │ │ ├── post-home.html │ │ ├── tiny.11.c │ │ ├── tiny.11.c.diff │ │ ├── tiny.12.c │ │ ├── tiny.12.c.diff │ │ ├── tiny.13.c │ │ ├── tiny.13.c.diff │ │ ├── tiny.6.c │ │ ├── tiny.6.c.diff │ │ ├── tiny.7.c │ │ ├── tiny.7.c.diff │ │ ├── tiny.8.c │ │ ├── tiny.8.c.diff │ │ ├── tiny.9.c │ │ ├── tiny.9.c.diff │ │ └── tiny.origin.c ├── chapter12 │ ├── 12.16.md │ ├── 12.17.md │ ├── 12.18.md │ ├── 12.19.md │ ├── 12.20.md │ ├── 12.21.md │ ├── 12.22.md │ ├── 12.23.md │ ├── 12.24.md │ ├── 12.25.md │ ├── 12.26.md │ ├── 12.27.md │ ├── 12.28.md │ ├── 12.29.md │ ├── 12.30.md │ ├── 12.31.md │ ├── 12.32.md │ ├── 12.33.md │ ├── 12.34.md │ ├── 12.35.md │ ├── 12.36.md │ ├── 12.37.md │ ├── 12.38.md │ ├── 12.39.md │ ├── _index.md │ └── code │ │ ├── .gitignore │ │ ├── 12.16.c │ │ ├── 12.17.c │ │ ├── 12.19.c │ │ ├── 12.19.c.diff │ │ ├── 12.20.c │ │ ├── 12.21.c │ │ ├── 12.22.c │ │ ├── 12.23.bug.c │ │ ├── 12.23.c │ │ ├── 12.23.c.diff │ │ ├── 12.23.client.c │ │ ├── 12.26.c │ │ ├── 12.31.c │ │ ├── 12.32.c │ │ ├── 12.33.c │ │ ├── 12.34.c │ │ ├── 12.34.concurrent.c │ │ ├── 12.34.h │ │ ├── 12.34.non.concurrent.c │ │ ├── 12.35.c │ │ ├── 12.35.c.diff │ │ ├── 12.36.c.diff │ │ ├── 12.36 │ │ ├── .gitignore │ │ ├── echoservers.c │ │ ├── echoservers.h │ │ ├── home.html │ │ ├── main.c │ │ ├── makefile │ │ ├── tiny.c │ │ └── tiny.h │ │ ├── 12.37.c │ │ ├── 12.37.c.diff │ │ ├── 12.38 │ │ ├── .gitignore │ │ ├── home.html │ │ ├── main.c │ │ ├── makefile │ │ ├── sbuf.c │ │ ├── sbuf.h │ │ ├── tiny.c │ │ └── tiny.h │ │ ├── 12.39 │ │ ├── .gitignore │ │ ├── block.list │ │ ├── log.list │ │ ├── makefile │ │ ├── proxy-thread.c │ │ └── proxy.c │ │ ├── 12.reader.writer.c │ │ ├── 12.tiny.c │ │ ├── cgi-bin │ │ ├── .gitignore │ │ ├── adder.c │ │ └── makefile │ │ ├── csapp.c │ │ ├── csapp.h │ │ ├── echo_cnt.c │ │ ├── home.html │ │ └── makefile ├── chapter2 │ ├── 2.55.md │ ├── 2.56.md │ ├── 2.57.md │ ├── 2.58.md │ ├── 2.59.md │ ├── 2.60.md │ ├── 2.61.md │ ├── 2.62.md │ ├── 2.63.md │ ├── 2.64.md │ ├── 2.65.md │ ├── 2.66.md │ ├── 2.67.md │ ├── 2.68.md │ ├── 2.69.md │ ├── 2.70.md │ ├── 2.71.md │ ├── 2.72.md │ ├── 2.73.md │ ├── 2.74.md │ ├── 2.75.md │ ├── 2.76.md │ ├── 2.77.md │ ├── 2.78.md │ ├── 2.79.md │ ├── 2.80.md │ ├── 2.81.md │ ├── 2.82.md │ ├── 2.83.md │ ├── 2.84.md │ ├── 2.85.md │ ├── 2.86.md │ ├── 2.87.md │ ├── 2.88.md │ ├── 2.89.md │ ├── 2.90.md │ ├── 2.91.md │ ├── 2.92.md │ ├── 2.93.md │ ├── 2.94.md │ ├── 2.95.md │ ├── 2.96.md │ ├── 2.97.md │ ├── _index.md │ └── code │ │ ├── 2.61.c │ │ ├── 2.77.c │ │ ├── 2.81.c │ │ ├── 2.82.c │ │ ├── 2.89.c │ │ ├── any-odd-one.c │ │ ├── calloc.c │ │ ├── copy-int.c │ │ ├── divide-power2.c │ │ ├── fits-bits.c │ │ ├── float-le.c │ │ ├── floats │ │ ├── float-absval.c │ │ ├── float-absval.h │ │ ├── float-f2i.c │ │ ├── float-f2i.h │ │ ├── float-half.c │ │ ├── float-half.h │ │ ├── float-i2f.c │ │ ├── float-i2f.h │ │ ├── float-negate.c │ │ ├── float-negate.h │ │ ├── float-twice.c │ │ ├── float-twice.h │ │ ├── main.c │ │ └── makefile │ │ ├── fpwr2.c │ │ ├── generate-a-word.c │ │ ├── int-shifts-are-arithemetic.c │ │ ├── int-size-is-32.c │ │ ├── is-little-endian.c │ │ ├── leftmost-one.c │ │ ├── lib │ │ ├── random.c │ │ └── random.h │ │ ├── lower-one-mask.c │ │ ├── makefile │ │ ├── mul3div4.c │ │ ├── odd-ones.c │ │ ├── replace-byte.c │ │ ├── rotate-left.c │ │ ├── saturating-add.c │ │ ├── show-bytes-more.c │ │ ├── show-bytes.c │ │ ├── srl-sra.c │ │ ├── threeforths.c │ │ ├── tsub-ok.c │ │ ├── unsigned-high-prod.c │ │ └── xbyte.c ├── chapter3 │ ├── 3.58.md │ ├── 3.59.md │ ├── 3.60.md │ ├── 3.61.md │ ├── 3.62.md │ ├── 3.63.md │ ├── 3.64.md │ ├── 3.65.md │ ├── 3.66.md │ ├── 3.67.md │ ├── 3.68.md │ ├── 3.69.md │ ├── 3.70.md │ ├── 3.71.md │ ├── 3.72.md │ ├── 3.73.md │ ├── 3.74.md │ ├── 3.75.md │ ├── _index.md │ ├── code │ │ ├── .gitignore │ │ ├── 3.59.s │ │ ├── 3.62.c │ │ ├── 3.63.c │ │ ├── 3.67.c │ │ ├── 3.67.s │ │ ├── 3.68.s │ │ ├── 3.69.c │ │ ├── 3.69.s │ │ ├── 3.70.c │ │ ├── 3.70.s │ │ ├── 3.72.c │ │ ├── 3.72.s │ │ ├── 3.73.c │ │ ├── 3.74.c │ │ ├── cread │ │ │ ├── cread-alt.c │ │ │ ├── cread-alt.s │ │ │ ├── cread.s │ │ │ └── makefile │ │ ├── decode2 │ │ │ ├── .gitignore │ │ │ ├── decode.c │ │ │ ├── decode2.s │ │ │ ├── main.c │ │ │ └── makefile │ │ ├── good-echo │ │ │ ├── good-echo.c │ │ │ └── makefile │ │ ├── loop │ │ │ ├── loop.s │ │ │ ├── loop2.c │ │ │ ├── main.c │ │ │ └── makefile │ │ ├── makefile │ │ ├── store-ele │ │ │ ├── main.c │ │ │ ├── makefile │ │ │ ├── store-ele.s │ │ │ └── store-ele2.c │ │ └── sum-col │ │ │ ├── main.c │ │ │ ├── makefile │ │ │ ├── sum-col.s │ │ │ └── sum-col2.c │ └── figure │ │ ├── 3.59.1.png │ │ ├── 3.59.2.png │ │ ├── 3.59.3.png │ │ ├── 3.59.4.png │ │ ├── 3.59.5.png │ │ ├── 3.72.1.png │ │ ├── 3.72.2.png │ │ ├── 3.72.3.png │ │ └── 3.72.4.png ├── chapter4 │ ├── 4.45.md │ ├── 4.46.md │ ├── 4.47.md │ ├── 4.48.md │ ├── 4.49.md │ ├── 4.50.md │ ├── 4.51.md │ ├── 4.52.md │ ├── 4.53.md │ ├── 4.54.md │ ├── 4.55.md │ ├── 4.56.md │ ├── 4.57.md │ ├── 4.58.md │ ├── 4.59.md │ ├── _index.md │ └── code │ │ ├── bubble-sort │ │ ├── .gitignore │ │ ├── bubble-sort-array.c │ │ ├── bubble-sort-pointer-1-cmove.ys │ │ ├── bubble-sort-pointer-3-cmove.ys │ │ ├── bubble-sort-pointer.c │ │ ├── bubble-sort-pointer.s │ │ ├── bubble-sort-pointer.ys │ │ ├── bubble-sort.h │ │ ├── main.c │ │ └── makefile │ │ ├── iaddq-pipe │ │ └── makefile │ │ ├── iaddq-seq │ │ └── makefile │ │ ├── makefile │ │ ├── pipe-1w │ │ └── makefile │ │ ├── pipe-btfnt │ │ └── makefile │ │ ├── pipe-lf │ │ └── makefile │ │ ├── pipe-nt │ │ └── makefile │ │ ├── pipe-stall │ │ └── makefile │ │ ├── sim │ │ ├── Makefile │ │ ├── README │ │ ├── misc │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── examples.c │ │ │ ├── hcl.lex │ │ │ ├── hcl.y │ │ │ ├── isa.c │ │ │ ├── isa.h │ │ │ ├── mux4.hcl │ │ │ ├── node.c │ │ │ ├── node.h │ │ │ ├── outgen.c │ │ │ ├── outgen.h │ │ │ ├── yas-grammar.lex │ │ │ ├── yas.c │ │ │ ├── yas.h │ │ │ └── yis.c │ │ ├── pipe │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── benchmark.pl │ │ │ ├── check-len.pl │ │ │ ├── correctness.pl │ │ │ ├── gen-driver.pl │ │ │ ├── ncopy.c │ │ │ ├── ncopy.ys │ │ │ ├── origin-pipe-1w.hcl │ │ │ ├── origin-pipe-btfnt.hcl │ │ │ ├── origin-pipe-full.hcl │ │ │ ├── origin-pipe-lf.hcl │ │ │ ├── origin-pipe-nt.hcl │ │ │ ├── origin-pipe-stall.hcl │ │ │ ├── pipe-1w.diff │ │ │ ├── pipe-1w.hcl │ │ │ ├── pipe-broken.hcl │ │ │ ├── pipe-btfnt.diff │ │ │ ├── pipe-btfnt.hcl │ │ │ ├── pipe-full.diff │ │ │ ├── pipe-full.hcl │ │ │ ├── pipe-lf.diff │ │ │ ├── pipe-lf.hcl │ │ │ ├── pipe-nobypass.hcl │ │ │ ├── pipe-nt.diff │ │ │ ├── pipe-nt.hcl │ │ │ ├── pipe-stall.diff │ │ │ ├── pipe-stall.hcl │ │ │ ├── pipe-std.hcl │ │ │ ├── pipe.tcl │ │ │ ├── pipeline.h │ │ │ ├── psim.c │ │ │ ├── sim.h │ │ │ └── stages.h │ │ ├── ptest │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ctest.pl │ │ │ ├── etest.pl │ │ │ ├── htest.pl │ │ │ ├── jtest.pl │ │ │ ├── optest.pl │ │ │ └── tester.pm │ │ ├── seq │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── origin-seq-full.hcl │ │ │ ├── seq+-std.hcl │ │ │ ├── seq+.tcl │ │ │ ├── seq-full.diff │ │ │ ├── seq-full.hcl │ │ │ ├── seq-std.hcl │ │ │ ├── seq.tcl │ │ │ ├── sim.h │ │ │ └── ssim.c │ │ └── y86-code │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── abs-asum-cmov.ys │ │ │ ├── abs-asum-jmp.ys │ │ │ ├── asum.ys │ │ │ ├── asumi.ys │ │ │ ├── asumr.ys │ │ │ ├── cjr.ys │ │ │ ├── j-cc.ys │ │ │ ├── poptest.ys │ │ │ ├── prog1.ys │ │ │ ├── prog10.ys │ │ │ ├── prog2.ys │ │ │ ├── prog3.ys │ │ │ ├── prog4.ys │ │ │ ├── prog5.ys │ │ │ ├── prog6.ys │ │ │ ├── prog7.ys │ │ │ ├── prog8.ys │ │ │ ├── prog9.ys │ │ │ ├── pushquestion.ys │ │ │ ├── pushtest.ys │ │ │ └── ret-hazard.ys │ │ └── switch │ │ ├── .gitignore │ │ ├── makefile │ │ ├── switch.c │ │ └── switch.ys ├── chapter5 │ ├── 5.13.md │ ├── 5.14.md │ ├── 5.15.md │ ├── 5.16.md │ ├── 5.17.md │ ├── 5.18.md │ ├── 5.19.md │ ├── _index.md │ └── code │ │ ├── .gitignore │ │ ├── 5.13.c │ │ ├── 5.14.c │ │ ├── 5.15.c │ │ ├── 5.16.c │ │ ├── 5.17.c │ │ ├── 5.18.c │ │ ├── 5.19.c │ │ ├── lib │ │ ├── vec.c │ │ └── vec.h │ │ └── makefile ├── chapter6 │ ├── 6.22.md │ ├── 6.23.md │ ├── 6.24.md │ ├── 6.25.md │ ├── 6.26.md │ ├── 6.27.md │ ├── 6.28.md │ ├── 6.29.md │ ├── 6.30.md │ ├── 6.31.md │ ├── 6.32.md │ ├── 6.33.md │ ├── 6.34.md │ ├── 6.35.md │ ├── 6.36.md │ ├── 6.37.md │ ├── 6.38.md │ ├── 6.39.md │ ├── 6.40.md │ ├── 6.41.md │ ├── 6.42.md │ ├── 6.43.md │ ├── 6.44.md │ ├── 6.45.md │ ├── 6.46.md │ ├── _index.md │ └── code │ │ ├── .gitignore │ │ ├── 6.37.c │ │ ├── convert.c │ │ ├── makefile │ │ ├── mountain │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README │ │ ├── clock.c │ │ ├── clock.h │ │ ├── fcyc2.c │ │ ├── fcyc2.h │ │ ├── mountain.c │ │ ├── mountain2x2-corei7h.txt │ │ ├── mountain4x4-corei7h.txt │ │ ├── mountain5x5-corei7h.txt │ │ ├── mountain6x6-corei7h.txt │ │ └── mountain7x7-corei7h.txt │ │ └── transpose.c ├── chapter7 │ ├── 7.10.md │ ├── 7.11.md │ ├── 7.12.md │ ├── 7.13.md │ ├── 7.6.md │ ├── 7.7.md │ ├── 7.8.md │ ├── 7.9.md │ ├── _index.md │ └── code │ │ ├── 7.13 │ │ ├── .gitignore │ │ ├── little.c │ │ └── makefile │ │ ├── 7.6 │ │ ├── .gitignore │ │ ├── makefile │ │ └── swap.c │ │ ├── 7.7 │ │ ├── bar5.c │ │ ├── foo5.c │ │ └── makefile │ │ ├── 7.9 │ │ ├── another-bar6.c │ │ ├── bar6.c │ │ ├── foo6.c │ │ └── makefile │ │ └── makefile ├── chapter8 │ ├── .gitignore │ ├── 8.10.md │ ├── 8.11.md │ ├── 8.12.md │ ├── 8.13.md │ ├── 8.14.md │ ├── 8.15.md │ ├── 8.16.md │ ├── 8.17.md │ ├── 8.18.md │ ├── 8.19.md │ ├── 8.20.md │ ├── 8.21.md │ ├── 8.22.md │ ├── 8.23.md │ ├── 8.24.md │ ├── 8.25.md │ ├── 8.26.md │ ├── 8.9.md │ ├── _index.md │ ├── code │ │ ├── .gitignore │ │ ├── 8.11.c │ │ ├── 8.12.c │ │ ├── 8.13.c │ │ ├── 8.14.c │ │ ├── 8.15.c │ │ ├── 8.16.c │ │ ├── 8.18.c │ │ ├── 8.19.c │ │ ├── 8.20.c │ │ ├── 8.21.c │ │ ├── 8.23.c │ │ ├── 8.24.c │ │ ├── 8.25.c │ │ ├── csapp.c │ │ ├── csapp.h │ │ ├── exit-code.c │ │ ├── makefile │ │ ├── mysystem.c │ │ ├── shell │ │ │ ├── .gitignore │ │ │ ├── job.c │ │ │ ├── job.h │ │ │ ├── loop.c │ │ │ ├── main.c │ │ │ ├── makefile │ │ │ ├── shell.c │ │ │ ├── shell.h │ │ │ └── sleep.c │ │ └── wait-sig.c │ └── figure │ │ └── shell.png └── chapter9 │ ├── 9.11.md │ ├── 9.12.md │ ├── 9.13.md │ ├── 9.14.md │ ├── 9.15.md │ ├── 9.16.md │ ├── 9.17.md │ ├── 9.18.md │ ├── 9.19.md │ ├── 9.20.md │ ├── _index.md │ └── code │ ├── .gitignore │ ├── 9.14.c │ ├── makefile │ ├── malloc │ ├── .gitignore │ ├── csapp.c │ ├── csapp.h │ ├── main.c │ ├── makefile │ ├── memlib.c │ ├── memlib.c.diff │ ├── memlib.h │ ├── mm.c │ ├── mm.h │ └── mm.h.diff │ └── vm │ ├── 9.17.c │ ├── 9.18.c │ ├── csapp.c │ ├── csapp.h │ ├── makefile │ ├── memlib.c │ ├── memlib.h │ ├── mm.9.17.c │ ├── mm.9.17.diff │ ├── mm.9.18.c │ ├── mm.9.18.diff │ ├── mm.c │ ├── mm.h │ ├── mm_first_fit │ └── mm_first_fit.c ├── layouts ├── partials │ ├── custom-comments.html │ ├── custom-footer.html │ ├── logo.html │ └── menu-footer.html └── shortcodes │ └── include.html └── static └── csapp3e-cover.jpg /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/makefile -------------------------------------------------------------------------------- /makefile.code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/makefile.code -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- 1 | public/ -------------------------------------------------------------------------------- /site/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/archetypes/default.md -------------------------------------------------------------------------------- /site/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/config.toml -------------------------------------------------------------------------------- /site/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/_index.md -------------------------------------------------------------------------------- /site/content/chapter1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter1/_index.md -------------------------------------------------------------------------------- /site/content/chapter10/10.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter10/10.10.md -------------------------------------------------------------------------------- /site/content/chapter10/10.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter10/10.6.md -------------------------------------------------------------------------------- /site/content/chapter10/10.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter10/10.7.md -------------------------------------------------------------------------------- /site/content/chapter10/10.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter10/10.8.md -------------------------------------------------------------------------------- /site/content/chapter10/10.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter10/10.9.md -------------------------------------------------------------------------------- /site/content/chapter10/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter10/_index.md -------------------------------------------------------------------------------- /site/content/chapter10/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter10/code/.gitignore -------------------------------------------------------------------------------- /site/content/chapter10/code/10.10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter10/code/10.10.c -------------------------------------------------------------------------------- /site/content/chapter10/code/10.6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter10/code/10.6.c -------------------------------------------------------------------------------- /site/content/chapter10/code/10.7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter10/code/10.7.c -------------------------------------------------------------------------------- /site/content/chapter10/code/10.8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter10/code/10.8.c -------------------------------------------------------------------------------- /site/content/chapter10/code/bar.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/content/chapter10/code/baz.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/content/chapter10/code/csapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter10/code/csapp.c -------------------------------------------------------------------------------- /site/content/chapter10/code/csapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter10/code/csapp.h -------------------------------------------------------------------------------- /site/content/chapter10/code/foo.txt: -------------------------------------------------------------------------------- 1 | afjak 2 | afjka 3 | afdajkl 4 | -------------------------------------------------------------------------------- /site/content/chapter10/code/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter10/code/makefile -------------------------------------------------------------------------------- /site/content/chapter11/11.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/11.10.md -------------------------------------------------------------------------------- /site/content/chapter11/11.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/11.11.md -------------------------------------------------------------------------------- /site/content/chapter11/11.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/11.12.md -------------------------------------------------------------------------------- /site/content/chapter11/11.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/11.13.md -------------------------------------------------------------------------------- /site/content/chapter11/11.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/11.6.md -------------------------------------------------------------------------------- /site/content/chapter11/11.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/11.7.md -------------------------------------------------------------------------------- /site/content/chapter11/11.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/11.8.md -------------------------------------------------------------------------------- /site/content/chapter11/11.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/11.9.md -------------------------------------------------------------------------------- /site/content/chapter11/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/_index.md -------------------------------------------------------------------------------- /site/content/chapter11/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/.gitignore -------------------------------------------------------------------------------- /site/content/chapter11/code/cgi-bin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/cgi-bin/.gitignore -------------------------------------------------------------------------------- /site/content/chapter11/code/cgi-bin/adder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/cgi-bin/adder.c -------------------------------------------------------------------------------- /site/content/chapter11/code/cgi-bin/form-adder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/cgi-bin/form-adder.c -------------------------------------------------------------------------------- /site/content/chapter11/code/cgi-bin/form-adder.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/cgi-bin/form-adder.c.diff -------------------------------------------------------------------------------- /site/content/chapter11/code/cgi-bin/head-adder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/cgi-bin/head-adder.c -------------------------------------------------------------------------------- /site/content/chapter11/code/cgi-bin/head-adder.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/cgi-bin/head-adder.c.diff -------------------------------------------------------------------------------- /site/content/chapter11/code/cgi-bin/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/cgi-bin/makefile -------------------------------------------------------------------------------- /site/content/chapter11/code/cgi-bin/post-adder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/cgi-bin/post-adder.c -------------------------------------------------------------------------------- /site/content/chapter11/code/cgi-bin/post-adder.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/cgi-bin/post-adder.c.diff -------------------------------------------------------------------------------- /site/content/chapter11/code/csapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/csapp.c -------------------------------------------------------------------------------- /site/content/chapter11/code/csapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/csapp.h -------------------------------------------------------------------------------- /site/content/chapter11/code/ghost-in-shell.mpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/ghost-in-shell.mpeg -------------------------------------------------------------------------------- /site/content/chapter11/code/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/home.html -------------------------------------------------------------------------------- /site/content/chapter11/code/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/makefile -------------------------------------------------------------------------------- /site/content/chapter11/code/post-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/post-home.html -------------------------------------------------------------------------------- /site/content/chapter11/code/tiny.11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/tiny.11.c -------------------------------------------------------------------------------- /site/content/chapter11/code/tiny.11.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/tiny.11.c.diff -------------------------------------------------------------------------------- /site/content/chapter11/code/tiny.12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/tiny.12.c -------------------------------------------------------------------------------- /site/content/chapter11/code/tiny.12.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/tiny.12.c.diff -------------------------------------------------------------------------------- /site/content/chapter11/code/tiny.13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/tiny.13.c -------------------------------------------------------------------------------- /site/content/chapter11/code/tiny.13.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/tiny.13.c.diff -------------------------------------------------------------------------------- /site/content/chapter11/code/tiny.6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/tiny.6.c -------------------------------------------------------------------------------- /site/content/chapter11/code/tiny.6.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/tiny.6.c.diff -------------------------------------------------------------------------------- /site/content/chapter11/code/tiny.7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/tiny.7.c -------------------------------------------------------------------------------- /site/content/chapter11/code/tiny.7.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/tiny.7.c.diff -------------------------------------------------------------------------------- /site/content/chapter11/code/tiny.8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/tiny.8.c -------------------------------------------------------------------------------- /site/content/chapter11/code/tiny.8.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/tiny.8.c.diff -------------------------------------------------------------------------------- /site/content/chapter11/code/tiny.9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/tiny.9.c -------------------------------------------------------------------------------- /site/content/chapter11/code/tiny.9.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/tiny.9.c.diff -------------------------------------------------------------------------------- /site/content/chapter11/code/tiny.origin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter11/code/tiny.origin.c -------------------------------------------------------------------------------- /site/content/chapter12/12.16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.16.md -------------------------------------------------------------------------------- /site/content/chapter12/12.17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.17.md -------------------------------------------------------------------------------- /site/content/chapter12/12.18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.18.md -------------------------------------------------------------------------------- /site/content/chapter12/12.19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.19.md -------------------------------------------------------------------------------- /site/content/chapter12/12.20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.20.md -------------------------------------------------------------------------------- /site/content/chapter12/12.21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.21.md -------------------------------------------------------------------------------- /site/content/chapter12/12.22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.22.md -------------------------------------------------------------------------------- /site/content/chapter12/12.23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.23.md -------------------------------------------------------------------------------- /site/content/chapter12/12.24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.24.md -------------------------------------------------------------------------------- /site/content/chapter12/12.25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.25.md -------------------------------------------------------------------------------- /site/content/chapter12/12.26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.26.md -------------------------------------------------------------------------------- /site/content/chapter12/12.27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.27.md -------------------------------------------------------------------------------- /site/content/chapter12/12.28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.28.md -------------------------------------------------------------------------------- /site/content/chapter12/12.29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.29.md -------------------------------------------------------------------------------- /site/content/chapter12/12.30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.30.md -------------------------------------------------------------------------------- /site/content/chapter12/12.31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.31.md -------------------------------------------------------------------------------- /site/content/chapter12/12.32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.32.md -------------------------------------------------------------------------------- /site/content/chapter12/12.33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.33.md -------------------------------------------------------------------------------- /site/content/chapter12/12.34.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.34.md -------------------------------------------------------------------------------- /site/content/chapter12/12.35.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.35.md -------------------------------------------------------------------------------- /site/content/chapter12/12.36.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.36.md -------------------------------------------------------------------------------- /site/content/chapter12/12.37.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.37.md -------------------------------------------------------------------------------- /site/content/chapter12/12.38.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.38.md -------------------------------------------------------------------------------- /site/content/chapter12/12.39.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/12.39.md -------------------------------------------------------------------------------- /site/content/chapter12/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/_index.md -------------------------------------------------------------------------------- /site/content/chapter12/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/.gitignore -------------------------------------------------------------------------------- /site/content/chapter12/code/12.16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.16.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.17.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.19.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.19.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.19.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.19.c.diff -------------------------------------------------------------------------------- /site/content/chapter12/code/12.20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.20.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.21.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.22.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.22.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.23.bug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.23.bug.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.23.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.23.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.23.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.23.c.diff -------------------------------------------------------------------------------- /site/content/chapter12/code/12.23.client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.23.client.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.26.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.26.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.31.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.31.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.32.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.33.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.33.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.34.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.34.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.34.concurrent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.34.concurrent.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.34.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.34.h -------------------------------------------------------------------------------- /site/content/chapter12/code/12.34.non.concurrent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.34.non.concurrent.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.35.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.35.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.35.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.35.c.diff -------------------------------------------------------------------------------- /site/content/chapter12/code/12.36.c.diff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/content/chapter12/code/12.36/.gitignore: -------------------------------------------------------------------------------- 1 | main 2 | -------------------------------------------------------------------------------- /site/content/chapter12/code/12.36/echoservers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.36/echoservers.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.36/echoservers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.36/echoservers.h -------------------------------------------------------------------------------- /site/content/chapter12/code/12.36/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.36/home.html -------------------------------------------------------------------------------- /site/content/chapter12/code/12.36/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.36/main.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.36/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.36/makefile -------------------------------------------------------------------------------- /site/content/chapter12/code/12.36/tiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.36/tiny.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.36/tiny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.36/tiny.h -------------------------------------------------------------------------------- /site/content/chapter12/code/12.37.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.37.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.37.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.37.c.diff -------------------------------------------------------------------------------- /site/content/chapter12/code/12.38/.gitignore: -------------------------------------------------------------------------------- 1 | main 2 | -------------------------------------------------------------------------------- /site/content/chapter12/code/12.38/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.38/home.html -------------------------------------------------------------------------------- /site/content/chapter12/code/12.38/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.38/main.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.38/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.38/makefile -------------------------------------------------------------------------------- /site/content/chapter12/code/12.38/sbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.38/sbuf.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.38/sbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.38/sbuf.h -------------------------------------------------------------------------------- /site/content/chapter12/code/12.38/tiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.38/tiny.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.38/tiny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.38/tiny.h -------------------------------------------------------------------------------- /site/content/chapter12/code/12.39/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.39/.gitignore -------------------------------------------------------------------------------- /site/content/chapter12/code/12.39/block.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.39/block.list -------------------------------------------------------------------------------- /site/content/chapter12/code/12.39/log.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.39/log.list -------------------------------------------------------------------------------- /site/content/chapter12/code/12.39/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.39/makefile -------------------------------------------------------------------------------- /site/content/chapter12/code/12.39/proxy-thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.39/proxy-thread.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.39/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.39/proxy.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.reader.writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.reader.writer.c -------------------------------------------------------------------------------- /site/content/chapter12/code/12.tiny.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/12.tiny.c -------------------------------------------------------------------------------- /site/content/chapter12/code/cgi-bin/.gitignore: -------------------------------------------------------------------------------- 1 | adder 2 | -------------------------------------------------------------------------------- /site/content/chapter12/code/cgi-bin/adder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/cgi-bin/adder.c -------------------------------------------------------------------------------- /site/content/chapter12/code/cgi-bin/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/cgi-bin/makefile -------------------------------------------------------------------------------- /site/content/chapter12/code/csapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/csapp.c -------------------------------------------------------------------------------- /site/content/chapter12/code/csapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/csapp.h -------------------------------------------------------------------------------- /site/content/chapter12/code/echo_cnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/echo_cnt.c -------------------------------------------------------------------------------- /site/content/chapter12/code/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/home.html -------------------------------------------------------------------------------- /site/content/chapter12/code/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter12/code/makefile -------------------------------------------------------------------------------- /site/content/chapter2/2.55.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.55.md -------------------------------------------------------------------------------- /site/content/chapter2/2.56.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.56.md -------------------------------------------------------------------------------- /site/content/chapter2/2.57.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.57.md -------------------------------------------------------------------------------- /site/content/chapter2/2.58.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.58.md -------------------------------------------------------------------------------- /site/content/chapter2/2.59.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.59.md -------------------------------------------------------------------------------- /site/content/chapter2/2.60.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.60.md -------------------------------------------------------------------------------- /site/content/chapter2/2.61.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.61.md -------------------------------------------------------------------------------- /site/content/chapter2/2.62.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.62.md -------------------------------------------------------------------------------- /site/content/chapter2/2.63.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.63.md -------------------------------------------------------------------------------- /site/content/chapter2/2.64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.64.md -------------------------------------------------------------------------------- /site/content/chapter2/2.65.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.65.md -------------------------------------------------------------------------------- /site/content/chapter2/2.66.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.66.md -------------------------------------------------------------------------------- /site/content/chapter2/2.67.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.67.md -------------------------------------------------------------------------------- /site/content/chapter2/2.68.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.68.md -------------------------------------------------------------------------------- /site/content/chapter2/2.69.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.69.md -------------------------------------------------------------------------------- /site/content/chapter2/2.70.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.70.md -------------------------------------------------------------------------------- /site/content/chapter2/2.71.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.71.md -------------------------------------------------------------------------------- /site/content/chapter2/2.72.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.72.md -------------------------------------------------------------------------------- /site/content/chapter2/2.73.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.73.md -------------------------------------------------------------------------------- /site/content/chapter2/2.74.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.74.md -------------------------------------------------------------------------------- /site/content/chapter2/2.75.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.75.md -------------------------------------------------------------------------------- /site/content/chapter2/2.76.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.76.md -------------------------------------------------------------------------------- /site/content/chapter2/2.77.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.77.md -------------------------------------------------------------------------------- /site/content/chapter2/2.78.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.78.md -------------------------------------------------------------------------------- /site/content/chapter2/2.79.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.79.md -------------------------------------------------------------------------------- /site/content/chapter2/2.80.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.80.md -------------------------------------------------------------------------------- /site/content/chapter2/2.81.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.81.md -------------------------------------------------------------------------------- /site/content/chapter2/2.82.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.82.md -------------------------------------------------------------------------------- /site/content/chapter2/2.83.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.83.md -------------------------------------------------------------------------------- /site/content/chapter2/2.84.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.84.md -------------------------------------------------------------------------------- /site/content/chapter2/2.85.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.85.md -------------------------------------------------------------------------------- /site/content/chapter2/2.86.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.86.md -------------------------------------------------------------------------------- /site/content/chapter2/2.87.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.87.md -------------------------------------------------------------------------------- /site/content/chapter2/2.88.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.88.md -------------------------------------------------------------------------------- /site/content/chapter2/2.89.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.89.md -------------------------------------------------------------------------------- /site/content/chapter2/2.90.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.90.md -------------------------------------------------------------------------------- /site/content/chapter2/2.91.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.91.md -------------------------------------------------------------------------------- /site/content/chapter2/2.92.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.92.md -------------------------------------------------------------------------------- /site/content/chapter2/2.93.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.93.md -------------------------------------------------------------------------------- /site/content/chapter2/2.94.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.94.md -------------------------------------------------------------------------------- /site/content/chapter2/2.95.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.95.md -------------------------------------------------------------------------------- /site/content/chapter2/2.96.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.96.md -------------------------------------------------------------------------------- /site/content/chapter2/2.97.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/2.97.md -------------------------------------------------------------------------------- /site/content/chapter2/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/_index.md -------------------------------------------------------------------------------- /site/content/chapter2/code/2.61.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/2.61.c -------------------------------------------------------------------------------- /site/content/chapter2/code/2.77.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/2.77.c -------------------------------------------------------------------------------- /site/content/chapter2/code/2.81.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/2.81.c -------------------------------------------------------------------------------- /site/content/chapter2/code/2.82.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/2.82.c -------------------------------------------------------------------------------- /site/content/chapter2/code/2.89.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/2.89.c -------------------------------------------------------------------------------- /site/content/chapter2/code/any-odd-one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/any-odd-one.c -------------------------------------------------------------------------------- /site/content/chapter2/code/calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/calloc.c -------------------------------------------------------------------------------- /site/content/chapter2/code/copy-int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/copy-int.c -------------------------------------------------------------------------------- /site/content/chapter2/code/divide-power2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/divide-power2.c -------------------------------------------------------------------------------- /site/content/chapter2/code/fits-bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/fits-bits.c -------------------------------------------------------------------------------- /site/content/chapter2/code/float-le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/float-le.c -------------------------------------------------------------------------------- /site/content/chapter2/code/floats/float-absval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/floats/float-absval.c -------------------------------------------------------------------------------- /site/content/chapter2/code/floats/float-absval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/floats/float-absval.h -------------------------------------------------------------------------------- /site/content/chapter2/code/floats/float-f2i.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/floats/float-f2i.c -------------------------------------------------------------------------------- /site/content/chapter2/code/floats/float-f2i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/floats/float-f2i.h -------------------------------------------------------------------------------- /site/content/chapter2/code/floats/float-half.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/floats/float-half.c -------------------------------------------------------------------------------- /site/content/chapter2/code/floats/float-half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/floats/float-half.h -------------------------------------------------------------------------------- /site/content/chapter2/code/floats/float-i2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/floats/float-i2f.c -------------------------------------------------------------------------------- /site/content/chapter2/code/floats/float-i2f.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/floats/float-i2f.h -------------------------------------------------------------------------------- /site/content/chapter2/code/floats/float-negate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/floats/float-negate.c -------------------------------------------------------------------------------- /site/content/chapter2/code/floats/float-negate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/floats/float-negate.h -------------------------------------------------------------------------------- /site/content/chapter2/code/floats/float-twice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/floats/float-twice.c -------------------------------------------------------------------------------- /site/content/chapter2/code/floats/float-twice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/floats/float-twice.h -------------------------------------------------------------------------------- /site/content/chapter2/code/floats/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/floats/main.c -------------------------------------------------------------------------------- /site/content/chapter2/code/floats/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/floats/makefile -------------------------------------------------------------------------------- /site/content/chapter2/code/fpwr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/fpwr2.c -------------------------------------------------------------------------------- /site/content/chapter2/code/generate-a-word.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/generate-a-word.c -------------------------------------------------------------------------------- /site/content/chapter2/code/int-shifts-are-arithemetic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/int-shifts-are-arithemetic.c -------------------------------------------------------------------------------- /site/content/chapter2/code/int-size-is-32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/int-size-is-32.c -------------------------------------------------------------------------------- /site/content/chapter2/code/is-little-endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/is-little-endian.c -------------------------------------------------------------------------------- /site/content/chapter2/code/leftmost-one.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/leftmost-one.c -------------------------------------------------------------------------------- /site/content/chapter2/code/lib/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/lib/random.c -------------------------------------------------------------------------------- /site/content/chapter2/code/lib/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/lib/random.h -------------------------------------------------------------------------------- /site/content/chapter2/code/lower-one-mask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/lower-one-mask.c -------------------------------------------------------------------------------- /site/content/chapter2/code/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/makefile -------------------------------------------------------------------------------- /site/content/chapter2/code/mul3div4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/mul3div4.c -------------------------------------------------------------------------------- /site/content/chapter2/code/odd-ones.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/odd-ones.c -------------------------------------------------------------------------------- /site/content/chapter2/code/replace-byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/replace-byte.c -------------------------------------------------------------------------------- /site/content/chapter2/code/rotate-left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/rotate-left.c -------------------------------------------------------------------------------- /site/content/chapter2/code/saturating-add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/saturating-add.c -------------------------------------------------------------------------------- /site/content/chapter2/code/show-bytes-more.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/show-bytes-more.c -------------------------------------------------------------------------------- /site/content/chapter2/code/show-bytes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/show-bytes.c -------------------------------------------------------------------------------- /site/content/chapter2/code/srl-sra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/srl-sra.c -------------------------------------------------------------------------------- /site/content/chapter2/code/threeforths.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/threeforths.c -------------------------------------------------------------------------------- /site/content/chapter2/code/tsub-ok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/tsub-ok.c -------------------------------------------------------------------------------- /site/content/chapter2/code/unsigned-high-prod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/unsigned-high-prod.c -------------------------------------------------------------------------------- /site/content/chapter2/code/xbyte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter2/code/xbyte.c -------------------------------------------------------------------------------- /site/content/chapter3/3.58.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.58.md -------------------------------------------------------------------------------- /site/content/chapter3/3.59.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.59.md -------------------------------------------------------------------------------- /site/content/chapter3/3.60.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.60.md -------------------------------------------------------------------------------- /site/content/chapter3/3.61.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.61.md -------------------------------------------------------------------------------- /site/content/chapter3/3.62.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.62.md -------------------------------------------------------------------------------- /site/content/chapter3/3.63.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.63.md -------------------------------------------------------------------------------- /site/content/chapter3/3.64.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.64.md -------------------------------------------------------------------------------- /site/content/chapter3/3.65.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.65.md -------------------------------------------------------------------------------- /site/content/chapter3/3.66.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.66.md -------------------------------------------------------------------------------- /site/content/chapter3/3.67.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.67.md -------------------------------------------------------------------------------- /site/content/chapter3/3.68.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.68.md -------------------------------------------------------------------------------- /site/content/chapter3/3.69.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.69.md -------------------------------------------------------------------------------- /site/content/chapter3/3.70.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.70.md -------------------------------------------------------------------------------- /site/content/chapter3/3.71.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.71.md -------------------------------------------------------------------------------- /site/content/chapter3/3.72.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.72.md -------------------------------------------------------------------------------- /site/content/chapter3/3.73.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.73.md -------------------------------------------------------------------------------- /site/content/chapter3/3.74.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.74.md -------------------------------------------------------------------------------- /site/content/chapter3/3.75.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/3.75.md -------------------------------------------------------------------------------- /site/content/chapter3/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/_index.md -------------------------------------------------------------------------------- /site/content/chapter3/code/.gitignore: -------------------------------------------------------------------------------- 1 | main 2 | *.o 3 | -------------------------------------------------------------------------------- /site/content/chapter3/code/3.59.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/3.59.s -------------------------------------------------------------------------------- /site/content/chapter3/code/3.62.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/3.62.c -------------------------------------------------------------------------------- /site/content/chapter3/code/3.63.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/3.63.c -------------------------------------------------------------------------------- /site/content/chapter3/code/3.67.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/3.67.c -------------------------------------------------------------------------------- /site/content/chapter3/code/3.67.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/3.67.s -------------------------------------------------------------------------------- /site/content/chapter3/code/3.68.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/3.68.s -------------------------------------------------------------------------------- /site/content/chapter3/code/3.69.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/3.69.c -------------------------------------------------------------------------------- /site/content/chapter3/code/3.69.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/3.69.s -------------------------------------------------------------------------------- /site/content/chapter3/code/3.70.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/3.70.c -------------------------------------------------------------------------------- /site/content/chapter3/code/3.70.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/3.70.s -------------------------------------------------------------------------------- /site/content/chapter3/code/3.72.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/3.72.c -------------------------------------------------------------------------------- /site/content/chapter3/code/3.72.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/3.72.s -------------------------------------------------------------------------------- /site/content/chapter3/code/3.73.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/3.73.c -------------------------------------------------------------------------------- /site/content/chapter3/code/3.74.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/3.74.c -------------------------------------------------------------------------------- /site/content/chapter3/code/cread/cread-alt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/cread/cread-alt.c -------------------------------------------------------------------------------- /site/content/chapter3/code/cread/cread-alt.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/cread/cread-alt.s -------------------------------------------------------------------------------- /site/content/chapter3/code/cread/cread.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/cread/cread.s -------------------------------------------------------------------------------- /site/content/chapter3/code/cread/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/cread/makefile -------------------------------------------------------------------------------- /site/content/chapter3/code/decode2/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | main 3 | -------------------------------------------------------------------------------- /site/content/chapter3/code/decode2/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/decode2/decode.c -------------------------------------------------------------------------------- /site/content/chapter3/code/decode2/decode2.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/decode2/decode2.s -------------------------------------------------------------------------------- /site/content/chapter3/code/decode2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/decode2/main.c -------------------------------------------------------------------------------- /site/content/chapter3/code/decode2/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/decode2/makefile -------------------------------------------------------------------------------- /site/content/chapter3/code/good-echo/good-echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/good-echo/good-echo.c -------------------------------------------------------------------------------- /site/content/chapter3/code/good-echo/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/good-echo/makefile -------------------------------------------------------------------------------- /site/content/chapter3/code/loop/loop.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/loop/loop.s -------------------------------------------------------------------------------- /site/content/chapter3/code/loop/loop2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/loop/loop2.c -------------------------------------------------------------------------------- /site/content/chapter3/code/loop/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/loop/main.c -------------------------------------------------------------------------------- /site/content/chapter3/code/loop/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/loop/makefile -------------------------------------------------------------------------------- /site/content/chapter3/code/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/makefile -------------------------------------------------------------------------------- /site/content/chapter3/code/store-ele/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/store-ele/main.c -------------------------------------------------------------------------------- /site/content/chapter3/code/store-ele/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/store-ele/makefile -------------------------------------------------------------------------------- /site/content/chapter3/code/store-ele/store-ele.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/store-ele/store-ele.s -------------------------------------------------------------------------------- /site/content/chapter3/code/store-ele/store-ele2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/store-ele/store-ele2.c -------------------------------------------------------------------------------- /site/content/chapter3/code/sum-col/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/sum-col/main.c -------------------------------------------------------------------------------- /site/content/chapter3/code/sum-col/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/sum-col/makefile -------------------------------------------------------------------------------- /site/content/chapter3/code/sum-col/sum-col.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/sum-col/sum-col.s -------------------------------------------------------------------------------- /site/content/chapter3/code/sum-col/sum-col2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/code/sum-col/sum-col2.c -------------------------------------------------------------------------------- /site/content/chapter3/figure/3.59.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/figure/3.59.1.png -------------------------------------------------------------------------------- /site/content/chapter3/figure/3.59.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/figure/3.59.2.png -------------------------------------------------------------------------------- /site/content/chapter3/figure/3.59.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/figure/3.59.3.png -------------------------------------------------------------------------------- /site/content/chapter3/figure/3.59.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/figure/3.59.4.png -------------------------------------------------------------------------------- /site/content/chapter3/figure/3.59.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/figure/3.59.5.png -------------------------------------------------------------------------------- /site/content/chapter3/figure/3.72.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/figure/3.72.1.png -------------------------------------------------------------------------------- /site/content/chapter3/figure/3.72.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/figure/3.72.2.png -------------------------------------------------------------------------------- /site/content/chapter3/figure/3.72.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/figure/3.72.3.png -------------------------------------------------------------------------------- /site/content/chapter3/figure/3.72.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter3/figure/3.72.4.png -------------------------------------------------------------------------------- /site/content/chapter4/4.45.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/4.45.md -------------------------------------------------------------------------------- /site/content/chapter4/4.46.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/4.46.md -------------------------------------------------------------------------------- /site/content/chapter4/4.47.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/4.47.md -------------------------------------------------------------------------------- /site/content/chapter4/4.48.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/4.48.md -------------------------------------------------------------------------------- /site/content/chapter4/4.49.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/4.49.md -------------------------------------------------------------------------------- /site/content/chapter4/4.50.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/4.50.md -------------------------------------------------------------------------------- /site/content/chapter4/4.51.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/4.51.md -------------------------------------------------------------------------------- /site/content/chapter4/4.52.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/4.52.md -------------------------------------------------------------------------------- /site/content/chapter4/4.53.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/4.53.md -------------------------------------------------------------------------------- /site/content/chapter4/4.54.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/4.54.md -------------------------------------------------------------------------------- /site/content/chapter4/4.55.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/4.55.md -------------------------------------------------------------------------------- /site/content/chapter4/4.56.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/4.56.md -------------------------------------------------------------------------------- /site/content/chapter4/4.57.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/4.57.md -------------------------------------------------------------------------------- /site/content/chapter4/4.58.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/4.58.md -------------------------------------------------------------------------------- /site/content/chapter4/4.59.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/4.59.md -------------------------------------------------------------------------------- /site/content/chapter4/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/_index.md -------------------------------------------------------------------------------- /site/content/chapter4/code/bubble-sort/.gitignore: -------------------------------------------------------------------------------- 1 | *.yo 2 | -------------------------------------------------------------------------------- /site/content/chapter4/code/bubble-sort/bubble-sort-array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/bubble-sort/bubble-sort-array.c -------------------------------------------------------------------------------- /site/content/chapter4/code/bubble-sort/bubble-sort-pointer-1-cmove.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/bubble-sort/bubble-sort-pointer-1-cmove.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/bubble-sort/bubble-sort-pointer-3-cmove.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/bubble-sort/bubble-sort-pointer-3-cmove.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/bubble-sort/bubble-sort-pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/bubble-sort/bubble-sort-pointer.c -------------------------------------------------------------------------------- /site/content/chapter4/code/bubble-sort/bubble-sort-pointer.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/bubble-sort/bubble-sort-pointer.s -------------------------------------------------------------------------------- /site/content/chapter4/code/bubble-sort/bubble-sort-pointer.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/bubble-sort/bubble-sort-pointer.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/bubble-sort/bubble-sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/bubble-sort/bubble-sort.h -------------------------------------------------------------------------------- /site/content/chapter4/code/bubble-sort/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/bubble-sort/main.c -------------------------------------------------------------------------------- /site/content/chapter4/code/bubble-sort/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/bubble-sort/makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/iaddq-pipe/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/iaddq-pipe/makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/iaddq-seq/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/iaddq-seq/makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/pipe-1w/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/pipe-1w/makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/pipe-btfnt/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/pipe-btfnt/makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/pipe-lf/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/pipe-lf/makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/pipe-nt/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/pipe-nt/makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/pipe-stall/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/pipe-stall/makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/Makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/README -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/.gitignore -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/Makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/README -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/examples.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/examples.c -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/hcl.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/hcl.lex -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/hcl.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/hcl.y -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/isa.c -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/isa.h -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/mux4.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/mux4.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/node.c -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/node.h -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/outgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/outgen.c -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/outgen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/outgen.h -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/yas-grammar.lex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/yas-grammar.lex -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/yas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/yas.c -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/yas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/yas.h -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/misc/yis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/misc/yis.c -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/.gitignore -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/Makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/README -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/benchmark.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/benchmark.pl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/check-len.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/check-len.pl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/correctness.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/correctness.pl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/gen-driver.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/gen-driver.pl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/ncopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/ncopy.c -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/ncopy.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/ncopy.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/origin-pipe-1w.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/origin-pipe-1w.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/origin-pipe-btfnt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/origin-pipe-btfnt.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/origin-pipe-full.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/origin-pipe-full.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/origin-pipe-lf.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/origin-pipe-lf.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/origin-pipe-nt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/origin-pipe-nt.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/origin-pipe-stall.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/origin-pipe-stall.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe-1w.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe-1w.diff -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe-1w.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe-1w.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe-broken.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe-broken.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe-btfnt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe-btfnt.diff -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe-btfnt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe-btfnt.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe-full.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe-full.diff -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe-full.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe-full.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe-lf.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe-lf.diff -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe-lf.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe-lf.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe-nobypass.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe-nobypass.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe-nt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe-nt.diff -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe-nt.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe-nt.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe-stall.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe-stall.diff -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe-stall.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe-stall.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe-std.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe-std.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipe.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipe.tcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/pipeline.h -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/psim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/psim.c -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/sim.h -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/pipe/stages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/pipe/stages.h -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/ptest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/ptest/.gitignore -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/ptest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/ptest/Makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/ptest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/ptest/README -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/ptest/ctest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/ptest/ctest.pl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/ptest/etest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/ptest/etest.pl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/ptest/htest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/ptest/htest.pl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/ptest/jtest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/ptest/jtest.pl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/ptest/optest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/ptest/optest.pl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/ptest/tester.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/ptest/tester.pm -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/seq/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/seq/.gitignore -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/seq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/seq/Makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/seq/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/seq/README -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/seq/origin-seq-full.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/seq/origin-seq-full.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/seq/seq+-std.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/seq/seq+-std.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/seq/seq+.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/seq/seq+.tcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/seq/seq-full.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/seq/seq-full.diff -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/seq/seq-full.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/seq/seq-full.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/seq/seq-std.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/seq/seq-std.hcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/seq/seq.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/seq/seq.tcl -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/seq/sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/seq/sim.h -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/seq/ssim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/seq/ssim.c -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/.gitignore -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/Makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/README -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/abs-asum-cmov.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/abs-asum-cmov.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/abs-asum-jmp.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/abs-asum-jmp.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/asum.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/asum.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/asumi.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/asumi.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/asumr.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/asumr.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/cjr.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/cjr.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/j-cc.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/j-cc.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/poptest.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/poptest.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/prog1.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/prog1.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/prog10.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/prog10.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/prog2.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/prog2.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/prog3.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/prog3.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/prog4.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/prog4.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/prog5.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/prog5.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/prog6.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/prog6.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/prog7.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/prog7.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/prog8.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/prog8.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/prog9.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/prog9.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/pushquestion.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/pushquestion.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/pushtest.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/pushtest.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/sim/y86-code/ret-hazard.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/sim/y86-code/ret-hazard.ys -------------------------------------------------------------------------------- /site/content/chapter4/code/switch/.gitignore: -------------------------------------------------------------------------------- 1 | *.yo -------------------------------------------------------------------------------- /site/content/chapter4/code/switch/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/switch/makefile -------------------------------------------------------------------------------- /site/content/chapter4/code/switch/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/switch/switch.c -------------------------------------------------------------------------------- /site/content/chapter4/code/switch/switch.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter4/code/switch/switch.ys -------------------------------------------------------------------------------- /site/content/chapter5/5.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/5.13.md -------------------------------------------------------------------------------- /site/content/chapter5/5.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/5.14.md -------------------------------------------------------------------------------- /site/content/chapter5/5.15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/5.15.md -------------------------------------------------------------------------------- /site/content/chapter5/5.16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/5.16.md -------------------------------------------------------------------------------- /site/content/chapter5/5.17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/5.17.md -------------------------------------------------------------------------------- /site/content/chapter5/5.18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/5.18.md -------------------------------------------------------------------------------- /site/content/chapter5/5.19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/5.19.md -------------------------------------------------------------------------------- /site/content/chapter5/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/_index.md -------------------------------------------------------------------------------- /site/content/chapter5/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/code/.gitignore -------------------------------------------------------------------------------- /site/content/chapter5/code/5.13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/code/5.13.c -------------------------------------------------------------------------------- /site/content/chapter5/code/5.14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/code/5.14.c -------------------------------------------------------------------------------- /site/content/chapter5/code/5.15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/code/5.15.c -------------------------------------------------------------------------------- /site/content/chapter5/code/5.16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/code/5.16.c -------------------------------------------------------------------------------- /site/content/chapter5/code/5.17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/code/5.17.c -------------------------------------------------------------------------------- /site/content/chapter5/code/5.18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/code/5.18.c -------------------------------------------------------------------------------- /site/content/chapter5/code/5.19.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/code/5.19.c -------------------------------------------------------------------------------- /site/content/chapter5/code/lib/vec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/code/lib/vec.c -------------------------------------------------------------------------------- /site/content/chapter5/code/lib/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/code/lib/vec.h -------------------------------------------------------------------------------- /site/content/chapter5/code/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter5/code/makefile -------------------------------------------------------------------------------- /site/content/chapter6/6.22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.22.md -------------------------------------------------------------------------------- /site/content/chapter6/6.23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.23.md -------------------------------------------------------------------------------- /site/content/chapter6/6.24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.24.md -------------------------------------------------------------------------------- /site/content/chapter6/6.25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.25.md -------------------------------------------------------------------------------- /site/content/chapter6/6.26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.26.md -------------------------------------------------------------------------------- /site/content/chapter6/6.27.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.27.md -------------------------------------------------------------------------------- /site/content/chapter6/6.28.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.28.md -------------------------------------------------------------------------------- /site/content/chapter6/6.29.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.29.md -------------------------------------------------------------------------------- /site/content/chapter6/6.30.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.30.md -------------------------------------------------------------------------------- /site/content/chapter6/6.31.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.31.md -------------------------------------------------------------------------------- /site/content/chapter6/6.32.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.32.md -------------------------------------------------------------------------------- /site/content/chapter6/6.33.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.33.md -------------------------------------------------------------------------------- /site/content/chapter6/6.34.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.34.md -------------------------------------------------------------------------------- /site/content/chapter6/6.35.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.35.md -------------------------------------------------------------------------------- /site/content/chapter6/6.36.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.36.md -------------------------------------------------------------------------------- /site/content/chapter6/6.37.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.37.md -------------------------------------------------------------------------------- /site/content/chapter6/6.38.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.38.md -------------------------------------------------------------------------------- /site/content/chapter6/6.39.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.39.md -------------------------------------------------------------------------------- /site/content/chapter6/6.40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.40.md -------------------------------------------------------------------------------- /site/content/chapter6/6.41.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.41.md -------------------------------------------------------------------------------- /site/content/chapter6/6.42.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.42.md -------------------------------------------------------------------------------- /site/content/chapter6/6.43.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.43.md -------------------------------------------------------------------------------- /site/content/chapter6/6.44.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.44.md -------------------------------------------------------------------------------- /site/content/chapter6/6.45.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.45.md -------------------------------------------------------------------------------- /site/content/chapter6/6.46.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/6.46.md -------------------------------------------------------------------------------- /site/content/chapter6/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/_index.md -------------------------------------------------------------------------------- /site/content/chapter6/code/.gitignore: -------------------------------------------------------------------------------- 1 | convert 2 | transpose 3 | -------------------------------------------------------------------------------- /site/content/chapter6/code/6.37.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/6.37.c -------------------------------------------------------------------------------- /site/content/chapter6/code/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/convert.c -------------------------------------------------------------------------------- /site/content/chapter6/code/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/makefile -------------------------------------------------------------------------------- /site/content/chapter6/code/mountain/.gitignore: -------------------------------------------------------------------------------- 1 | mountain 2 | -------------------------------------------------------------------------------- /site/content/chapter6/code/mountain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/mountain/Makefile -------------------------------------------------------------------------------- /site/content/chapter6/code/mountain/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/mountain/README -------------------------------------------------------------------------------- /site/content/chapter6/code/mountain/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/mountain/clock.c -------------------------------------------------------------------------------- /site/content/chapter6/code/mountain/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/mountain/clock.h -------------------------------------------------------------------------------- /site/content/chapter6/code/mountain/fcyc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/mountain/fcyc2.c -------------------------------------------------------------------------------- /site/content/chapter6/code/mountain/fcyc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/mountain/fcyc2.h -------------------------------------------------------------------------------- /site/content/chapter6/code/mountain/mountain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/mountain/mountain.c -------------------------------------------------------------------------------- /site/content/chapter6/code/mountain/mountain2x2-corei7h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/mountain/mountain2x2-corei7h.txt -------------------------------------------------------------------------------- /site/content/chapter6/code/mountain/mountain4x4-corei7h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/mountain/mountain4x4-corei7h.txt -------------------------------------------------------------------------------- /site/content/chapter6/code/mountain/mountain5x5-corei7h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/mountain/mountain5x5-corei7h.txt -------------------------------------------------------------------------------- /site/content/chapter6/code/mountain/mountain6x6-corei7h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/mountain/mountain6x6-corei7h.txt -------------------------------------------------------------------------------- /site/content/chapter6/code/mountain/mountain7x7-corei7h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/mountain/mountain7x7-corei7h.txt -------------------------------------------------------------------------------- /site/content/chapter6/code/transpose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter6/code/transpose.c -------------------------------------------------------------------------------- /site/content/chapter7/7.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/7.10.md -------------------------------------------------------------------------------- /site/content/chapter7/7.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/7.11.md -------------------------------------------------------------------------------- /site/content/chapter7/7.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/7.12.md -------------------------------------------------------------------------------- /site/content/chapter7/7.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/7.13.md -------------------------------------------------------------------------------- /site/content/chapter7/7.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/7.6.md -------------------------------------------------------------------------------- /site/content/chapter7/7.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/7.7.md -------------------------------------------------------------------------------- /site/content/chapter7/7.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/7.8.md -------------------------------------------------------------------------------- /site/content/chapter7/7.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/7.9.md -------------------------------------------------------------------------------- /site/content/chapter7/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/_index.md -------------------------------------------------------------------------------- /site/content/chapter7/code/7.13/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/code/7.13/.gitignore -------------------------------------------------------------------------------- /site/content/chapter7/code/7.13/little.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/code/7.13/little.c -------------------------------------------------------------------------------- /site/content/chapter7/code/7.13/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/code/7.13/makefile -------------------------------------------------------------------------------- /site/content/chapter7/code/7.6/.gitignore: -------------------------------------------------------------------------------- 1 | *.o -------------------------------------------------------------------------------- /site/content/chapter7/code/7.6/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/code/7.6/makefile -------------------------------------------------------------------------------- /site/content/chapter7/code/7.6/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/code/7.6/swap.c -------------------------------------------------------------------------------- /site/content/chapter7/code/7.7/bar5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/code/7.7/bar5.c -------------------------------------------------------------------------------- /site/content/chapter7/code/7.7/foo5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/code/7.7/foo5.c -------------------------------------------------------------------------------- /site/content/chapter7/code/7.7/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/code/7.7/makefile -------------------------------------------------------------------------------- /site/content/chapter7/code/7.9/another-bar6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/code/7.9/another-bar6.c -------------------------------------------------------------------------------- /site/content/chapter7/code/7.9/bar6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/code/7.9/bar6.c -------------------------------------------------------------------------------- /site/content/chapter7/code/7.9/foo6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/code/7.9/foo6.c -------------------------------------------------------------------------------- /site/content/chapter7/code/7.9/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/code/7.9/makefile -------------------------------------------------------------------------------- /site/content/chapter7/code/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter7/code/makefile -------------------------------------------------------------------------------- /site/content/chapter8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/.gitignore -------------------------------------------------------------------------------- /site/content/chapter8/8.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.10.md -------------------------------------------------------------------------------- /site/content/chapter8/8.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.11.md -------------------------------------------------------------------------------- /site/content/chapter8/8.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.12.md -------------------------------------------------------------------------------- /site/content/chapter8/8.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.13.md -------------------------------------------------------------------------------- /site/content/chapter8/8.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.14.md -------------------------------------------------------------------------------- /site/content/chapter8/8.15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.15.md -------------------------------------------------------------------------------- /site/content/chapter8/8.16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.16.md -------------------------------------------------------------------------------- /site/content/chapter8/8.17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.17.md -------------------------------------------------------------------------------- /site/content/chapter8/8.18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.18.md -------------------------------------------------------------------------------- /site/content/chapter8/8.19.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title= "8.19" 3 | date = 2021-02-26T09:15:46+08:00 4 | +++ 5 | 6 | 2^n 7 | 8 | 9 | -------------------------------------------------------------------------------- /site/content/chapter8/8.20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.20.md -------------------------------------------------------------------------------- /site/content/chapter8/8.21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.21.md -------------------------------------------------------------------------------- /site/content/chapter8/8.22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.22.md -------------------------------------------------------------------------------- /site/content/chapter8/8.23.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.23.md -------------------------------------------------------------------------------- /site/content/chapter8/8.24.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.24.md -------------------------------------------------------------------------------- /site/content/chapter8/8.25.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.25.md -------------------------------------------------------------------------------- /site/content/chapter8/8.26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.26.md -------------------------------------------------------------------------------- /site/content/chapter8/8.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/8.9.md -------------------------------------------------------------------------------- /site/content/chapter8/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/_index.md -------------------------------------------------------------------------------- /site/content/chapter8/code/.gitignore: -------------------------------------------------------------------------------- 1 | core 2 | -------------------------------------------------------------------------------- /site/content/chapter8/code/8.11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/8.11.c -------------------------------------------------------------------------------- /site/content/chapter8/code/8.12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/8.12.c -------------------------------------------------------------------------------- /site/content/chapter8/code/8.13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/8.13.c -------------------------------------------------------------------------------- /site/content/chapter8/code/8.14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/8.14.c -------------------------------------------------------------------------------- /site/content/chapter8/code/8.15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/8.15.c -------------------------------------------------------------------------------- /site/content/chapter8/code/8.16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/8.16.c -------------------------------------------------------------------------------- /site/content/chapter8/code/8.18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/8.18.c -------------------------------------------------------------------------------- /site/content/chapter8/code/8.19.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/8.19.c -------------------------------------------------------------------------------- /site/content/chapter8/code/8.20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/8.20.c -------------------------------------------------------------------------------- /site/content/chapter8/code/8.21.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/8.21.c -------------------------------------------------------------------------------- /site/content/chapter8/code/8.23.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/8.23.c -------------------------------------------------------------------------------- /site/content/chapter8/code/8.24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/8.24.c -------------------------------------------------------------------------------- /site/content/chapter8/code/8.25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/8.25.c -------------------------------------------------------------------------------- /site/content/chapter8/code/csapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/csapp.c -------------------------------------------------------------------------------- /site/content/chapter8/code/csapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/csapp.h -------------------------------------------------------------------------------- /site/content/chapter8/code/exit-code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/exit-code.c -------------------------------------------------------------------------------- /site/content/chapter8/code/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/makefile -------------------------------------------------------------------------------- /site/content/chapter8/code/mysystem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/mysystem.c -------------------------------------------------------------------------------- /site/content/chapter8/code/shell/.gitignore: -------------------------------------------------------------------------------- 1 | shell 2 | loop 3 | sleep 4 | -------------------------------------------------------------------------------- /site/content/chapter8/code/shell/job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/shell/job.c -------------------------------------------------------------------------------- /site/content/chapter8/code/shell/job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/shell/job.h -------------------------------------------------------------------------------- /site/content/chapter8/code/shell/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/shell/loop.c -------------------------------------------------------------------------------- /site/content/chapter8/code/shell/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/shell/main.c -------------------------------------------------------------------------------- /site/content/chapter8/code/shell/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/shell/makefile -------------------------------------------------------------------------------- /site/content/chapter8/code/shell/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/shell/shell.c -------------------------------------------------------------------------------- /site/content/chapter8/code/shell/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/shell/shell.h -------------------------------------------------------------------------------- /site/content/chapter8/code/shell/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/shell/sleep.c -------------------------------------------------------------------------------- /site/content/chapter8/code/wait-sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/code/wait-sig.c -------------------------------------------------------------------------------- /site/content/chapter8/figure/shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter8/figure/shell.png -------------------------------------------------------------------------------- /site/content/chapter9/9.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/9.11.md -------------------------------------------------------------------------------- /site/content/chapter9/9.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/9.12.md -------------------------------------------------------------------------------- /site/content/chapter9/9.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/9.13.md -------------------------------------------------------------------------------- /site/content/chapter9/9.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/9.14.md -------------------------------------------------------------------------------- /site/content/chapter9/9.15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/9.15.md -------------------------------------------------------------------------------- /site/content/chapter9/9.16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/9.16.md -------------------------------------------------------------------------------- /site/content/chapter9/9.17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/9.17.md -------------------------------------------------------------------------------- /site/content/chapter9/9.18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/9.18.md -------------------------------------------------------------------------------- /site/content/chapter9/9.19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/9.19.md -------------------------------------------------------------------------------- /site/content/chapter9/9.20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/9.20.md -------------------------------------------------------------------------------- /site/content/chapter9/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/_index.md -------------------------------------------------------------------------------- /site/content/chapter9/code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/.gitignore -------------------------------------------------------------------------------- /site/content/chapter9/code/9.14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/9.14.c -------------------------------------------------------------------------------- /site/content/chapter9/code/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/makefile -------------------------------------------------------------------------------- /site/content/chapter9/code/malloc/.gitignore: -------------------------------------------------------------------------------- 1 | *.main 2 | -------------------------------------------------------------------------------- /site/content/chapter9/code/malloc/csapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/malloc/csapp.c -------------------------------------------------------------------------------- /site/content/chapter9/code/malloc/csapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/malloc/csapp.h -------------------------------------------------------------------------------- /site/content/chapter9/code/malloc/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/malloc/main.c -------------------------------------------------------------------------------- /site/content/chapter9/code/malloc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/malloc/makefile -------------------------------------------------------------------------------- /site/content/chapter9/code/malloc/memlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/malloc/memlib.c -------------------------------------------------------------------------------- /site/content/chapter9/code/malloc/memlib.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/malloc/memlib.c.diff -------------------------------------------------------------------------------- /site/content/chapter9/code/malloc/memlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/malloc/memlib.h -------------------------------------------------------------------------------- /site/content/chapter9/code/malloc/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/malloc/mm.c -------------------------------------------------------------------------------- /site/content/chapter9/code/malloc/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/malloc/mm.h -------------------------------------------------------------------------------- /site/content/chapter9/code/malloc/mm.h.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/malloc/mm.h.diff -------------------------------------------------------------------------------- /site/content/chapter9/code/vm/9.17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/vm/9.17.c -------------------------------------------------------------------------------- /site/content/chapter9/code/vm/9.18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/vm/9.18.c -------------------------------------------------------------------------------- /site/content/chapter9/code/vm/csapp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/vm/csapp.c -------------------------------------------------------------------------------- /site/content/chapter9/code/vm/csapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/vm/csapp.h -------------------------------------------------------------------------------- /site/content/chapter9/code/vm/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/vm/makefile -------------------------------------------------------------------------------- /site/content/chapter9/code/vm/memlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/vm/memlib.c -------------------------------------------------------------------------------- /site/content/chapter9/code/vm/memlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/vm/memlib.h -------------------------------------------------------------------------------- /site/content/chapter9/code/vm/mm.9.17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/vm/mm.9.17.c -------------------------------------------------------------------------------- /site/content/chapter9/code/vm/mm.9.17.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/vm/mm.9.17.diff -------------------------------------------------------------------------------- /site/content/chapter9/code/vm/mm.9.18.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/vm/mm.9.18.c -------------------------------------------------------------------------------- /site/content/chapter9/code/vm/mm.9.18.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/vm/mm.9.18.diff -------------------------------------------------------------------------------- /site/content/chapter9/code/vm/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/vm/mm.c -------------------------------------------------------------------------------- /site/content/chapter9/code/vm/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/vm/mm.h -------------------------------------------------------------------------------- /site/content/chapter9/code/vm/mm_first_fit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/vm/mm_first_fit -------------------------------------------------------------------------------- /site/content/chapter9/code/vm/mm_first_fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/content/chapter9/code/vm/mm_first_fit.c -------------------------------------------------------------------------------- /site/layouts/partials/custom-comments.html: -------------------------------------------------------------------------------- 1 | {{ template "_internal/disqus.html" . }} 2 | -------------------------------------------------------------------------------- /site/layouts/partials/custom-footer.html: -------------------------------------------------------------------------------- 1 | {{ template "_internal/google_analytics.html" . }} 2 | -------------------------------------------------------------------------------- /site/layouts/partials/logo.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/layouts/partials/menu-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/layouts/partials/menu-footer.html -------------------------------------------------------------------------------- /site/layouts/shortcodes/include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/layouts/shortcodes/include.html -------------------------------------------------------------------------------- /site/static/csapp3e-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamAndDead/CSAPP-3e-Solutions/HEAD/site/static/csapp3e-cover.jpg --------------------------------------------------------------------------------