├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── main.c ├── plot.js ├── postprocess.py ├── runalltests ├── runtest.py └── tests ├── brk1.c ├── brk2.c ├── context_switch1.c ├── dup1.c ├── eventfd1.c ├── fallocate1.c ├── fallocate2.c ├── futex1.c ├── futex2.c ├── futex3.c ├── futex4.c ├── getppid1.c ├── lock1.c ├── lock2.c ├── lseek1.c ├── lseek2.c ├── malloc1.c ├── malloc2.c ├── mmap1.c ├── mmap2.c ├── open1.c ├── open2.c ├── open3.c ├── page_fault1.c ├── page_fault2.c ├── page_fault3.c ├── pipe1.c ├── poll1.c ├── poll2.c ├── posix_semaphore1.c ├── pread1.c ├── pread2.c ├── pread3.c ├── pthread_mutex1.c ├── pthread_mutex2.c ├── pthread_mutex3.c ├── pthread_mutex4.c ├── pthread_mutex5.c ├── pwrite1.c ├── pwrite2.c ├── pwrite3.c ├── read1.c ├── read2.c ├── read3.c ├── read4.c ├── readseek1.c ├── readseek2.c ├── readseek3.c ├── sched_yield.c ├── signal1.c ├── tlb_flush1.c ├── tlb_flush2.c ├── tlb_flush3.c ├── unix1.c ├── unlink1.c ├── unlink2.c ├── write1.c ├── writeseek1.c ├── writeseek2.c └── writeseek3.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/README.md -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/main.c -------------------------------------------------------------------------------- /plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/plot.js -------------------------------------------------------------------------------- /postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/postprocess.py -------------------------------------------------------------------------------- /runalltests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/runalltests -------------------------------------------------------------------------------- /runtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/runtest.py -------------------------------------------------------------------------------- /tests/brk1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/brk1.c -------------------------------------------------------------------------------- /tests/brk2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/brk2.c -------------------------------------------------------------------------------- /tests/context_switch1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/context_switch1.c -------------------------------------------------------------------------------- /tests/dup1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/dup1.c -------------------------------------------------------------------------------- /tests/eventfd1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/eventfd1.c -------------------------------------------------------------------------------- /tests/fallocate1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/fallocate1.c -------------------------------------------------------------------------------- /tests/fallocate2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/fallocate2.c -------------------------------------------------------------------------------- /tests/futex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/futex1.c -------------------------------------------------------------------------------- /tests/futex2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/futex2.c -------------------------------------------------------------------------------- /tests/futex3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/futex3.c -------------------------------------------------------------------------------- /tests/futex4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/futex4.c -------------------------------------------------------------------------------- /tests/getppid1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/getppid1.c -------------------------------------------------------------------------------- /tests/lock1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/lock1.c -------------------------------------------------------------------------------- /tests/lock2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/lock2.c -------------------------------------------------------------------------------- /tests/lseek1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/lseek1.c -------------------------------------------------------------------------------- /tests/lseek2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/lseek2.c -------------------------------------------------------------------------------- /tests/malloc1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/malloc1.c -------------------------------------------------------------------------------- /tests/malloc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/malloc2.c -------------------------------------------------------------------------------- /tests/mmap1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/mmap1.c -------------------------------------------------------------------------------- /tests/mmap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/mmap2.c -------------------------------------------------------------------------------- /tests/open1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/open1.c -------------------------------------------------------------------------------- /tests/open2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/open2.c -------------------------------------------------------------------------------- /tests/open3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/open3.c -------------------------------------------------------------------------------- /tests/page_fault1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/page_fault1.c -------------------------------------------------------------------------------- /tests/page_fault2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/page_fault2.c -------------------------------------------------------------------------------- /tests/page_fault3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/page_fault3.c -------------------------------------------------------------------------------- /tests/pipe1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/pipe1.c -------------------------------------------------------------------------------- /tests/poll1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/poll1.c -------------------------------------------------------------------------------- /tests/poll2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/poll2.c -------------------------------------------------------------------------------- /tests/posix_semaphore1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/posix_semaphore1.c -------------------------------------------------------------------------------- /tests/pread1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/pread1.c -------------------------------------------------------------------------------- /tests/pread2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/pread2.c -------------------------------------------------------------------------------- /tests/pread3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/pread3.c -------------------------------------------------------------------------------- /tests/pthread_mutex1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/pthread_mutex1.c -------------------------------------------------------------------------------- /tests/pthread_mutex2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/pthread_mutex2.c -------------------------------------------------------------------------------- /tests/pthread_mutex3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/pthread_mutex3.c -------------------------------------------------------------------------------- /tests/pthread_mutex4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/pthread_mutex4.c -------------------------------------------------------------------------------- /tests/pthread_mutex5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/pthread_mutex5.c -------------------------------------------------------------------------------- /tests/pwrite1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/pwrite1.c -------------------------------------------------------------------------------- /tests/pwrite2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/pwrite2.c -------------------------------------------------------------------------------- /tests/pwrite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/pwrite3.c -------------------------------------------------------------------------------- /tests/read1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/read1.c -------------------------------------------------------------------------------- /tests/read2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/read2.c -------------------------------------------------------------------------------- /tests/read3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/read3.c -------------------------------------------------------------------------------- /tests/read4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/read4.c -------------------------------------------------------------------------------- /tests/readseek1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/readseek1.c -------------------------------------------------------------------------------- /tests/readseek2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/readseek2.c -------------------------------------------------------------------------------- /tests/readseek3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/readseek3.c -------------------------------------------------------------------------------- /tests/sched_yield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/sched_yield.c -------------------------------------------------------------------------------- /tests/signal1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/signal1.c -------------------------------------------------------------------------------- /tests/tlb_flush1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/tlb_flush1.c -------------------------------------------------------------------------------- /tests/tlb_flush2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/tlb_flush2.c -------------------------------------------------------------------------------- /tests/tlb_flush3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/tlb_flush3.c -------------------------------------------------------------------------------- /tests/unix1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/unix1.c -------------------------------------------------------------------------------- /tests/unlink1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/unlink1.c -------------------------------------------------------------------------------- /tests/unlink2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/unlink2.c -------------------------------------------------------------------------------- /tests/write1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/write1.c -------------------------------------------------------------------------------- /tests/writeseek1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/writeseek1.c -------------------------------------------------------------------------------- /tests/writeseek2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/writeseek2.c -------------------------------------------------------------------------------- /tests/writeseek3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antonblanchard/will-it-scale/HEAD/tests/writeseek3.c --------------------------------------------------------------------------------