aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/csource/fuchsia_common.go
Commit message (Collapse)AuthorAgeFilesLines
* executor: overhaulDmitry Vyukov2018-07-241-643/+0
| | | | | | | | | | | | | | | | | Make as much code as possible shared between all OSes. In particular main is now common across all OSes. Make more code shared between executor and csource (in particular, loop function and threaded execution logic). Also make loop and threaded logic shared across all OSes. Make more posix/unix code shared across OSes (e.g. signal handling, pthread creation, etc). Plus other changes along similar lines. Also support test OS in executor (based on portable posix) and add 4 arches that cover all execution modes (fork server/no fork server, shmem/no shmem). This change paves way for testing of executor code and allows to preserve consistency across OSes and executor/csource.
* executor: executor fix fuchsia buildDmitry Vyukov2018-07-071-0/+1
|
* executor: remove unnecessary parensDmitry Vyukov2018-07-051-1/+1
|
* executor: include more headers on fuchsiaDmitry Vyukov2018-06-301-0/+2
| | | | | Since we are taking address of functions in syscall table, we need all headers even if we don't use them directly.
* pkg/csource: don't use pthread_cond_timedwait for fuchsiaDmitry Vyukov2018-06-301-25/+8
| | | | We removed it in executor, do the same in csource.
* executor, pkg/ipc: support output over pipesDmitry Vyukov2018-06-291-1/+1
|
* pkg/csource: support fuchsiaDmitry Vyukov2018-06-291-0/+657
Lots of assorted heavylifting to support csource on fuchsia.