ibwait

Name

ibwait -- wait for event (board or device)

Synopsis

#include <gpib/ib.h>

int ibwait(int ud, int status_mask);

Description

ibwait() will sleep until one of the conditions specified in status_mask is true. The meaning of the bits in status_mask are the same as the bits of the ibsta status variable.

If status_mask is zero, then ibwait() will return immediately. This is useful if you simply wish to get an updated ibsta.

When calling ibwait() on a device, only the following condition bits in the status_mask are valid: TIMO, END, CMPL, and RQS. For the RQS bit to be set in the returned ibsta automatic serial polling must be enabled for the board controlling the device, see ibconfig(). The RQS condition is cleared by serial polling the device, see ibrsp().

Return value

The value of ibsta is returned.