├── .cproject ├── .dockerignore ├── .gitignore ├── .project ├── COPYING ├── Dockerfile ├── Makefile ├── Makefile.config ├── README ├── README.Android ├── README.md ├── TODO ├── affinity.c ├── cache.c ├── config ├── debian ├── changelog ├── compat ├── control ├── copyright ├── rules ├── source │ └── format ├── tests │ ├── control │ └── fast-test-all └── watch ├── example-jobs ├── cpu-cache.job ├── cpu.job ├── device.job ├── example.job ├── filesystem.job ├── hot-cpu.job ├── interrupt.job ├── io.job ├── matrix-methods.job ├── memory.job ├── network.job ├── pipe.job ├── scheduler.job ├── security.job └── vm.job ├── helper.c ├── ignite-cpu.c ├── io-priority.c ├── job.c ├── limit.c ├── log.c ├── madvise.c ├── mascot └── stress-ng.svg ├── mincore.c ├── mlock.c ├── mmap.c ├── mounts.c ├── mwc.c ├── net.c ├── out-of-memory.c ├── parse-opts.c ├── perf-event.c ├── perf.c ├── personality.c ├── sched.c ├── setting.c ├── sgx ├── Makefile ├── enclave_cpu │ ├── Makefile │ ├── sgx_t.mk │ ├── sgx_u.mk │ └── trusted │ │ ├── companion.h │ │ ├── enclave.c │ │ ├── enclave.config.xml │ │ ├── enclave.edl │ │ ├── enclave.lds │ │ ├── enclave_private.pem │ │ └── stress-cpu.c ├── enclave_vm │ ├── Makefile │ ├── sgx_t.mk │ ├── sgx_u.mk │ └── trusted │ │ ├── companion.c │ │ ├── companion.h │ │ ├── mincore.c │ │ ├── stress-version.h │ │ ├── stress-vm.c │ │ ├── stress-vm.h │ │ ├── vm.c │ │ ├── vm.config.xml │ │ ├── vm.edl │ │ ├── vm.lds │ │ └── vm_private.pem ├── utils.c └── utils.h ├── shim.c ├── smatchify.sh ├── snapcraft ├── Makefile └── snapcraft.yaml ├── stress-af-alg.c ├── stress-affinity.c ├── stress-aio-linux.c ├── stress-aio.c ├── stress-apparmor.c ├── stress-atomic.c ├── stress-bigheap.c ├── stress-bind-mount.c ├── stress-branch.c ├── stress-brk.c ├── stress-bsearch.c ├── stress-cache.c ├── stress-cap.c ├── stress-chdir.c ├── stress-chmod.c ├── stress-chown.c ├── stress-chroot.c ├── stress-clock.c ├── stress-clone.c ├── stress-context.c ├── stress-copy-file.c ├── stress-cpu-online.c ├── stress-cpu.c ├── stress-crypt.c ├── stress-cyclic.c ├── stress-daemon.c ├── stress-dccp.c ├── stress-dentry.c ├── stress-dev.c ├── stress-dir.c ├── stress-dirdeep.c ├── stress-dnotify.c ├── stress-dup.c ├── stress-epoll.c ├── stress-eventfd.c ├── stress-exec.c ├── stress-fallocate.c ├── stress-fanotify.c ├── stress-fault.c ├── stress-fcntl.c ├── stress-fiemap.c ├── stress-fifo.c ├── stress-filename.c ├── stress-flock.c ├── stress-fork.c ├── stress-fp-error.c ├── stress-fstat.c ├── stress-full.c ├── stress-funccall.c ├── stress-futex.c ├── stress-get.c ├── stress-getdent.c ├── stress-getrandom.c ├── stress-handle.c ├── stress-hdd.c ├── stress-heapsort.c ├── stress-hrtimers.c ├── stress-hsearch.c ├── stress-icache.c ├── stress-icmp-flood.c ├── stress-inode-flags.c ├── stress-inotify.c ├── stress-iomix.c ├── stress-ioport.c ├── stress-ioprio.c ├── stress-iosync.c ├── stress-itimer.c ├── stress-kcmp.c ├── stress-key.c ├── stress-kill.c ├── stress-klog.c ├── stress-lease.c ├── stress-link.c ├── stress-locka.c ├── stress-lockbus.c ├── stress-lockf.c ├── stress-lockofd.c ├── stress-longjmp.c ├── stress-lsearch.c ├── stress-madvise.c ├── stress-malloc.c ├── stress-matrix.c ├── stress-membarrier.c ├── stress-memcpy.c ├── stress-memfd.c ├── stress-memrate.c ├── stress-memthrash.c ├── stress-mergesort.c ├── stress-mincore.c ├── stress-mknod.c ├── stress-mlock.c ├── stress-mmap.c ├── stress-mmapaddr.c ├── stress-mmapfork.c ├── stress-mmapmany.c ├── stress-mq.c ├── stress-mremap.c ├── stress-msg.c ├── stress-msync.c ├── stress-netdev.c ├── stress-netlink-proc.c ├── stress-ng.1 ├── stress-ng.c ├── stress-ng.h ├── stress-nice.c ├── stress-nop.c ├── stress-null.c ├── stress-numa.c ├── stress-oom-pipe.c ├── stress-opcode.c ├── stress-open.c ├── stress-personality.c ├── stress-physpage.c ├── stress-pipe.c ├── stress-poll.c ├── stress-procfs.c ├── stress-pthread.c ├── stress-ptrace.c ├── stress-pty.c ├── stress-qsort.c ├── stress-quota.c ├── stress-radixsort.c ├── stress-rawdev.c ├── stress-rdrand.c ├── stress-readahead.c ├── stress-remap-file-pages.c ├── stress-rename.c ├── stress-resources.c ├── stress-rlimit.c ├── stress-rmap.c ├── stress-rtc.c ├── stress-schedpolicy.c ├── stress-sctp.c ├── stress-seal.c ├── stress-seccomp.c ├── stress-seek.c ├── stress-sem-sysv.c ├── stress-sem.c ├── stress-sendfile.c ├── stress-sgx-vm.c ├── stress-sgx.c ├── stress-shm-sysv.c ├── stress-shm.c ├── stress-sigfd.c ├── stress-sigfpe.c ├── stress-sigpending.c ├── stress-sigq.c ├── stress-sigsegv.c ├── stress-sigsuspend.c ├── stress-sleep.c ├── stress-socket-diag.c ├── stress-socket-fd.c ├── stress-socket.c ├── stress-socketpair.c ├── stress-softlockup.c ├── stress-spawn.c ├── stress-splice.c ├── stress-stack.c ├── stress-stackmmap.c ├── stress-str.c ├── stress-stream.c ├── stress-swap.c ├── stress-switch.c ├── stress-sync-file.c ├── stress-sysfs.c ├── stress-sysinfo.c ├── stress-tee.c ├── stress-timer.c ├── stress-timerfd.c ├── stress-tlb-shootdown.c ├── stress-tmpfs.c ├── stress-tree.c ├── stress-tsc.c ├── stress-tsearch.c ├── stress-udp-flood.c ├── stress-udp.c ├── stress-unshare.c ├── stress-urandom.c ├── stress-userfaultfd.c ├── stress-utime.c ├── stress-vecmath.c ├── stress-version.h ├── stress-vforkmany.c ├── stress-vm-rw.c ├── stress-vm-splice.c ├── stress-vm.c ├── stress-wait.c ├── stress-wcstr.c ├── stress-xattr.c ├── stress-yield.c ├── stress-zero.c ├── stress-zlib.c ├── stress-zombie.c ├── syscalls.txt ├── test ├── test-affinity.c ├── test-aligned-128.c ├── test-aligned-64.c ├── test-aligned-64K.c ├── test-apparmor.c ├── test-asm-nop.c ├── test-bsd-wchar.c ├── test-cap.c ├── test-chroot.c ├── test-cpuid.c ├── test-dup3.c ├── test-eventfd.c ├── test-fanotify.c ├── test-fdatasync.c ├── test-fsync.c ├── test-futimes.c ├── test-getmntent.c ├── test-getmntinfo.c ├── test-getpgid.c ├── test-getpgrp.c ├── test-inotify.c ├── test-libaio.c ├── test-libbsd.c ├── test-libcrypt.c ├── test-libpthread-spinlock.c ├── test-libpthread.c ├── test-librt.c ├── test-libsctp.c ├── test-libz.c ├── test-lockf.c ├── test-madvise.c ├── test-mathfunc.c ├── test-mincore.c ├── test-mlock.c ├── test-mlockall.c ├── test-mprotect.c ├── test-mq-posix.c ├── test-mq-sysv.c ├── test-msync.c ├── test-posix-fadvise.c ├── test-posix-memalign.c ├── test-posix-openpt.c ├── test-sem-posix.c ├── test-sem-sysv.c ├── test-shm-sysv.c ├── test-sigaltstack.c ├── test-sigqueue.c ├── test-sigwaitinfo.c ├── test-sock-diag.c ├── test-strfunc.c ├── test-swapcontext.c ├── test-syncfs.c ├── test-uname.c ├── test-wchar.c └── test-wcsfunc.c ├── thermal-zone.c ├── thrash.c ├── time.c └── usr.bin.pulseaudio.eg /.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/.cproject -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .gitignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/.project -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/Makefile.config -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/README -------------------------------------------------------------------------------- /README.Android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/README.Android -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | List of TODO items: 2 | 3 | 1 rtnetlink 4 | -------------------------------------------------------------------------------- /affinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/affinity.c -------------------------------------------------------------------------------- /cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/cache.c -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/config -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/tests/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/debian/tests/control -------------------------------------------------------------------------------- /debian/tests/fast-test-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/debian/tests/fast-test-all -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/debian/watch -------------------------------------------------------------------------------- /example-jobs/cpu-cache.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/example-jobs/cpu-cache.job -------------------------------------------------------------------------------- /example-jobs/cpu.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/example-jobs/cpu.job -------------------------------------------------------------------------------- /example-jobs/device.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/example-jobs/device.job -------------------------------------------------------------------------------- /example-jobs/example.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/example-jobs/example.job -------------------------------------------------------------------------------- /example-jobs/filesystem.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/example-jobs/filesystem.job -------------------------------------------------------------------------------- /example-jobs/hot-cpu.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/example-jobs/hot-cpu.job -------------------------------------------------------------------------------- /example-jobs/interrupt.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/example-jobs/interrupt.job -------------------------------------------------------------------------------- /example-jobs/io.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/example-jobs/io.job -------------------------------------------------------------------------------- /example-jobs/matrix-methods.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/example-jobs/matrix-methods.job -------------------------------------------------------------------------------- /example-jobs/memory.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/example-jobs/memory.job -------------------------------------------------------------------------------- /example-jobs/network.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/example-jobs/network.job -------------------------------------------------------------------------------- /example-jobs/pipe.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/example-jobs/pipe.job -------------------------------------------------------------------------------- /example-jobs/scheduler.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/example-jobs/scheduler.job -------------------------------------------------------------------------------- /example-jobs/security.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/example-jobs/security.job -------------------------------------------------------------------------------- /example-jobs/vm.job: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/example-jobs/vm.job -------------------------------------------------------------------------------- /helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/helper.c -------------------------------------------------------------------------------- /ignite-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/ignite-cpu.c -------------------------------------------------------------------------------- /io-priority.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/io-priority.c -------------------------------------------------------------------------------- /job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/job.c -------------------------------------------------------------------------------- /limit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/limit.c -------------------------------------------------------------------------------- /log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/log.c -------------------------------------------------------------------------------- /madvise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/madvise.c -------------------------------------------------------------------------------- /mascot/stress-ng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/mascot/stress-ng.svg -------------------------------------------------------------------------------- /mincore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/mincore.c -------------------------------------------------------------------------------- /mlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/mlock.c -------------------------------------------------------------------------------- /mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/mmap.c -------------------------------------------------------------------------------- /mounts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/mounts.c -------------------------------------------------------------------------------- /mwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/mwc.c -------------------------------------------------------------------------------- /net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/net.c -------------------------------------------------------------------------------- /out-of-memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/out-of-memory.c -------------------------------------------------------------------------------- /parse-opts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/parse-opts.c -------------------------------------------------------------------------------- /perf-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/perf-event.c -------------------------------------------------------------------------------- /perf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/perf.c -------------------------------------------------------------------------------- /personality.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/personality.c -------------------------------------------------------------------------------- /sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sched.c -------------------------------------------------------------------------------- /setting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/setting.c -------------------------------------------------------------------------------- /sgx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/Makefile -------------------------------------------------------------------------------- /sgx/enclave_cpu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_cpu/Makefile -------------------------------------------------------------------------------- /sgx/enclave_cpu/sgx_t.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_cpu/sgx_t.mk -------------------------------------------------------------------------------- /sgx/enclave_cpu/sgx_u.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_cpu/sgx_u.mk -------------------------------------------------------------------------------- /sgx/enclave_cpu/trusted/companion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_cpu/trusted/companion.h -------------------------------------------------------------------------------- /sgx/enclave_cpu/trusted/enclave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_cpu/trusted/enclave.c -------------------------------------------------------------------------------- /sgx/enclave_cpu/trusted/enclave.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_cpu/trusted/enclave.config.xml -------------------------------------------------------------------------------- /sgx/enclave_cpu/trusted/enclave.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_cpu/trusted/enclave.edl -------------------------------------------------------------------------------- /sgx/enclave_cpu/trusted/enclave.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_cpu/trusted/enclave.lds -------------------------------------------------------------------------------- /sgx/enclave_cpu/trusted/enclave_private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_cpu/trusted/enclave_private.pem -------------------------------------------------------------------------------- /sgx/enclave_cpu/trusted/stress-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_cpu/trusted/stress-cpu.c -------------------------------------------------------------------------------- /sgx/enclave_vm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_vm/Makefile -------------------------------------------------------------------------------- /sgx/enclave_vm/sgx_t.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_vm/sgx_t.mk -------------------------------------------------------------------------------- /sgx/enclave_vm/sgx_u.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_vm/sgx_u.mk -------------------------------------------------------------------------------- /sgx/enclave_vm/trusted/companion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_vm/trusted/companion.c -------------------------------------------------------------------------------- /sgx/enclave_vm/trusted/companion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_vm/trusted/companion.h -------------------------------------------------------------------------------- /sgx/enclave_vm/trusted/mincore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_vm/trusted/mincore.c -------------------------------------------------------------------------------- /sgx/enclave_vm/trusted/stress-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_vm/trusted/stress-version.h -------------------------------------------------------------------------------- /sgx/enclave_vm/trusted/stress-vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_vm/trusted/stress-vm.c -------------------------------------------------------------------------------- /sgx/enclave_vm/trusted/stress-vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_vm/trusted/stress-vm.h -------------------------------------------------------------------------------- /sgx/enclave_vm/trusted/vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_vm/trusted/vm.c -------------------------------------------------------------------------------- /sgx/enclave_vm/trusted/vm.config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_vm/trusted/vm.config.xml -------------------------------------------------------------------------------- /sgx/enclave_vm/trusted/vm.edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_vm/trusted/vm.edl -------------------------------------------------------------------------------- /sgx/enclave_vm/trusted/vm.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_vm/trusted/vm.lds -------------------------------------------------------------------------------- /sgx/enclave_vm/trusted/vm_private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/enclave_vm/trusted/vm_private.pem -------------------------------------------------------------------------------- /sgx/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/utils.c -------------------------------------------------------------------------------- /sgx/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/sgx/utils.h -------------------------------------------------------------------------------- /shim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/shim.c -------------------------------------------------------------------------------- /smatchify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/smatchify.sh -------------------------------------------------------------------------------- /snapcraft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/snapcraft/Makefile -------------------------------------------------------------------------------- /snapcraft/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/snapcraft/snapcraft.yaml -------------------------------------------------------------------------------- /stress-af-alg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-af-alg.c -------------------------------------------------------------------------------- /stress-affinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-affinity.c -------------------------------------------------------------------------------- /stress-aio-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-aio-linux.c -------------------------------------------------------------------------------- /stress-aio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-aio.c -------------------------------------------------------------------------------- /stress-apparmor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-apparmor.c -------------------------------------------------------------------------------- /stress-atomic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-atomic.c -------------------------------------------------------------------------------- /stress-bigheap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-bigheap.c -------------------------------------------------------------------------------- /stress-bind-mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-bind-mount.c -------------------------------------------------------------------------------- /stress-branch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-branch.c -------------------------------------------------------------------------------- /stress-brk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-brk.c -------------------------------------------------------------------------------- /stress-bsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-bsearch.c -------------------------------------------------------------------------------- /stress-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-cache.c -------------------------------------------------------------------------------- /stress-cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-cap.c -------------------------------------------------------------------------------- /stress-chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-chdir.c -------------------------------------------------------------------------------- /stress-chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-chmod.c -------------------------------------------------------------------------------- /stress-chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-chown.c -------------------------------------------------------------------------------- /stress-chroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-chroot.c -------------------------------------------------------------------------------- /stress-clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-clock.c -------------------------------------------------------------------------------- /stress-clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-clone.c -------------------------------------------------------------------------------- /stress-context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-context.c -------------------------------------------------------------------------------- /stress-copy-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-copy-file.c -------------------------------------------------------------------------------- /stress-cpu-online.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-cpu-online.c -------------------------------------------------------------------------------- /stress-cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-cpu.c -------------------------------------------------------------------------------- /stress-crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-crypt.c -------------------------------------------------------------------------------- /stress-cyclic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-cyclic.c -------------------------------------------------------------------------------- /stress-daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-daemon.c -------------------------------------------------------------------------------- /stress-dccp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-dccp.c -------------------------------------------------------------------------------- /stress-dentry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-dentry.c -------------------------------------------------------------------------------- /stress-dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-dev.c -------------------------------------------------------------------------------- /stress-dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-dir.c -------------------------------------------------------------------------------- /stress-dirdeep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-dirdeep.c -------------------------------------------------------------------------------- /stress-dnotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-dnotify.c -------------------------------------------------------------------------------- /stress-dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-dup.c -------------------------------------------------------------------------------- /stress-epoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-epoll.c -------------------------------------------------------------------------------- /stress-eventfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-eventfd.c -------------------------------------------------------------------------------- /stress-exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-exec.c -------------------------------------------------------------------------------- /stress-fallocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-fallocate.c -------------------------------------------------------------------------------- /stress-fanotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-fanotify.c -------------------------------------------------------------------------------- /stress-fault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-fault.c -------------------------------------------------------------------------------- /stress-fcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-fcntl.c -------------------------------------------------------------------------------- /stress-fiemap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-fiemap.c -------------------------------------------------------------------------------- /stress-fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-fifo.c -------------------------------------------------------------------------------- /stress-filename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-filename.c -------------------------------------------------------------------------------- /stress-flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-flock.c -------------------------------------------------------------------------------- /stress-fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-fork.c -------------------------------------------------------------------------------- /stress-fp-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-fp-error.c -------------------------------------------------------------------------------- /stress-fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-fstat.c -------------------------------------------------------------------------------- /stress-full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-full.c -------------------------------------------------------------------------------- /stress-funccall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-funccall.c -------------------------------------------------------------------------------- /stress-futex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-futex.c -------------------------------------------------------------------------------- /stress-get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-get.c -------------------------------------------------------------------------------- /stress-getdent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-getdent.c -------------------------------------------------------------------------------- /stress-getrandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-getrandom.c -------------------------------------------------------------------------------- /stress-handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-handle.c -------------------------------------------------------------------------------- /stress-hdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-hdd.c -------------------------------------------------------------------------------- /stress-heapsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-heapsort.c -------------------------------------------------------------------------------- /stress-hrtimers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-hrtimers.c -------------------------------------------------------------------------------- /stress-hsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-hsearch.c -------------------------------------------------------------------------------- /stress-icache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-icache.c -------------------------------------------------------------------------------- /stress-icmp-flood.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-icmp-flood.c -------------------------------------------------------------------------------- /stress-inode-flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-inode-flags.c -------------------------------------------------------------------------------- /stress-inotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-inotify.c -------------------------------------------------------------------------------- /stress-iomix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-iomix.c -------------------------------------------------------------------------------- /stress-ioport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-ioport.c -------------------------------------------------------------------------------- /stress-ioprio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-ioprio.c -------------------------------------------------------------------------------- /stress-iosync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-iosync.c -------------------------------------------------------------------------------- /stress-itimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-itimer.c -------------------------------------------------------------------------------- /stress-kcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-kcmp.c -------------------------------------------------------------------------------- /stress-key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-key.c -------------------------------------------------------------------------------- /stress-kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-kill.c -------------------------------------------------------------------------------- /stress-klog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-klog.c -------------------------------------------------------------------------------- /stress-lease.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-lease.c -------------------------------------------------------------------------------- /stress-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-link.c -------------------------------------------------------------------------------- /stress-locka.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-locka.c -------------------------------------------------------------------------------- /stress-lockbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-lockbus.c -------------------------------------------------------------------------------- /stress-lockf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-lockf.c -------------------------------------------------------------------------------- /stress-lockofd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-lockofd.c -------------------------------------------------------------------------------- /stress-longjmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-longjmp.c -------------------------------------------------------------------------------- /stress-lsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-lsearch.c -------------------------------------------------------------------------------- /stress-madvise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-madvise.c -------------------------------------------------------------------------------- /stress-malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-malloc.c -------------------------------------------------------------------------------- /stress-matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-matrix.c -------------------------------------------------------------------------------- /stress-membarrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-membarrier.c -------------------------------------------------------------------------------- /stress-memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-memcpy.c -------------------------------------------------------------------------------- /stress-memfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-memfd.c -------------------------------------------------------------------------------- /stress-memrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-memrate.c -------------------------------------------------------------------------------- /stress-memthrash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-memthrash.c -------------------------------------------------------------------------------- /stress-mergesort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-mergesort.c -------------------------------------------------------------------------------- /stress-mincore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-mincore.c -------------------------------------------------------------------------------- /stress-mknod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-mknod.c -------------------------------------------------------------------------------- /stress-mlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-mlock.c -------------------------------------------------------------------------------- /stress-mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-mmap.c -------------------------------------------------------------------------------- /stress-mmapaddr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-mmapaddr.c -------------------------------------------------------------------------------- /stress-mmapfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-mmapfork.c -------------------------------------------------------------------------------- /stress-mmapmany.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-mmapmany.c -------------------------------------------------------------------------------- /stress-mq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-mq.c -------------------------------------------------------------------------------- /stress-mremap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-mremap.c -------------------------------------------------------------------------------- /stress-msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-msg.c -------------------------------------------------------------------------------- /stress-msync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-msync.c -------------------------------------------------------------------------------- /stress-netdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-netdev.c -------------------------------------------------------------------------------- /stress-netlink-proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-netlink-proc.c -------------------------------------------------------------------------------- /stress-ng.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-ng.1 -------------------------------------------------------------------------------- /stress-ng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-ng.c -------------------------------------------------------------------------------- /stress-ng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-ng.h -------------------------------------------------------------------------------- /stress-nice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-nice.c -------------------------------------------------------------------------------- /stress-nop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-nop.c -------------------------------------------------------------------------------- /stress-null.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-null.c -------------------------------------------------------------------------------- /stress-numa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-numa.c -------------------------------------------------------------------------------- /stress-oom-pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-oom-pipe.c -------------------------------------------------------------------------------- /stress-opcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-opcode.c -------------------------------------------------------------------------------- /stress-open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-open.c -------------------------------------------------------------------------------- /stress-personality.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-personality.c -------------------------------------------------------------------------------- /stress-physpage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-physpage.c -------------------------------------------------------------------------------- /stress-pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-pipe.c -------------------------------------------------------------------------------- /stress-poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-poll.c -------------------------------------------------------------------------------- /stress-procfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-procfs.c -------------------------------------------------------------------------------- /stress-pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-pthread.c -------------------------------------------------------------------------------- /stress-ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-ptrace.c -------------------------------------------------------------------------------- /stress-pty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-pty.c -------------------------------------------------------------------------------- /stress-qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-qsort.c -------------------------------------------------------------------------------- /stress-quota.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-quota.c -------------------------------------------------------------------------------- /stress-radixsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-radixsort.c -------------------------------------------------------------------------------- /stress-rawdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-rawdev.c -------------------------------------------------------------------------------- /stress-rdrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-rdrand.c -------------------------------------------------------------------------------- /stress-readahead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-readahead.c -------------------------------------------------------------------------------- /stress-remap-file-pages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-remap-file-pages.c -------------------------------------------------------------------------------- /stress-rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-rename.c -------------------------------------------------------------------------------- /stress-resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-resources.c -------------------------------------------------------------------------------- /stress-rlimit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-rlimit.c -------------------------------------------------------------------------------- /stress-rmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-rmap.c -------------------------------------------------------------------------------- /stress-rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-rtc.c -------------------------------------------------------------------------------- /stress-schedpolicy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-schedpolicy.c -------------------------------------------------------------------------------- /stress-sctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sctp.c -------------------------------------------------------------------------------- /stress-seal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-seal.c -------------------------------------------------------------------------------- /stress-seccomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-seccomp.c -------------------------------------------------------------------------------- /stress-seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-seek.c -------------------------------------------------------------------------------- /stress-sem-sysv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sem-sysv.c -------------------------------------------------------------------------------- /stress-sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sem.c -------------------------------------------------------------------------------- /stress-sendfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sendfile.c -------------------------------------------------------------------------------- /stress-sgx-vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sgx-vm.c -------------------------------------------------------------------------------- /stress-sgx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sgx.c -------------------------------------------------------------------------------- /stress-shm-sysv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-shm-sysv.c -------------------------------------------------------------------------------- /stress-shm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-shm.c -------------------------------------------------------------------------------- /stress-sigfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sigfd.c -------------------------------------------------------------------------------- /stress-sigfpe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sigfpe.c -------------------------------------------------------------------------------- /stress-sigpending.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sigpending.c -------------------------------------------------------------------------------- /stress-sigq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sigq.c -------------------------------------------------------------------------------- /stress-sigsegv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sigsegv.c -------------------------------------------------------------------------------- /stress-sigsuspend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sigsuspend.c -------------------------------------------------------------------------------- /stress-sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sleep.c -------------------------------------------------------------------------------- /stress-socket-diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-socket-diag.c -------------------------------------------------------------------------------- /stress-socket-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-socket-fd.c -------------------------------------------------------------------------------- /stress-socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-socket.c -------------------------------------------------------------------------------- /stress-socketpair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-socketpair.c -------------------------------------------------------------------------------- /stress-softlockup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-softlockup.c -------------------------------------------------------------------------------- /stress-spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-spawn.c -------------------------------------------------------------------------------- /stress-splice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-splice.c -------------------------------------------------------------------------------- /stress-stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-stack.c -------------------------------------------------------------------------------- /stress-stackmmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-stackmmap.c -------------------------------------------------------------------------------- /stress-str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-str.c -------------------------------------------------------------------------------- /stress-stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-stream.c -------------------------------------------------------------------------------- /stress-swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-swap.c -------------------------------------------------------------------------------- /stress-switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-switch.c -------------------------------------------------------------------------------- /stress-sync-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sync-file.c -------------------------------------------------------------------------------- /stress-sysfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sysfs.c -------------------------------------------------------------------------------- /stress-sysinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-sysinfo.c -------------------------------------------------------------------------------- /stress-tee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-tee.c -------------------------------------------------------------------------------- /stress-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-timer.c -------------------------------------------------------------------------------- /stress-timerfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-timerfd.c -------------------------------------------------------------------------------- /stress-tlb-shootdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-tlb-shootdown.c -------------------------------------------------------------------------------- /stress-tmpfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-tmpfs.c -------------------------------------------------------------------------------- /stress-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-tree.c -------------------------------------------------------------------------------- /stress-tsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-tsc.c -------------------------------------------------------------------------------- /stress-tsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-tsearch.c -------------------------------------------------------------------------------- /stress-udp-flood.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-udp-flood.c -------------------------------------------------------------------------------- /stress-udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-udp.c -------------------------------------------------------------------------------- /stress-unshare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-unshare.c -------------------------------------------------------------------------------- /stress-urandom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-urandom.c -------------------------------------------------------------------------------- /stress-userfaultfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-userfaultfd.c -------------------------------------------------------------------------------- /stress-utime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-utime.c -------------------------------------------------------------------------------- /stress-vecmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-vecmath.c -------------------------------------------------------------------------------- /stress-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-version.h -------------------------------------------------------------------------------- /stress-vforkmany.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-vforkmany.c -------------------------------------------------------------------------------- /stress-vm-rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-vm-rw.c -------------------------------------------------------------------------------- /stress-vm-splice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-vm-splice.c -------------------------------------------------------------------------------- /stress-vm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-vm.c -------------------------------------------------------------------------------- /stress-wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-wait.c -------------------------------------------------------------------------------- /stress-wcstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-wcstr.c -------------------------------------------------------------------------------- /stress-xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-xattr.c -------------------------------------------------------------------------------- /stress-yield.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-yield.c -------------------------------------------------------------------------------- /stress-zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-zero.c -------------------------------------------------------------------------------- /stress-zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-zlib.c -------------------------------------------------------------------------------- /stress-zombie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/stress-zombie.c -------------------------------------------------------------------------------- /syscalls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/syscalls.txt -------------------------------------------------------------------------------- /test/test-affinity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-affinity.c -------------------------------------------------------------------------------- /test/test-aligned-128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-aligned-128.c -------------------------------------------------------------------------------- /test/test-aligned-64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-aligned-64.c -------------------------------------------------------------------------------- /test/test-aligned-64K.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-aligned-64K.c -------------------------------------------------------------------------------- /test/test-apparmor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-apparmor.c -------------------------------------------------------------------------------- /test/test-asm-nop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-asm-nop.c -------------------------------------------------------------------------------- /test/test-bsd-wchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-bsd-wchar.c -------------------------------------------------------------------------------- /test/test-cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-cap.c -------------------------------------------------------------------------------- /test/test-chroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-chroot.c -------------------------------------------------------------------------------- /test/test-cpuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-cpuid.c -------------------------------------------------------------------------------- /test/test-dup3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-dup3.c -------------------------------------------------------------------------------- /test/test-eventfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-eventfd.c -------------------------------------------------------------------------------- /test/test-fanotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-fanotify.c -------------------------------------------------------------------------------- /test/test-fdatasync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-fdatasync.c -------------------------------------------------------------------------------- /test/test-fsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-fsync.c -------------------------------------------------------------------------------- /test/test-futimes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-futimes.c -------------------------------------------------------------------------------- /test/test-getmntent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-getmntent.c -------------------------------------------------------------------------------- /test/test-getmntinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-getmntinfo.c -------------------------------------------------------------------------------- /test/test-getpgid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-getpgid.c -------------------------------------------------------------------------------- /test/test-getpgrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-getpgrp.c -------------------------------------------------------------------------------- /test/test-inotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-inotify.c -------------------------------------------------------------------------------- /test/test-libaio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-libaio.c -------------------------------------------------------------------------------- /test/test-libbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-libbsd.c -------------------------------------------------------------------------------- /test/test-libcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-libcrypt.c -------------------------------------------------------------------------------- /test/test-libpthread-spinlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-libpthread-spinlock.c -------------------------------------------------------------------------------- /test/test-libpthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-libpthread.c -------------------------------------------------------------------------------- /test/test-librt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-librt.c -------------------------------------------------------------------------------- /test/test-libsctp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-libsctp.c -------------------------------------------------------------------------------- /test/test-libz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-libz.c -------------------------------------------------------------------------------- /test/test-lockf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-lockf.c -------------------------------------------------------------------------------- /test/test-madvise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-madvise.c -------------------------------------------------------------------------------- /test/test-mathfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-mathfunc.c -------------------------------------------------------------------------------- /test/test-mincore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-mincore.c -------------------------------------------------------------------------------- /test/test-mlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-mlock.c -------------------------------------------------------------------------------- /test/test-mlockall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-mlockall.c -------------------------------------------------------------------------------- /test/test-mprotect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-mprotect.c -------------------------------------------------------------------------------- /test/test-mq-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-mq-posix.c -------------------------------------------------------------------------------- /test/test-mq-sysv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-mq-sysv.c -------------------------------------------------------------------------------- /test/test-msync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-msync.c -------------------------------------------------------------------------------- /test/test-posix-fadvise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-posix-fadvise.c -------------------------------------------------------------------------------- /test/test-posix-memalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-posix-memalign.c -------------------------------------------------------------------------------- /test/test-posix-openpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-posix-openpt.c -------------------------------------------------------------------------------- /test/test-sem-posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-sem-posix.c -------------------------------------------------------------------------------- /test/test-sem-sysv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-sem-sysv.c -------------------------------------------------------------------------------- /test/test-shm-sysv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-shm-sysv.c -------------------------------------------------------------------------------- /test/test-sigaltstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-sigaltstack.c -------------------------------------------------------------------------------- /test/test-sigqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-sigqueue.c -------------------------------------------------------------------------------- /test/test-sigwaitinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-sigwaitinfo.c -------------------------------------------------------------------------------- /test/test-sock-diag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-sock-diag.c -------------------------------------------------------------------------------- /test/test-strfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-strfunc.c -------------------------------------------------------------------------------- /test/test-swapcontext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-swapcontext.c -------------------------------------------------------------------------------- /test/test-syncfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-syncfs.c -------------------------------------------------------------------------------- /test/test-uname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-uname.c -------------------------------------------------------------------------------- /test/test-wchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-wchar.c -------------------------------------------------------------------------------- /test/test-wcsfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/test/test-wcsfunc.c -------------------------------------------------------------------------------- /thermal-zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/thermal-zone.c -------------------------------------------------------------------------------- /thrash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/thrash.c -------------------------------------------------------------------------------- /time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/time.c -------------------------------------------------------------------------------- /usr.bin.pulseaudio.eg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebva/stress-sgx/HEAD/usr.bin.pulseaudio.eg --------------------------------------------------------------------------------