_llseek - reposiciona el puntero de lectura/escritura
Biblioteca Estándar C (
libc,
-lc)
#include <sys/syscall.h> /* Definición de las constantes SYS_* */
#include <unistd.h>
int syscall(SYS__llseek, unsigned int fd, unsigned long offset_high,
unsigned long offset_low, loff_t *resultado,
unsigned int whence);
Note: glibc provides no wrapper for
_llseek(), necessitating the
use of
syscall(2).
Note: for information about the
llseek(3) library function, see
lseek64(3).
The
_llseek() system call repositions the offset of the open file
description associated with the file descriptor
fd to the value
- (offset_high << 32) | offset_low
This new offset is a byte offset relative to the beginning of the file, the
current file offset, or the end of the file, depending on whether
whence is
SEEK_SET,
SEEK_CUR, or
SEEK_END,
respectively.
The new file offset is returned in the argument
result. The type
loff_t is a 64-bit signed type.
Esta llamada de sistema está presente en diversas plataformas de 32 bits
para dar soporte a la búsqueda de grandes desplazamientos de archivo.
Si no se produce ningun error,
_llseek() devuelve 0. Si se produce, se
devuelve el valor -1 y se asigna a
errno un valor que indica el tipo de
error que se ha producido.
- EBADF
-
fd no es un descriptor de fichero abierto.
- EFAULT
- Problema al copiar el resultado al espacio de usuario.
- EINVAL
-
whence no es válido.
Esta función es específica de Linux, y no debería usarse
por programas que deban de ser portables.
You probably want to use the
lseek(2) wrapper function instead.
lseek(2),
open(2),
lseek64(3)
La traducción al español de esta página del manual fue
creada por Juan Piernas <
[email protected]> y Marcos Fouces
<
[email protected]>
Esta traducción es documentación libre; lea la
GNU
General Public License Version 3 o posterior con respecto a las
condiciones de copyright. No existe NINGUNA RESPONSABILIDAD.
Si encuentra algún error en la traducción de esta página
del manual, envíe un correo electrónico a
[email protected]