Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

explain_lseek_or_die(3) [debian man page]

explain_lseek_or_die(3) 				     Library Functions Manual					   explain_lseek_or_die(3)

NAME
explain_lseek_or_die - reposition file offset and report errors SYNOPSIS
#include <libexplain/lseek.h> long long explain_lseek_or_die(int fildes, long long offset, int whence); DESCRIPTION
The explain_lseek_or_die function is used to call the lseek(2) system call. On failure an explanation will be printed to stderr, obtained from explain_lseek(3), and then the process terminates by calling exit(EXIT_FAILURE). This function is intended to be used in a fashion similar to the following example: long long result = explain_lseek_or_die(fildes, offset, whence); fildes The fildes, exactly as to be passed to the lseek(2) system call. offset The offset, exactly as to be passed to the lseek(2) system call. whence The whence, exactly as to be passed to the lseek(2) system call. Returns: On successful, returns the resulting offset location as measured in bytes from the beginning of the file. On failure, prints an explanation and exits. SEE ALSO
lseek(2) reposition file offset explain_lseek(3) explain lseek(2) errors exit(2) terminate the calling process COPYRIGHT
libexplain version 0.52 Copyright (C) 2008 Peter Miller explain_lseek_or_die(3)

Check Out this Related Man Page

explain_pread_or_die(3) 				     Library Functions Manual					   explain_pread_or_die(3)

NAME
explain_pread_or_die - seek and read from a file descriptor and report errors SYNOPSIS
#include <libexplain/pread.h> ssize_t explain_pread_or_die(int fildes, void *data, size_t data_size, off_t offset); ssize_t explain_pread_on_error(int fildes, void *data, size_t data_size, off_t offset)) DESCRIPTION
The explain_pread_or_die function is used to call the pread(2) system call. On failure an explanation will be printed to stderr, obtained from the explain_pread(3) function, and then the process terminates by calling exit(EXIT_FAILURE). The explain_pread_on_error function is used to call the pread(2) system call. On failure an explanation will be printed to stderr, obtained from the explain_pread(3) function, but still returns to the caller. fildes The fildes, exactly as to be passed to the pread(2) system call. data The data, exactly as to be passed to the pread(2) system call. data_size The data_size, exactly as to be passed to the pread(2) system call. offset The offset, exactly as to be passed to the pread(2) system call. RETURN VALUE
The explain_pread_or_die function only returns on success, see pread(2) for more information. On failure, prints an explanation and exits, it does not return. The explain_pread_on_error function always returns the value return by the wrapped pread(2) system call. EXAMPLE
The explain_pread_or_die function is intended to be used in a fashion similar to the following example: ssize_t result = explain_pread_or_die(fildes, data, data_size, offset); SEE ALSO
pread(2) read from a file descriptor at a given offset explain_pread(3) explain pread(2) errors exit(2) terminate the calling process COPYRIGHT
libexplain version 0.52 Copyright (C) 2009 Peter Miller explain_pread_or_die(3)
Man Page

6 More Discussions You Might Find Interesting

1. Programming

lseek in c

sir, i used lssek as this lseek(fp,-10,2); i am not getting any output i dont now why can you explan sir.. Thanks in advance, Arunkumar (4 Replies)
Discussion started by: arunkumar_mca
4 Replies

2. UNIX for Dummies Questions & Answers

what is penpx?

I have one question for something that would take too long to explain. What does penpx mean in unix code? (0 Replies)
Discussion started by: luigi_code
0 Replies

3. Programming

Hairy Problem! lseek over 4G

recently my project needs me to lseek a position over 4G size.... i found in linux or unix the parameters are all ulong 32 bits...the limit dooms the movement of a position over 4G I was told that i should lseek64 to meet my need... but i have no idea where i can get the function neither by "man... (8 Replies)
Discussion started by: macroideal
8 Replies

4. UNIX for Dummies Questions & Answers

lseek() equivalent

I know there is lseek() function that will allow to write or read from certain position in the file. Is there similar function that will let do same but for array rather then file? (9 Replies)
Discussion started by: joker40
9 Replies

5. UNIX for Dummies Questions & Answers

Understanding lseek

I tried to use lseek system call to determine the number of bytes in a file. To do so, I used open system call with O_APPEND flag to open a file. As lseek returns the current offset so I called lseek for opened file with offset as zero and whence as SEEK_CUR. So I guess it must return the number of... (3 Replies)
Discussion started by: Deepak Raj
3 Replies

6. Programming

Problem with lseek call.

The following code: int fd; if (fd = open("mem", O_RDONLY) == -1) return 1; if (lseek(fd, 0, SEEK_SET) == -1) { char *buf = malloc(512); buf = strerror(errno); printf("%s\n", buf); return 1; } always returns with "illegal seek"... (2 Replies)
Discussion started by: Sir_Tomasz
2 Replies