summaryrefslogtreecommitdiffstats
path: root/usr/klibc/lseek.c
blob: f262d1938c84f3f796da04783cd415f45aea8743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * lseek.c
 *
 * On 32-bit platforms, we need to use the _llseek() system call
 * rather than lseek(), to be able to handle large disks.  _llseek()
 * isn't just a normal syscall which takes a 64-bit argument; it needs
 * to return a 64-bit value and so takes an extra pointer.
 */

#include <unistd.h>
#include <sys/syscall.h>
#include <bitsize.h>

#if _BITSIZE == 32

extern int __llseek(int fd, unsigned long hi, unsigned long lo, off_t * res,
		    int whence);

off_t lseek(int fd, off_t offset, int whence)
{
	unsigned long long ullo = offset;
	off_t result;
	int rv;

	rv = __llseek(fd, (unsigned long)(ullo >> 32), (unsigned long)ullo,
		      &result, whence);

	return rv ? (off_t)-1 : result;
}

#endif