summaryrefslogtreecommitdiff
path: root/sys/dev/microcode/isp
diff options
context:
space:
mode:
authorwiz <wiz@NetBSD.org>2019-12-07 12:45:28 +0000
committerwiz <wiz@NetBSD.org>2019-12-07 12:45:28 +0000
commit9a3e4a31be016153a2cd1bf9f77886bff47514fb (patch)
tree9a4a8a31eb0a7ef60872b475fa055e1d3727bdcd /sys/dev/microcode/isp
parentcaa70812282a0603735f3b0e1e87614142290d89 (diff)
Really add -isoC-2018 (not just the docs).
Diffstat (limited to 'sys/dev/microcode/isp')
0 files changed, 0 insertions, 0 deletions
AN) and protocol (PF_CAN), as well as the canconfig(8) utility, used to set timing parameter of CAN hardware. Also inclued is a driver for the CAN controller found in the allwinner A20 SoC (I tested it with an Olimex lime2 board, connected with PIC18-based CAN devices). There is also the canloop(4) pseudo-device, which allows to use the socketcan API without CAN hardware. At this time the CANFD part of the linux socketcan API is not implemented. Error frames are not implemented either. But I could get the cansend and canreceive utilities from the canutils package to build and run with minimal changes. tcpudmp(8) can also be used to record frames, which can be decoded with etherreal. 2013-03-01Retire OSI network stack. OK core@joerg 2013-02-05Remove remnants of AF_IMPLINK.joerg 2012-01-25Bump date for previous.wiz 2012-01-25As discussed in tech-kern, provide the means to prevent delivery of SIGPIPEchristos on EPIPE for all file descriptor types: - provide O_NOSIGPIPE for open,kqueue1,pipe2,dup3,fcntl(F_{G,S}ETFL) [NetBSD] - provide SOCK_NOSIGPIPE for socket,socketpair [NetBSD] - provide SO_NOSIGPIPE for {g,s}seckopt [NetBSD/FreeBSD/MacOSX] - provide F_{G,S}ETNOSIGPIPE for fcntl [MacOSX] 2011-06-26* Arrange for interfaces that create new file descriptors to be able tochristos set close-on-exec on creation (http://udrepper.livejournal.com/20407.html). - Add F_DUPFD_CLOEXEC to fcntl(2). - Add MSG_CMSG_CLOEXEC to recvmsg(2) for unix file descriptor passing. - Add dup3(2) syscall with a flags argument for O_CLOEXEC, O_NONBLOCK. - Add pipe2(2) syscall with a flags argument for O_CLOEXEC, O_NONBLOCK. - Add flags SOCK_CLOEXEC, SOCK_NONBLOCK to the socket type parameter for socket(2) and socketpair(2). - Add new paccept(2) syscall that takes an additional sigset_t to alter the sigmask temporarily and a flags argument to set SOCK_CLOEXEC, SOCK_NONBLOCK. - Add new mode character 'e' to fopen(3) and popen(3) to open pipes and file descriptors for close on exec. - Add new kqueue1(2) syscall with a new flags argument to open the kqueue file descriptor with O_CLOEXEC, O_NONBLOCK. * Fix the system calls that take socklen_t arguments to actually do so. * Don't include userland header files (signal.h) from system header files (rump_syscallargs.h). * Bump libc version for the new syscalls. 2007-09-06PR/36933 - Robert Elz -- ARPA IPv6 -> IPv6jnemeth 2007-03-02Bump date for previous.wiz 2007-02-20Add PF_BLUETOOTH to list of supported protocol familiesplunky 2006-06-13Add EAFNOSUPPORT as a possible error if the address family is notginsbach supported. This adds further differentiation between which argument to socket(2) caused the error. No longer are invalid domain (address family) errors classified as ENOPROTOSUPPORT errors. This should make socket(2) conform to current POSIX and X/Open standards. Fixes PR/33676. 2006-06-13Sort ERRORS. Bump date.ginsbach 2004-11-03Add missing colon symbol after sentence.jmmv 2004-05-13\- is a minus, not -.wiz 2004-03-31Pipes aren't "full-duplex byte streams", so don't compare SOCK_STREAMpooka type sockets to them. 2003-08-07Move UCB-licensed code from 4-clause to 3-clause licence.agc Patches provided by Joel Baker in PR 22280, verified by myself.