fcntl            1007 src/dps8/fnpuv.c             int flags = fcntl (linep->tun_fd, F_GETFL, 0);
fcntl            1014 src/dps8/fnpuv.c             int ret = fcntl (linep->tun_fd, F_SETFL, flags);
fcntl             117 src/dps8/shm.c       brc = fcntl(lck_fd, F_SETLK, &bflock);
fcntl             135 src/dps8/shm.c           if (fcntl(lck_fd, F_GETLK, &bflock) == 0 && bflock.l_pid > 0)
fcntl             246 src/dps8/shm.c       rc = fcntl(fd, F_SETLK, &lock);
fcntl             253 src/dps8/shm.c       if (fcntl(fd, F_GETLK, &lock) == FALSE && lock.l_pid > 0)
fcntl             335 src/dps8/shm.c       brc = fcntl(lck_fd, F_SETLK, &bflock);
fcntl             370 src/dps8/shm.c       rc = fcntl(fd, F_SETLK, &lock);
fcntl             395 src/dps8/shm.c           (void)fcntl(fd, F_SETLK, &lock);
fcntl             407 src/dps8/shm.c           (void)fcntl(lck_fd, F_SETLK, &bflock);
fcntl             260 src/dps8/udplib.c     rc = fcntl (sock, F_SETFL, fcntl (sock, F_GETFL, 0) | O_NONBLOCK);
fcntl              70 src/libsir/src/sirhelpers.c     int ret = fcntl(fd, F_GETFL);
fcntl            2126 src/simh/sim_console.c cmdfl = fcntl (0, F_GETFL, 0);                           /* get old flags  and status */
fcntl            2154 src/simh/sim_console.c (void)fcntl (0, F_SETFL, runfl);                         /* non-block mode */
fcntl            2168 src/simh/sim_console.c (void)fcntl (0, F_SETFL, cmdfl);                         /* block mode */
fcntl             274 src/simh/sim_fio.c     rc = fcntl (fileno(fsc), F_SETLK, &lock);
fcntl             279 src/simh/sim_fio.c       if (fcntl(fileno(fsc), F_GETLK, &lock) == 0 && lock.l_pid > 0)
fcntl             450 src/simh/sim_fio.c     int flags = fcntl(fileno(fptr), F_GETFL, 0);
fcntl             451 src/simh/sim_fio.c     return fcntl(fileno(fptr), F_SETFL, flags | O_NONBLOCK);
fcntl             729 src/simh/sim_sock.c fl = fcntl (sock, F_GETFL,0);                           /* get flags */
fcntl             732 src/simh/sim_sock.c sta = fcntl (sock, F_SETFL, fl | O_NONBLOCK);           /* set nonblock */
fcntl             737 src/simh/sim_sock.c sta = fcntl (sock, F_SETOWN, getpid());                 /* set ownership */