| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | executor: introduce uint64/32/16/8 types | Dmitry Vyukov | 2017-12-27 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | The "define uint64_t unsigned long long" were too good to work. With a different toolchain I am getting: cstdint:69:11: error: expected unqualified-id using ::uint64_t; ^ executor/common.h:34:18: note: expanded from macro 'uint64_t' Do it the proper way: introduce uint64/32/16/8 types and use them. pkg/csource then does s/uint64/uint64_t/ to not clutter code with additional typedefs. | ||||
| * | executor: fix build breakages due to doexit | Dmitry Vyukov | 2017-10-19 | 1 | -0/+5 |
| | | | | | | Some standard libraries contain "using ::exit;", which breaks with the current redefinition of exit. | ||||
| * | sys/fuchsia: more descriptions | Dmitry Vyukov | 2017-10-16 | 1 | -0/+43 |
| | | |||||
| * | executor: fix fuchsia syz_mmap | Dmitry Vyukov | 2017-10-16 | 1 | -7/+9 |
| | | |||||
| * | executor: repair fuchsia nonfailing mode | Dmitry Vyukov | 2017-10-16 | 1 | -23/+66 |
| | | |||||
| * | executor, pkg/ipc: unify ipc protocol between linux and other OSes | Dmitry Vyukov | 2017-10-16 | 1 | -1/+0 |
| | | | | | | | | | | | | | | | | | | We currently use more complex and functional protocol on linux, and a simple ad-hoc protocol on other OSes. This leads to code duplication in both ipc and executor. Linux supports coverage, shared memory communication and fork server, which would also be useful for most other OSes. Unify communication protocol and parametrize it by (1) use of shmem or only pipes, (2) use of fork server. This reduces duplication in ipc and executor and will allow to support the useful features for other OSes easily. Finally, this fixes akaros support as it currently uses syz-stress running on host (linux) and executor running on akaros. | ||||
| * | executor: automatically infer base of root vmar | Dmitry Vyukov | 2017-09-27 | 1 | -6/+10 |
| | | |||||
| * | executor, sys/windows: initial windows support | Dmitry Vyukov | 2017-09-25 | 1 | -0/+66 |
| | | |||||
| * | sys/fuchsia: describe more syscalls | Dmitry Vyukov | 2017-09-25 | 1 | -0/+28 |
| | | |||||
| * | all: more assorted fuchsia support | Dmitry Vyukov | 2017-09-22 | 1 | -0/+51 |
