Searched refs:FASYNC (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10.1/ntp-92/include/
H A Dntp_io.h43 * Define FNDELAY and FASYNC using O_NONBLOCK and O_ASYNC if we need
53 #ifndef FASYNC
55 # define FASYNC O_ASYNC macro
/macosx-10.10.1/lsof-53/lsof/dialects/darwin/libproc/
H A Ddstore.c58 { (long)FASYNC, FF_ASYNC },
/macosx-10.10.1/lsof-53/lsof/dialects/darwin/kmem/
H A Ddstore.c78 { (long)FASYNC, FF_ASYNC },
/macosx-10.10.1/ntp-92/libntp/
H A Diosignal.c177 if (fcntl(rio->fd, F_SETFL, FNDELAY|FASYNC) < 0)
179 msyslog(LOG_ERR, "fcntl(FNDELAY|FASYNC) fails for clock I/O: %m");
211 if (fcntl(rio->fd, F_SETFL, FNDELAY|FASYNC) < 0)
214 "fcntl(FNDELAY|FASYNC) fails for clock I/O: %m");
253 # elif defined(FASYNC)
263 if (fcntl(fd, F_SETFL, flags|FASYNC) < 0)
265 msyslog(LOG_ERR, "fcntl(...|FASYNC) fails: %m");
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dfcntl.h205 #define FMASK (FREAD|FWRITE|FAPPEND|FASYNC|FFSYNC|FFDSYNC|FNONBLOCK)
207 #define FCNTLFLAGS (FAPPEND|FASYNC|FFSYNC|FFDSYNC|FNONBLOCK)
217 #define FASYNC O_ASYNC /* kernel/compat */ macro
/macosx-10.10.1/emacs-93/emacs/src/
H A Dsysdep.c1003 #ifdef FASYNC
1004 old_fcntl_flags = fcntl (fd, F_GETFL, 0) & ~FASYNC;
1005 fcntl (fd, F_SETFL, old_fcntl_flags | FASYNC);
1016 #ifdef FASYNC /* F_SETFL does not imply existence of FASYNC */
1027 fcntl (input_fd, F_SETFL, old_fcntl_flags | FASYNC);
1045 #else /* no FASYNC */
1046 #ifdef STRIDE /* Stride doesn't have FASYNC - use FIOASYNC */
1072 #else /* not FASYNC, not STRIDE */
1130 #endif /* FASYNC */
[all...]
/macosx-10.10.1/xnu-2782.1.97/bsd/kern/
H A Dsys_generic.c871 fp->f_flag |= FASYNC;
873 fp->f_flag &= ~FASYNC;
H A Duipc_syscalls.c547 if (fp->f_flag & FASYNC) {
H A Dkern_descrip.c861 tmp = fp->f_flag & FASYNC;

Completed in 105 milliseconds