aboutsummaryrefslogtreecommitdiffstats
path: root/executor/gen.go
Commit message (Collapse)AuthorAgeFilesLines
* executor: prepare code generator to allow other achitecturesAlexey Kardashevskiy2021-07-191-9/+0
| | | | | | | At the moment only AMD64 is supported, change file names to emphasise this. Signed-off-by: Alexey Kardashevskiy <aik@linux.ibm.com>
* pkg: update generated files to go 1.17Alexey Kardashevskiy2021-07-071-0/+1
| | | | | | | | | | | "make generate" produces this diff when go 1.17 (go1.17-c95464f0ea3f==upstream) is used. Seems compatible with >=1.16. https://github.com/golang/go/commit/4d2d89ff42ca documents the syntax. https://github.com/golang/go/commit/eeadce2d8713 enforces "ignore" for unsatisfiable tags hence the pkg/csource/gen.go change. Signed-off-by: Alexey Kardashevskiy <aik@linux.ibm.com>
* executor: initial darwin supportPatrick Meyer2021-05-201-1/+1
|
* executor: enable KVM generator only on AMD64 archAlexander Egorenkov2020-06-171-1/+1
| | | | | | Executor KVM generator works only on amd64 linux machines. Signed-off-by: Alexander Egorenkov <Alexander.Egorenkov@ibm.com>
* executor: don't build gen.go on FreeBSDMichael Tuexen2020-05-131-1/+1
|
* executor: don't build gen.go on OpenBSD or NetBSDMichael Tuexen2020-05-131-1/+1
| | | | Use (NOT openbsd) AND (NOT netbsd) instead of (NOT openbsd) OR (NOT netbsd).
* executor: disable gen.go for NetBSDKamil Rytarowski2019-01-101-1/+1
| | | kvm is Linux specific.
* Add mandatory OpenBSD bits (#689)Anton Lindqvist2018-08-281-0/+2
| | | | | | | | | | | | | | | | | | all: add openbsd support squash of the following commits: * openbsd: add mandatory bits * report: add OpenBSD support * executor: skip building kvm on OpenBSD * executor: add OpenBSD support Linking against libutil is necessary due to usage of openpty(3). * executor: fix typo in fail() message * fixup! report: add OpenBSD support * fixup! openbsd: add mandatory bits * fixup! openbsd: add mandatory bits * fixup! openbsd: add mandatory bits * fixup! report: add OpenBSD support * gometalinter: skip sys/openbsd
* executor: overhaulDmitry Vyukov2018-07-241-0/+6
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.