Last change
on this file since 703d4d0 was 8973acd, checked in by Thomas Lopatic <thomas@…>, 7 years ago |
No more warnings in libcio.
|
-
Property mode
set to
100644
|
File size:
976 bytes
|
Line | |
---|
1 | /*
|
---|
2 | =============================================================================
|
---|
3 | posit.c -- position a file to a specific relative sector
|
---|
4 | Version 4 -- 1987-06-29 -- D.N. Lynx Crowe
|
---|
5 | =============================================================================
|
---|
6 | */
|
---|
7 |
|
---|
8 | #include "ram.h"
|
---|
9 |
|
---|
10 | /*
|
---|
11 | =============================================================================
|
---|
12 | posit(fd, pos) -- position file 'fd' at sector 'pos'.
|
---|
13 | =============================================================================
|
---|
14 | */
|
---|
15 |
|
---|
16 | int16_t posit(int16_t fd, int16_t pos)
|
---|
17 | {
|
---|
18 | register struct fcb *fp;
|
---|
19 |
|
---|
20 | if ((fd < 0) OR (fd > MAXCHAN)) {
|
---|
21 |
|
---|
22 | errno = EBADF;
|
---|
23 | return(FAILURE);
|
---|
24 | }
|
---|
25 |
|
---|
26 | fp = chantab[fd].c_arg;
|
---|
27 |
|
---|
28 | if ((chantab[fd].c_seek EQ 0)
|
---|
29 | OR (((int32_t)pos << FILESHFT) > fp->curlen)) {
|
---|
30 |
|
---|
31 | errno = EINVAL;
|
---|
32 | fp->modefl |= FC_ERR;
|
---|
33 | return(FAILURE);
|
---|
34 | }
|
---|
35 |
|
---|
36 | fp->curlsn = pos;
|
---|
37 | fp->offset = 0;
|
---|
38 |
|
---|
39 | if (_seek(fp) < 0) {
|
---|
40 |
|
---|
41 | errno = EIO;
|
---|
42 | fp->modefl |= FC_ERR;
|
---|
43 | return(FAILURE);
|
---|
44 | }
|
---|
45 |
|
---|
46 | return(SUCCESS);
|
---|
47 | }
|
---|
48 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.