~hilaire-fernandes/drgeo/trunk

« back to all changes in this revision

Viewing changes to VMs/iPad/source/unix/plugins/AsynchFilePlugin/sqUnixAsynchFile.h

  • Committer: Hilaire Fernandes
  • Date: 2012-01-27 21:15:40 UTC
  • Revision ID: hilaire.fernandes@gmail.com-20120127211540-912spf97bhpx6mve
Initial additions

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* private file data */
 
2
 
 
3
typedef struct
 
4
{
 
5
  int  fd;                      /* descriptor */
 
6
  int  sema;                    /* completion semaphore */
 
7
  struct {
 
8
    int   pos;                  /* file position */
 
9
    int   status;               /* number of bytes transferred, or: */
 
10
#   define      Busy    -1      /* operation in progress */
 
11
#   define      Error   -2      /* operation aborted */
 
12
  }    rd, wr;                  /* one each for read and write */
 
13
  struct FileBuf {
 
14
    char *bytes;                /* write buffer */
 
15
    int   capacity;             /* capacity */
 
16
    int   size;                 /* contents size */
 
17
    int   pos;                  /* position */
 
18
  }    buf;
 
19
} FileRec, *FilePtr;
 
20
 
 
21
 
 
22
extern int sqUnixAsyncFileSessionID;
 
23
 
 
24
extern FilePtr asyncFileAttach(AsyncFile *f, int fd, int semaIndex);