pread(2) System Calls Manual pread(2) NOMBRE pread, pwrite - leen o escriben en una determinada posicion de un descriptor de archivo BIBLIOTECA Biblioteca Estandar C (libc, -lc) SINOPSIS #include ssize_t pread(int fd, void buf[.count], size_t count, off_t offset); ssize_t pwrite(int fd, const void buf[.count], size_t count, off_t offset); Requisitos de Macros de Prueba de Caracteristicas para glibc (vease feature_test_macros(7)): pread(), pwrite(): _XOPEN_SOURCE >= 500 || /* Desde glibc 2.12: */ _POSIX_C_SOURCE >= 200809L DESCRIPCION pread() lee hasta count bytes del descriptor de fichero fd a partir de la posicion offset (desde el principio del fichero) en el area temporal que empieza en buf. La posicion del puntero de L/E del fichero no cambia. pwrite() escribe hasta count bytes desde el buffer que empieza en buf al descriptor de fichero fd a partir de la posicion offset. La posicion del puntero del fichero no cambia. Debe ser posible realizar busquedas sobre el fichero referenciado por fd. VALOR DEVUELTO On success, pread() returns the number of bytes read (a return of zero indicates end of file) and pwrite() returns the number of bytes written. Note that it is not an error for a successful call to transfer fewer bytes than requested (see read(2) and write(2)). En caso de error se devuelve -1, y errno se define con el valor correspondiente. ERRORES pread() puede fallar y asignar a errno cualquier error especificado por read(2) o lseek(2). pwrite() puede fallar y asignar a errno cualquier error especificado por write(2) o lseek(2). ESTANDARES POSIX.1-2008. HISTORIAL POSIX.1-2001. Added in Linux 2.1.60; the entries in the i386 system call table were added in Linux 2.1.69. C library support (including emulation using lseek(2) on older kernels without the system calls) was added in glibc 2.1. Diferencias nucleo / biblioteca C On Linux, the underlying system calls were renamed in Linux 2.6: pread() became pread64(), and pwrite() became pwrite64(). The system call numbers remained the same. The glibc pread() and pwrite() wrapper functions transparently deal with the change. On some 32-bit architectures, the calling signature for these system calls differ, for the reasons described in syscall(2). NOTAS The pread() and pwrite() system calls are especially useful in multithreaded applications. They allow multiple threads to perform I/O on the same file descriptor without being affected by changes to the file offset by other threads. ERRORES POSIX requires that opening a file with the O_APPEND flag should have no effect on the location at which pwrite() writes data. However, on Linux, if a file is opened with O_APPEND, pwrite() appends data to the end of the file, regardless of the value of offset. VEASE TAMBIEN lseek(2), read(2), readv(2), write(2) TRADUCCION La traduccion al espanol de esta pagina del manual fue creada por Juan Piernas y Marcos Fouces Esta traduccion es documentacion libre; lea la GNU General Public License Version 3 o posterior con respecto a las condiciones de copyright. No existe NINGUNA RESPONSABILIDAD. Si encuentra algun error en la traduccion de esta pagina del manual, envie un correo electronico a . Paginas de manual de Linux 6.06 31 Octubre 2023 pread(2)