Query: eopnotsupp
OS: netbsd
Section: 9
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
NULLOP(9) BSD Kernel Developer's Manual NULLOP(9)NAMEnullop -- dummy functionsSYNOPSIS#include <sys/systm.h> int nullop(void *v); void voidop(void); int enodev(void); int enxio(void); int enoioctl(void); int enosys(void); int eopnotsupp(void);DESCRIPTIONThe nullop() function provides a generic ``null operation''. It always returns the value 0. The voidop() function takes no arguments and does nothing. The enodev(), enxio(), enoioctl(), enosys(), and eopnotsupp() functions always fail, returning ENODEV, ENXIO, ENOTTY, ENOSYS, and EOPNOTSUPP, respectively.EXAMPLESThe following example demonstrates a case where nullop() may be useful: uint64_t xc; ... xc = xc_broadcast(0, (xcfunc_t)nullop, NULL, NULL); xc_wait(xc);BSDJuly 25, 2010 BSD
Related Man Pages |
---|
subyte(9) - debian |
suword(9) - debian |
suword16(9) - debian |
ucas(9) - netbsd |
xcall(9) - netbsd |
Similar Topics in the Unix Linux Community |
---|
Core dump failures |
/var/cron/log Return Codes |
EACCES "Permission denied" while open(2) |
"Symbol referencing errors" On Socket programming |