fis-gtm/sr_unix/iott_read.c

27 lines
742 B
C

/****************************************************************
* *
* Copyright 2001, 2006 Fidelity Information Services, Inc *
* *
* This source code contains the intellectual property *
* of its copyright holder(s), and is made available *
* under a license. If you do not know the terms of *
* the license, please stop and do not read further. *
* *
****************************************************************/
#include "mdef.h"
#include "io.h"
#include "iottdef.h"
GBLREF io_pair io_curr_device;
int iott_read (mval *v, int4 timeout) /* timeout in seconds */
{
d_tt_struct *tt_ptr;
tt_ptr = (d_tt_struct*) (io_curr_device.in->dev_sp);
return iott_readfl(v, tt_ptr->in_buf_sz, timeout);
}