aboutsummaryrefslogtreecommitdiffstats
path: root/sys/netbsd/sys_amd64.const
Commit message (Collapse)AuthorAgeFilesLines
* sys/netbsd: adding device driver's ioctl descriptions for NetBSD (#2080)Ayushi Sharma2021-03-241-274/+0
| | | | | | | | | | | | | | | | | | | | | | | | | * sys/netbsd: adding descriptions for device drivers & minor updation of syscall flags sys/netbsd: reordering rlimit_type sys/netbsd: reordering flags for stat(2) and mount(2) sys/netbsd: adding i2c and wscons device drivers sys/netbsd: adding desciptions for device drivers ioctls sys/netbsd: minor update in dev_wscons.txt sys/netbsd: updating descriptions of device driver files sys/netbsd: adding copyright statement to dev files sys/netbsd: minor changes in device driver files sys/netbsd: ioctl descriptions for /dev/tprof sys/netbsd: adding flags for tprof device driver * sys/netbsd: updating .const files
* sys/netbsd: Adding syscalls related to mount(2),uname(2) and sockets (#1976)Ayushi Sharma2020-07-301-0/+7
| | | | | | | | | * sys/netbsd: Adding syscalls related to mount(2),uname(2) and sockets * sys/netbsd: Adding missing flags for fstatat(2) * sys/netbsd: reordering rlimit_type * sys/netbsd: reordering flags for stat(2) and mount(2)
* Adding stat(2) and statfs(2) related syscalls (#1855)Ayushi Sharma2020-06-261-1/+5
| | | | | | | | | | | | | | | * sys/netbsd: adding filesystem and communication syscalls * sys/netbsd: add fix for struct sockaddr_storage and profil(2) * sys/netbsd: add common ioctl(2) commands * sys/netbsd: resolving conflicts * sys/netbsd: adding stat() and statfs() related syscalls * sys/netbsd: adding missing flags for getfsstat(2) Co-authored-by: Siddharth M <siddharth.muralee@gmail.com>
* sys/netbsd: add common ioctl() commands (#1850)Ayushi Sharma2020-06-211-0/+12
| | | | | | | | | | | * sys/netbsd: adding filesystem and communication syscalls * sys/netbsd: add fix for struct sockaddr_storage and profil(2) * sys/netbsd: add common ioctl(2) commands * sys/netbsd: resolving conflicts Co-authored-by: Siddharth M <siddharth.muralee@gmail.com>
* sys/netbsd: increase syscall support (#1805)Ayushi Sharma2020-06-211-10/+34
| | | | | | | | | * sys/netbsd: increase syscall support * sys/netbsd: increase syscall support fixed * sys/netbsd: fixed mknod issue * sys/netbsd: add fix for getdents, futimes and setpriority
* sys/netbsd: adding filesystem and communication syscalls (#1826)Ayushi Sharma2020-06-171-3/+18
|
* sys/netbsd: increase syscall supportAyushi Sharma2020-05-151-0/+2
|
* sys/netbsd: add access(2)Ayushi Sharma2020-05-111-0/+5
|
* sys/netbsd: add __getcwd(2) (#1725)Ayushi Sharma2020-05-111-0/+1
|
* sys/netbsd: add lchmod(2) (#1687)Ayushi Sharma2020-04-211-0/+1
|
* sys/netbsd: add minherit(2)ais2397@gmail.com2020-04-161-0/+5
|
* sys/netbsd: adding chflags(2) syscalls (#1661)Ayushi Sharma2020-04-041-0/+10
|
* sys/netbsd: fix the build issues with posix_spawnSiddharth Muralee2019-12-051-0/+3
|
* sys/netbsd: add the newer vfork syscallR3x2019-12-051-0/+1
|
* sys/netbsd: Added posix_spawn and fork syscallsR3x2019-12-051-0/+12
|
* sys/netbsd: Adding more syscallsSiddharth M2019-07-011-0/+9
| | | | | | | | | | | | | | * sys/netbsd: Adding more syscalls * Added lwp create structures * Added a few lwp flags * completed _lwp* syscalls * add clone syscall * fix errors, recheck arguments
* sys/netbsd: Add new syscalls exit and ptraceR3x2019-06-261-0/+2
|
* sys: check that target consts are definedDmitry Vyukov2018-10-191-25/+0
| | | | | | | | | | | | | | Currently when we get target consts with target.ConstMap["name"] during target initialization, we just get 0 for missing consts. This is error-prone as we can mis-type a const, or a const may be undefined only on some archs (as we have common unix code shared between several OSes). Check that all the consts are actually defined. The check detects several violations, to fix them: 1. move mremap to linux as it's only defined on linux 2. move S_IFMT to openbsd, as it's only defined and used on openbsd 3. define missing MAP_ANONYMOUS for freebsd and netbsd 4. fix extract for netbsd
* Added a few more syscall descriptions, constsUtkarsh Anand2017-10-301-0/+186
and other related files.