diff options
| author | root <root> | 2008-06-17 23:58:48 +0000 | 
|---|---|---|
| committer | root <root> | 2008-06-17 23:58:48 +0000 | 
| commit | a0a1d0aefed211583ad2c48c82b018b5342b2f7a (patch) | |
| tree | 3e777c166d23023e9374e7c7139be64492c37e61 | |
| parent | dbf9dab5e5da3c65a64bc6aede34f7a7a16a8834 (diff) | |
fix comments
| -rw-r--r-- | eio.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -85,7 +85,7 @@ struct eio_req    eio_req volatile *next; /* private ETP */    ssize_t result;  /* result of syscall, e.g. result = read (... */ -  off_t offs;      /* read, write, truncate, readahead: file offset; mknod: dev_t */ +  off_t offs;      /* read, write, truncate, readahead: file offset */    size_t size;     /* read, write, readahead, sendfile: length */    void *ptr1;      /* all applicable requests: pathname, old name */    void *ptr2;      /* all applicable requests: new name or memory buffer */ @@ -95,7 +95,7 @@ struct eio_req    int type;        /* EIO_xxx constant ETP */    int int1;        /* all applicable requests: file descriptor; sendfile: output fd; open: flags */    long int2;       /* chown, fchown: uid; sendfile: input fd; open, chmod, mkdir, mknod: file mode */ -  long int3;       /* chown, fchown: gid */ +  long int3;       /* chown, fchown: gid; mknod: dev_t */    int errorno;     /* errno value on syscall return */    unsigned char flags; /* private */ | 
