aboutsummaryrefslogtreecommitdiffstats
path: root/executor/common_fuchsia.h
Commit message (Collapse)AuthorAgeFilesLines
* executor: introduce uint64/32/16/8 typesDmitry Vyukov2017-12-271-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 doexitDmitry Vyukov2017-10-191-0/+5
| | | | | Some standard libraries contain "using ::exit;", which breaks with the current redefinition of exit.
* sys/fuchsia: more descriptionsDmitry Vyukov2017-10-161-0/+43
|
* executor: fix fuchsia syz_mmapDmitry Vyukov2017-10-161-7/+9
|
* executor: repair fuchsia nonfailing modeDmitry Vyukov2017-10-161-23/+66
|
* executor, pkg/ipc: unify ipc protocol between linux and other OSesDmitry Vyukov2017-10-161-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 vmarDmitry Vyukov2017-09-271-6/+10
|
* executor, sys/windows: initial windows supportDmitry Vyukov2017-09-251-0/+66
|
* sys/fuchsia: describe more syscallsDmitry Vyukov2017-09-251-0/+28
|
* all: more assorted fuchsia supportDmitry Vyukov2017-09-221-0/+51