aboutsummaryrefslogtreecommitdiffstats
path: root/sys/init.go
Commit message (Collapse)AuthorAgeFilesLines
* sys: move linux descriptions to sys/linuxDmitry Vyukov2017-09-151-272/+0
|
* prog: allow more than 1 targetDmitry Vyukov2017-09-151-0/+1
|
* sys: use correct pointer sizeDmitry Vyukov2017-09-051-2/+0
|
* prog, sys: move dictionary of special strings to sysDmitry Vyukov2017-09-051-0/+7
| | | | It is target-specific.
* sys: improve timespec/timeval generationDmitry Vyukov2017-09-051-3/+12
|
* prog, sys: move types to progDmitry Vyukov2017-09-051-0/+257
Large overhaul moves syscalls and arg types from sys to prog. Sys package now depends on prog and contains only generated descriptions of syscalls. Introduce prog.Target type that encapsulates all targer properties, like syscall list, ptr/page size, etc. Also moves OS-dependent pieces like mmap call generation from prog to sys. Update #191