uipc_syscalls.c | 1274 int error, soflags = 0; local in function:pipe1 1281 soflags |= SOCK_CLOEXEC; 1283 soflags |= SOCK_CLOFORK; 1285 soflags |= SOCK_NONBLOCK; 1287 soflags |= SOCK_NOSIGPIPE; 1289 error = fsocreate(AF_LOCAL, &rso, SOCK_STREAM|soflags, 0, &rfd, &rf, 1293 error = fsocreate(AF_LOCAL, &wso, SOCK_STREAM|soflags, 0, &wfd, &wf,
|