Privacy and Security Notice

Archived Messages for CDEV@cebaf.gov: Re: Asynchronouse send?

Re: Asynchronouse send?

Chip WATSON (Chip.WATSON@cern.ch)
Mon, 09 Mar 1998 11:11:51 +0100

>It means that I must specify a number for "fd" in sys.pend(fd).
>In the CDEV manual is written that "fd" does not have to be specified.

Not quite. You can either omit all arguments, and it will pend a
default number of seconds, or you may specify a single floating
point number and it will pend that number of seconds. I
recommend that you do NOT use the form which specifies
the fd.

Use:
sys.pend();
or:
sys.pend(1.0);

Chip