├── .gitignore ├── README.md ├── SConstruct ├── book ├── SConscript ├── app │ ├── ex6.md │ ├── ex7.md │ ├── interp.md │ ├── java.md │ ├── libc.md │ ├── proc.md │ └── web.md ├── bootstrap │ ├── LICENSE │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ ├── js │ │ ├── .jshintrc │ │ ├── bootstrap-affix.js │ │ ├── bootstrap-alert.js │ │ ├── bootstrap-button.js │ │ ├── bootstrap-carousel.js │ │ ├── bootstrap-collapse.js │ │ ├── bootstrap-dropdown.js │ │ ├── bootstrap-modal.js │ │ ├── bootstrap-popover.js │ │ ├── bootstrap-scrollspy.js │ │ ├── bootstrap-tab.js │ │ ├── bootstrap-tooltip.js │ │ ├── bootstrap-transition.js │ │ ├── bootstrap-typeahead.js │ │ └── tests │ │ │ ├── index.html │ │ │ ├── phantom.js │ │ │ ├── server.js │ │ │ ├── unit │ │ │ ├── bootstrap-affix.js │ │ │ ├── bootstrap-alert.js │ │ │ ├── bootstrap-button.js │ │ │ ├── bootstrap-carousel.js │ │ │ ├── bootstrap-collapse.js │ │ │ ├── bootstrap-dropdown.js │ │ │ ├── bootstrap-modal.js │ │ │ ├── bootstrap-phantom.js │ │ │ ├── bootstrap-popover.js │ │ │ ├── bootstrap-scrollspy.js │ │ │ ├── bootstrap-tab.js │ │ │ ├── bootstrap-tooltip.js │ │ │ ├── bootstrap-transition.js │ │ │ └── bootstrap-typeahead.js │ │ │ └── vendor │ │ │ ├── jquery.js │ │ │ ├── qunit.css │ │ │ └── qunit.js │ └── less │ │ ├── accordion.less │ │ ├── alerts.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── grid.less │ │ ├── hero-unit.less │ │ ├── labels-badges.less │ │ ├── layouts.less │ │ ├── media.less │ │ ├── mixins.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── popovers.less │ │ ├── progress-bars.less │ │ ├── reset.less │ │ ├── responsive-1200px-min.less │ │ ├── responsive-767px-max.less │ │ ├── responsive-768px-979px.less │ │ ├── responsive-navbar.less │ │ ├── responsive-utilities.less │ │ ├── responsive.less │ │ ├── scaffolding.less │ │ ├── sprites.less │ │ ├── tables.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less ├── cheatsheet │ └── cheatsheet.md ├── epub.css ├── hints │ ├── ex1.md │ ├── ex2.md │ ├── ex3.md │ ├── ex4.md │ ├── ex5.md │ ├── ex6.md │ └── ex7.md ├── index.md ├── intro │ ├── conv.md │ ├── experiment.json │ ├── foreword.md │ ├── oskernel.md │ └── tsload.md ├── kernel │ ├── async.md │ ├── bio.md │ ├── ex3.md │ ├── ex4.md │ ├── ex5.md │ ├── fs.md │ ├── irq.md │ ├── net.md │ ├── proc.md │ ├── sched.md │ ├── sobj.md │ └── virtmem.md ├── lab │ ├── iscsi.md │ ├── os.md │ └── web.md ├── lang │ ├── args.md │ ├── assocarr.md │ ├── context.md │ ├── ex1.md │ ├── ex2.md │ ├── intro.md │ ├── pointers.md │ ├── predicates.md │ ├── print.md │ ├── probes.md │ ├── strstr.md │ ├── tapset.md │ ├── time.md │ └── vars.md ├── principles │ ├── apply.md │ ├── dyncode.md │ ├── perf.md │ ├── prepost.md │ ├── profiling.md │ └── viz.md ├── template.html ├── tools │ ├── dtrace.md │ ├── dyntrace.md │ ├── safety.md │ ├── stability.md │ ├── systemtap.md │ └── tracing.md └── watermark.txt ├── experiments ├── concurrency │ └── experiment.json ├── deblock │ └── experiment.json ├── drupal │ └── experiment.json ├── duality │ └── experiment.json ├── pthread │ └── experiment.json └── readahead │ └── experiment.json ├── fonts ├── DejaVuSansMono-Bold.ttf ├── DejaVuSansMono-BoldOblique.ttf ├── DejaVuSansMono-Oblique.ttf ├── DejaVuSansMono.ttf ├── lcmss8.afm └── lcmss8.pfb ├── images ├── SConscript ├── aggrs.svg ├── aio.svg ├── appprobes.svg ├── bio.svg ├── catfiles.svg ├── conv │ ├── array.svg │ ├── embed.svg │ ├── list.svg │ ├── pointer.svg │ └── reverse.svg ├── cpubufs.svg ├── density.png ├── dtrace.svg ├── dyntrace.svg ├── forkproc.svg ├── heatmap.png ├── icons │ ├── book.svg │ ├── dtrace.svg │ ├── manpage.svg │ ├── staplang.svg │ └── stapset.svg ├── java.svg ├── kmem.svg ├── linear.png ├── linux │ ├── bio.svg │ ├── mm.svg │ ├── net.svg │ ├── sched.svg │ ├── task.svg │ └── vfs.svg ├── localglobal.svg ├── merge-svgs.py ├── net.svg ├── netprobes.svg ├── oncpu.png ├── pagetable.svg ├── pas.svg ├── perf.svg ├── pointers.svg ├── prepost.svg ├── probes.svg ├── ringbuf-proto.svg ├── ringbuf.svg ├── sched.svg ├── sobj.svg ├── solaris │ ├── as.svg │ ├── bio.svg │ ├── net.svg │ ├── proc.svg │ ├── sched.svg │ ├── streams.svg │ └── vfs.svg ├── stackfmt.svg ├── stapprocess.svg ├── timeline.svg ├── timer-probe.svg ├── tsload.svg ├── varscope.svg ├── vfsops.svg └── webapp.svg ├── scripts ├── dtrace │ ├── callgraph.d │ ├── cvtrace.d │ ├── deblock.d │ ├── dumptask-lab3.d │ ├── dumptask.d │ ├── forktime.d │ ├── hotspot.d │ ├── kmemstat.d │ ├── mtxtime.d │ ├── openaggr.d │ ├── opentrace.d │ ├── pagefault.d │ ├── pfstat.d │ ├── proc.d │ ├── pthread.d │ ├── pycode.d │ ├── pycode.h │ ├── pymalloc.d │ ├── readahead.d │ ├── sdtrace.d │ ├── stat.d │ ├── topphp.d │ ├── tstrace.d │ ├── web.d │ └── wstat.d ├── src │ ├── hellouser.py │ ├── java │ │ ├── Greeter.java │ │ ├── Greeting.java │ │ └── GreetingThread.java │ ├── jsdt │ │ ├── Greeting.java │ │ ├── GreetingProvider.java │ │ └── JSDT.java │ ├── lab3.c │ ├── openproc.py │ ├── opentrace.py │ └── pthread.c └── stap │ ├── callgraph.stp │ ├── cfstrace.stp │ ├── deblock.stp │ ├── dumptask-lab3.stp │ ├── dumptask.stp │ ├── forktime.stp │ ├── hotspot.stp │ ├── kmemstat.stp │ ├── lstat.stp │ ├── mtxtime.stp │ ├── openaggr.stp │ ├── opentrace.stp │ ├── pagefault.stp │ ├── pfstat.stp │ ├── proc.stp │ ├── pthread.stp │ ├── pycode.stp │ ├── pymalloc.stp │ ├── readahead.stp │ ├── scsitrace.stp │ ├── tapset │ └── lstat.stp │ ├── topphp.stp │ ├── web.stp │ ├── wqtrace.stp │ └── wstat.stp ├── tsdoc ├── gen-cheatsheet.py ├── gen-doc.py └── tsdoc │ ├── __init__.py │ ├── blocks │ ├── __init__.py │ ├── epub.py │ ├── html.py │ ├── latex.py │ ├── markdown.py │ └── pdf.py │ ├── mdparser2.py │ └── page.py └── tsload ├── SConstruct ├── file_opener ├── .ctime_cache ├── SConscript ├── experiment.json ├── file_opener.c ├── include │ └── file_opener.h └── modinfo.cfg └── proc_starter ├── .ctime_cache ├── SConscript ├── experiment.json ├── include ├── proc_starter.h └── shell.h ├── modinfo.json ├── proc_starter.c └── shell.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/SConstruct -------------------------------------------------------------------------------- /book/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/SConscript -------------------------------------------------------------------------------- /book/app/ex6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/app/ex6.md -------------------------------------------------------------------------------- /book/app/ex7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/app/ex7.md -------------------------------------------------------------------------------- /book/app/interp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/app/interp.md -------------------------------------------------------------------------------- /book/app/java.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/app/java.md -------------------------------------------------------------------------------- /book/app/libc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/app/libc.md -------------------------------------------------------------------------------- /book/app/proc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/app/proc.md -------------------------------------------------------------------------------- /book/app/web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/app/web.md -------------------------------------------------------------------------------- /book/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/LICENSE -------------------------------------------------------------------------------- /book/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /book/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /book/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/.jshintrc -------------------------------------------------------------------------------- /book/bootstrap/js/bootstrap-affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/bootstrap-affix.js -------------------------------------------------------------------------------- /book/bootstrap/js/bootstrap-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/bootstrap-alert.js -------------------------------------------------------------------------------- /book/bootstrap/js/bootstrap-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/bootstrap-button.js -------------------------------------------------------------------------------- /book/bootstrap/js/bootstrap-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/bootstrap-carousel.js -------------------------------------------------------------------------------- /book/bootstrap/js/bootstrap-collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/bootstrap-collapse.js -------------------------------------------------------------------------------- /book/bootstrap/js/bootstrap-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/bootstrap-dropdown.js -------------------------------------------------------------------------------- /book/bootstrap/js/bootstrap-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/bootstrap-modal.js -------------------------------------------------------------------------------- /book/bootstrap/js/bootstrap-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/bootstrap-popover.js -------------------------------------------------------------------------------- /book/bootstrap/js/bootstrap-scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/bootstrap-scrollspy.js -------------------------------------------------------------------------------- /book/bootstrap/js/bootstrap-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/bootstrap-tab.js -------------------------------------------------------------------------------- /book/bootstrap/js/bootstrap-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/bootstrap-tooltip.js -------------------------------------------------------------------------------- /book/bootstrap/js/bootstrap-transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/bootstrap-transition.js -------------------------------------------------------------------------------- /book/bootstrap/js/bootstrap-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/bootstrap-typeahead.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/index.html -------------------------------------------------------------------------------- /book/bootstrap/js/tests/phantom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/phantom.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/server.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/unit/bootstrap-affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/unit/bootstrap-affix.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/unit/bootstrap-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/unit/bootstrap-alert.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/unit/bootstrap-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/unit/bootstrap-button.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/unit/bootstrap-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/unit/bootstrap-carousel.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/unit/bootstrap-collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/unit/bootstrap-collapse.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/unit/bootstrap-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/unit/bootstrap-dropdown.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/unit/bootstrap-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/unit/bootstrap-modal.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/unit/bootstrap-phantom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/unit/bootstrap-phantom.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/unit/bootstrap-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/unit/bootstrap-popover.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/unit/bootstrap-scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/unit/bootstrap-scrollspy.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/unit/bootstrap-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/unit/bootstrap-tab.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/unit/bootstrap-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/unit/bootstrap-tooltip.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/unit/bootstrap-transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/unit/bootstrap-transition.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/unit/bootstrap-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/unit/bootstrap-typeahead.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/vendor/jquery.js -------------------------------------------------------------------------------- /book/bootstrap/js/tests/vendor/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/vendor/qunit.css -------------------------------------------------------------------------------- /book/bootstrap/js/tests/vendor/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/js/tests/vendor/qunit.js -------------------------------------------------------------------------------- /book/bootstrap/less/accordion.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/accordion.less -------------------------------------------------------------------------------- /book/bootstrap/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/alerts.less -------------------------------------------------------------------------------- /book/bootstrap/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/bootstrap.less -------------------------------------------------------------------------------- /book/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/breadcrumbs.less -------------------------------------------------------------------------------- /book/bootstrap/less/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/button-groups.less -------------------------------------------------------------------------------- /book/bootstrap/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/buttons.less -------------------------------------------------------------------------------- /book/bootstrap/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/carousel.less -------------------------------------------------------------------------------- /book/bootstrap/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/close.less -------------------------------------------------------------------------------- /book/bootstrap/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/code.less -------------------------------------------------------------------------------- /book/bootstrap/less/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/component-animations.less -------------------------------------------------------------------------------- /book/bootstrap/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/dropdowns.less -------------------------------------------------------------------------------- /book/bootstrap/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/forms.less -------------------------------------------------------------------------------- /book/bootstrap/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/grid.less -------------------------------------------------------------------------------- /book/bootstrap/less/hero-unit.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/hero-unit.less -------------------------------------------------------------------------------- /book/bootstrap/less/labels-badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/labels-badges.less -------------------------------------------------------------------------------- /book/bootstrap/less/layouts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/layouts.less -------------------------------------------------------------------------------- /book/bootstrap/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/media.less -------------------------------------------------------------------------------- /book/bootstrap/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/mixins.less -------------------------------------------------------------------------------- /book/bootstrap/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/modals.less -------------------------------------------------------------------------------- /book/bootstrap/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/navbar.less -------------------------------------------------------------------------------- /book/bootstrap/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/navs.less -------------------------------------------------------------------------------- /book/bootstrap/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/pager.less -------------------------------------------------------------------------------- /book/bootstrap/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/pagination.less -------------------------------------------------------------------------------- /book/bootstrap/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/popovers.less -------------------------------------------------------------------------------- /book/bootstrap/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/progress-bars.less -------------------------------------------------------------------------------- /book/bootstrap/less/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/reset.less -------------------------------------------------------------------------------- /book/bootstrap/less/responsive-1200px-min.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/responsive-1200px-min.less -------------------------------------------------------------------------------- /book/bootstrap/less/responsive-767px-max.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/responsive-767px-max.less -------------------------------------------------------------------------------- /book/bootstrap/less/responsive-768px-979px.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/responsive-768px-979px.less -------------------------------------------------------------------------------- /book/bootstrap/less/responsive-navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/responsive-navbar.less -------------------------------------------------------------------------------- /book/bootstrap/less/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/responsive-utilities.less -------------------------------------------------------------------------------- /book/bootstrap/less/responsive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/responsive.less -------------------------------------------------------------------------------- /book/bootstrap/less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/scaffolding.less -------------------------------------------------------------------------------- /book/bootstrap/less/sprites.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/sprites.less -------------------------------------------------------------------------------- /book/bootstrap/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/tables.less -------------------------------------------------------------------------------- /book/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/thumbnails.less -------------------------------------------------------------------------------- /book/bootstrap/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/tooltip.less -------------------------------------------------------------------------------- /book/bootstrap/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/type.less -------------------------------------------------------------------------------- /book/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/utilities.less -------------------------------------------------------------------------------- /book/bootstrap/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/variables.less -------------------------------------------------------------------------------- /book/bootstrap/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/bootstrap/less/wells.less -------------------------------------------------------------------------------- /book/cheatsheet/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/cheatsheet/cheatsheet.md -------------------------------------------------------------------------------- /book/epub.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/epub.css -------------------------------------------------------------------------------- /book/hints/ex1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/hints/ex1.md -------------------------------------------------------------------------------- /book/hints/ex2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/hints/ex2.md -------------------------------------------------------------------------------- /book/hints/ex3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/hints/ex3.md -------------------------------------------------------------------------------- /book/hints/ex4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/hints/ex4.md -------------------------------------------------------------------------------- /book/hints/ex5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/hints/ex5.md -------------------------------------------------------------------------------- /book/hints/ex6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/hints/ex6.md -------------------------------------------------------------------------------- /book/hints/ex7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/hints/ex7.md -------------------------------------------------------------------------------- /book/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/index.md -------------------------------------------------------------------------------- /book/intro/conv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/intro/conv.md -------------------------------------------------------------------------------- /book/intro/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/intro/experiment.json -------------------------------------------------------------------------------- /book/intro/foreword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/intro/foreword.md -------------------------------------------------------------------------------- /book/intro/oskernel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/intro/oskernel.md -------------------------------------------------------------------------------- /book/intro/tsload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/intro/tsload.md -------------------------------------------------------------------------------- /book/kernel/async.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/kernel/async.md -------------------------------------------------------------------------------- /book/kernel/bio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/kernel/bio.md -------------------------------------------------------------------------------- /book/kernel/ex3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/kernel/ex3.md -------------------------------------------------------------------------------- /book/kernel/ex4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/kernel/ex4.md -------------------------------------------------------------------------------- /book/kernel/ex5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/kernel/ex5.md -------------------------------------------------------------------------------- /book/kernel/fs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/kernel/fs.md -------------------------------------------------------------------------------- /book/kernel/irq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/kernel/irq.md -------------------------------------------------------------------------------- /book/kernel/net.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/kernel/net.md -------------------------------------------------------------------------------- /book/kernel/proc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/kernel/proc.md -------------------------------------------------------------------------------- /book/kernel/sched.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/kernel/sched.md -------------------------------------------------------------------------------- /book/kernel/sobj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/kernel/sobj.md -------------------------------------------------------------------------------- /book/kernel/virtmem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/kernel/virtmem.md -------------------------------------------------------------------------------- /book/lab/iscsi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lab/iscsi.md -------------------------------------------------------------------------------- /book/lab/os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lab/os.md -------------------------------------------------------------------------------- /book/lab/web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lab/web.md -------------------------------------------------------------------------------- /book/lang/args.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lang/args.md -------------------------------------------------------------------------------- /book/lang/assocarr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lang/assocarr.md -------------------------------------------------------------------------------- /book/lang/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lang/context.md -------------------------------------------------------------------------------- /book/lang/ex1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lang/ex1.md -------------------------------------------------------------------------------- /book/lang/ex2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lang/ex2.md -------------------------------------------------------------------------------- /book/lang/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lang/intro.md -------------------------------------------------------------------------------- /book/lang/pointers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lang/pointers.md -------------------------------------------------------------------------------- /book/lang/predicates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lang/predicates.md -------------------------------------------------------------------------------- /book/lang/print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lang/print.md -------------------------------------------------------------------------------- /book/lang/probes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lang/probes.md -------------------------------------------------------------------------------- /book/lang/strstr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lang/strstr.md -------------------------------------------------------------------------------- /book/lang/tapset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lang/tapset.md -------------------------------------------------------------------------------- /book/lang/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lang/time.md -------------------------------------------------------------------------------- /book/lang/vars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/lang/vars.md -------------------------------------------------------------------------------- /book/principles/apply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/principles/apply.md -------------------------------------------------------------------------------- /book/principles/dyncode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/principles/dyncode.md -------------------------------------------------------------------------------- /book/principles/perf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/principles/perf.md -------------------------------------------------------------------------------- /book/principles/prepost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/principles/prepost.md -------------------------------------------------------------------------------- /book/principles/profiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/principles/profiling.md -------------------------------------------------------------------------------- /book/principles/viz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/principles/viz.md -------------------------------------------------------------------------------- /book/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/template.html -------------------------------------------------------------------------------- /book/tools/dtrace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/tools/dtrace.md -------------------------------------------------------------------------------- /book/tools/dyntrace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/tools/dyntrace.md -------------------------------------------------------------------------------- /book/tools/safety.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/tools/safety.md -------------------------------------------------------------------------------- /book/tools/stability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/tools/stability.md -------------------------------------------------------------------------------- /book/tools/systemtap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/tools/systemtap.md -------------------------------------------------------------------------------- /book/tools/tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/tools/tracing.md -------------------------------------------------------------------------------- /book/watermark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/book/watermark.txt -------------------------------------------------------------------------------- /experiments/concurrency/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/experiments/concurrency/experiment.json -------------------------------------------------------------------------------- /experiments/deblock/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/experiments/deblock/experiment.json -------------------------------------------------------------------------------- /experiments/drupal/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/experiments/drupal/experiment.json -------------------------------------------------------------------------------- /experiments/duality/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/experiments/duality/experiment.json -------------------------------------------------------------------------------- /experiments/pthread/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/experiments/pthread/experiment.json -------------------------------------------------------------------------------- /experiments/readahead/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/experiments/readahead/experiment.json -------------------------------------------------------------------------------- /fonts/DejaVuSansMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/fonts/DejaVuSansMono-Bold.ttf -------------------------------------------------------------------------------- /fonts/DejaVuSansMono-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/fonts/DejaVuSansMono-BoldOblique.ttf -------------------------------------------------------------------------------- /fonts/DejaVuSansMono-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/fonts/DejaVuSansMono-Oblique.ttf -------------------------------------------------------------------------------- /fonts/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/fonts/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /fonts/lcmss8.afm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/fonts/lcmss8.afm -------------------------------------------------------------------------------- /fonts/lcmss8.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/fonts/lcmss8.pfb -------------------------------------------------------------------------------- /images/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/SConscript -------------------------------------------------------------------------------- /images/aggrs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/aggrs.svg -------------------------------------------------------------------------------- /images/aio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/aio.svg -------------------------------------------------------------------------------- /images/appprobes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/appprobes.svg -------------------------------------------------------------------------------- /images/bio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/bio.svg -------------------------------------------------------------------------------- /images/catfiles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/catfiles.svg -------------------------------------------------------------------------------- /images/conv/array.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/conv/array.svg -------------------------------------------------------------------------------- /images/conv/embed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/conv/embed.svg -------------------------------------------------------------------------------- /images/conv/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/conv/list.svg -------------------------------------------------------------------------------- /images/conv/pointer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/conv/pointer.svg -------------------------------------------------------------------------------- /images/conv/reverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/conv/reverse.svg -------------------------------------------------------------------------------- /images/cpubufs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/cpubufs.svg -------------------------------------------------------------------------------- /images/density.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/density.png -------------------------------------------------------------------------------- /images/dtrace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/dtrace.svg -------------------------------------------------------------------------------- /images/dyntrace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/dyntrace.svg -------------------------------------------------------------------------------- /images/forkproc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/forkproc.svg -------------------------------------------------------------------------------- /images/heatmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/heatmap.png -------------------------------------------------------------------------------- /images/icons/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/icons/book.svg -------------------------------------------------------------------------------- /images/icons/dtrace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/icons/dtrace.svg -------------------------------------------------------------------------------- /images/icons/manpage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/icons/manpage.svg -------------------------------------------------------------------------------- /images/icons/staplang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/icons/staplang.svg -------------------------------------------------------------------------------- /images/icons/stapset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/icons/stapset.svg -------------------------------------------------------------------------------- /images/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/java.svg -------------------------------------------------------------------------------- /images/kmem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/kmem.svg -------------------------------------------------------------------------------- /images/linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/linear.png -------------------------------------------------------------------------------- /images/linux/bio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/linux/bio.svg -------------------------------------------------------------------------------- /images/linux/mm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/linux/mm.svg -------------------------------------------------------------------------------- /images/linux/net.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/linux/net.svg -------------------------------------------------------------------------------- /images/linux/sched.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/linux/sched.svg -------------------------------------------------------------------------------- /images/linux/task.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/linux/task.svg -------------------------------------------------------------------------------- /images/linux/vfs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/linux/vfs.svg -------------------------------------------------------------------------------- /images/localglobal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/localglobal.svg -------------------------------------------------------------------------------- /images/merge-svgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/merge-svgs.py -------------------------------------------------------------------------------- /images/net.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/net.svg -------------------------------------------------------------------------------- /images/netprobes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/netprobes.svg -------------------------------------------------------------------------------- /images/oncpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/oncpu.png -------------------------------------------------------------------------------- /images/pagetable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/pagetable.svg -------------------------------------------------------------------------------- /images/pas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/pas.svg -------------------------------------------------------------------------------- /images/perf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/perf.svg -------------------------------------------------------------------------------- /images/pointers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/pointers.svg -------------------------------------------------------------------------------- /images/prepost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/prepost.svg -------------------------------------------------------------------------------- /images/probes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/probes.svg -------------------------------------------------------------------------------- /images/ringbuf-proto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/ringbuf-proto.svg -------------------------------------------------------------------------------- /images/ringbuf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/ringbuf.svg -------------------------------------------------------------------------------- /images/sched.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/sched.svg -------------------------------------------------------------------------------- /images/sobj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/sobj.svg -------------------------------------------------------------------------------- /images/solaris/as.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/solaris/as.svg -------------------------------------------------------------------------------- /images/solaris/bio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/solaris/bio.svg -------------------------------------------------------------------------------- /images/solaris/net.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/solaris/net.svg -------------------------------------------------------------------------------- /images/solaris/proc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/solaris/proc.svg -------------------------------------------------------------------------------- /images/solaris/sched.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/solaris/sched.svg -------------------------------------------------------------------------------- /images/solaris/streams.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/solaris/streams.svg -------------------------------------------------------------------------------- /images/solaris/vfs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/solaris/vfs.svg -------------------------------------------------------------------------------- /images/stackfmt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/stackfmt.svg -------------------------------------------------------------------------------- /images/stapprocess.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/stapprocess.svg -------------------------------------------------------------------------------- /images/timeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/timeline.svg -------------------------------------------------------------------------------- /images/timer-probe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/timer-probe.svg -------------------------------------------------------------------------------- /images/tsload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/tsload.svg -------------------------------------------------------------------------------- /images/varscope.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/varscope.svg -------------------------------------------------------------------------------- /images/vfsops.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/vfsops.svg -------------------------------------------------------------------------------- /images/webapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/images/webapp.svg -------------------------------------------------------------------------------- /scripts/dtrace/callgraph.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/callgraph.d -------------------------------------------------------------------------------- /scripts/dtrace/cvtrace.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/cvtrace.d -------------------------------------------------------------------------------- /scripts/dtrace/deblock.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/deblock.d -------------------------------------------------------------------------------- /scripts/dtrace/dumptask-lab3.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/dumptask-lab3.d -------------------------------------------------------------------------------- /scripts/dtrace/dumptask.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/dumptask.d -------------------------------------------------------------------------------- /scripts/dtrace/forktime.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/forktime.d -------------------------------------------------------------------------------- /scripts/dtrace/hotspot.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/hotspot.d -------------------------------------------------------------------------------- /scripts/dtrace/kmemstat.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/kmemstat.d -------------------------------------------------------------------------------- /scripts/dtrace/mtxtime.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/mtxtime.d -------------------------------------------------------------------------------- /scripts/dtrace/openaggr.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/openaggr.d -------------------------------------------------------------------------------- /scripts/dtrace/opentrace.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/opentrace.d -------------------------------------------------------------------------------- /scripts/dtrace/pagefault.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/pagefault.d -------------------------------------------------------------------------------- /scripts/dtrace/pfstat.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/pfstat.d -------------------------------------------------------------------------------- /scripts/dtrace/proc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/proc.d -------------------------------------------------------------------------------- /scripts/dtrace/pthread.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/pthread.d -------------------------------------------------------------------------------- /scripts/dtrace/pycode.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/pycode.d -------------------------------------------------------------------------------- /scripts/dtrace/pycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/pycode.h -------------------------------------------------------------------------------- /scripts/dtrace/pymalloc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/pymalloc.d -------------------------------------------------------------------------------- /scripts/dtrace/readahead.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/readahead.d -------------------------------------------------------------------------------- /scripts/dtrace/sdtrace.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/sdtrace.d -------------------------------------------------------------------------------- /scripts/dtrace/stat.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/stat.d -------------------------------------------------------------------------------- /scripts/dtrace/topphp.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/topphp.d -------------------------------------------------------------------------------- /scripts/dtrace/tstrace.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/tstrace.d -------------------------------------------------------------------------------- /scripts/dtrace/web.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/web.d -------------------------------------------------------------------------------- /scripts/dtrace/wstat.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/dtrace/wstat.d -------------------------------------------------------------------------------- /scripts/src/hellouser.py: -------------------------------------------------------------------------------- 1 | import os 2 | print "Hello, " + os.getenv('LOGNAME', 'anonymous') + '!' 3 | 4 | -------------------------------------------------------------------------------- /scripts/src/java/Greeter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/src/java/Greeter.java -------------------------------------------------------------------------------- /scripts/src/java/Greeting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/src/java/Greeting.java -------------------------------------------------------------------------------- /scripts/src/java/GreetingThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/src/java/GreetingThread.java -------------------------------------------------------------------------------- /scripts/src/jsdt/Greeting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/src/jsdt/Greeting.java -------------------------------------------------------------------------------- /scripts/src/jsdt/GreetingProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/src/jsdt/GreetingProvider.java -------------------------------------------------------------------------------- /scripts/src/jsdt/JSDT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/src/jsdt/JSDT.java -------------------------------------------------------------------------------- /scripts/src/lab3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/src/lab3.c -------------------------------------------------------------------------------- /scripts/src/openproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/src/openproc.py -------------------------------------------------------------------------------- /scripts/src/opentrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/src/opentrace.py -------------------------------------------------------------------------------- /scripts/src/pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/src/pthread.c -------------------------------------------------------------------------------- /scripts/stap/callgraph.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/callgraph.stp -------------------------------------------------------------------------------- /scripts/stap/cfstrace.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/cfstrace.stp -------------------------------------------------------------------------------- /scripts/stap/deblock.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/deblock.stp -------------------------------------------------------------------------------- /scripts/stap/dumptask-lab3.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/dumptask-lab3.stp -------------------------------------------------------------------------------- /scripts/stap/dumptask.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/dumptask.stp -------------------------------------------------------------------------------- /scripts/stap/forktime.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/forktime.stp -------------------------------------------------------------------------------- /scripts/stap/hotspot.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/hotspot.stp -------------------------------------------------------------------------------- /scripts/stap/kmemstat.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/kmemstat.stp -------------------------------------------------------------------------------- /scripts/stap/lstat.stp: -------------------------------------------------------------------------------- 1 | probe lstat { 2 | printf("%s %d\n", filename, size); 3 | } 4 | 5 | -------------------------------------------------------------------------------- /scripts/stap/mtxtime.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/mtxtime.stp -------------------------------------------------------------------------------- /scripts/stap/openaggr.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/openaggr.stp -------------------------------------------------------------------------------- /scripts/stap/opentrace.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/opentrace.stp -------------------------------------------------------------------------------- /scripts/stap/pagefault.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/pagefault.stp -------------------------------------------------------------------------------- /scripts/stap/pfstat.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/pfstat.stp -------------------------------------------------------------------------------- /scripts/stap/proc.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/proc.stp -------------------------------------------------------------------------------- /scripts/stap/pthread.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/pthread.stp -------------------------------------------------------------------------------- /scripts/stap/pycode.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/pycode.stp -------------------------------------------------------------------------------- /scripts/stap/pymalloc.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/pymalloc.stp -------------------------------------------------------------------------------- /scripts/stap/readahead.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/readahead.stp -------------------------------------------------------------------------------- /scripts/stap/scsitrace.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/scsitrace.stp -------------------------------------------------------------------------------- /scripts/stap/tapset/lstat.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/tapset/lstat.stp -------------------------------------------------------------------------------- /scripts/stap/topphp.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/topphp.stp -------------------------------------------------------------------------------- /scripts/stap/web.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/web.stp -------------------------------------------------------------------------------- /scripts/stap/wqtrace.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/wqtrace.stp -------------------------------------------------------------------------------- /scripts/stap/wstat.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/scripts/stap/wstat.stp -------------------------------------------------------------------------------- /tsdoc/gen-cheatsheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsdoc/gen-cheatsheet.py -------------------------------------------------------------------------------- /tsdoc/gen-doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsdoc/gen-doc.py -------------------------------------------------------------------------------- /tsdoc/tsdoc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsdoc/tsdoc/__init__.py -------------------------------------------------------------------------------- /tsdoc/tsdoc/blocks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsdoc/tsdoc/blocks/__init__.py -------------------------------------------------------------------------------- /tsdoc/tsdoc/blocks/epub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsdoc/tsdoc/blocks/epub.py -------------------------------------------------------------------------------- /tsdoc/tsdoc/blocks/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsdoc/tsdoc/blocks/html.py -------------------------------------------------------------------------------- /tsdoc/tsdoc/blocks/latex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsdoc/tsdoc/blocks/latex.py -------------------------------------------------------------------------------- /tsdoc/tsdoc/blocks/markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsdoc/tsdoc/blocks/markdown.py -------------------------------------------------------------------------------- /tsdoc/tsdoc/blocks/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsdoc/tsdoc/blocks/pdf.py -------------------------------------------------------------------------------- /tsdoc/tsdoc/mdparser2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsdoc/tsdoc/mdparser2.py -------------------------------------------------------------------------------- /tsdoc/tsdoc/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsdoc/tsdoc/page.py -------------------------------------------------------------------------------- /tsload/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsload/SConstruct -------------------------------------------------------------------------------- /tsload/file_opener/.ctime_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsload/file_opener/.ctime_cache -------------------------------------------------------------------------------- /tsload/file_opener/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsload/file_opener/SConscript -------------------------------------------------------------------------------- /tsload/file_opener/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsload/file_opener/experiment.json -------------------------------------------------------------------------------- /tsload/file_opener/file_opener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsload/file_opener/file_opener.c -------------------------------------------------------------------------------- /tsload/file_opener/include/file_opener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsload/file_opener/include/file_opener.h -------------------------------------------------------------------------------- /tsload/file_opener/modinfo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsload/file_opener/modinfo.cfg -------------------------------------------------------------------------------- /tsload/proc_starter/.ctime_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsload/proc_starter/.ctime_cache -------------------------------------------------------------------------------- /tsload/proc_starter/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsload/proc_starter/SConscript -------------------------------------------------------------------------------- /tsload/proc_starter/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsload/proc_starter/experiment.json -------------------------------------------------------------------------------- /tsload/proc_starter/include/proc_starter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsload/proc_starter/include/proc_starter.h -------------------------------------------------------------------------------- /tsload/proc_starter/include/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsload/proc_starter/include/shell.h -------------------------------------------------------------------------------- /tsload/proc_starter/modinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsload/proc_starter/modinfo.json -------------------------------------------------------------------------------- /tsload/proc_starter/proc_starter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsload/proc_starter/proc_starter.c -------------------------------------------------------------------------------- /tsload/proc_starter/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myaut/dtrace-stap-book/HEAD/tsload/proc_starter/shell.c --------------------------------------------------------------------------------