Bash-Linux.com : Le SHELL pour les nuls

  Actuellement 50 lignes de commande et 1472 man disponibles
login as: root
root@213.186.33.18's password:
Last login: Wed May 30 4:33:43 2012 from 38.107.179.230
[root@bash-linux ~] # echo "Bienvenue sur Bash-Linux.com"_
 Manuel des commandes UNIX (man) Version anglaise

Indiquez la fonction :

Man Posix_fadvise en anglais

POSIX_FADVISE(2) Linux Programmer's Manual POSIX_FADVISE(2)
 
NAME


posix_fadvise - predeclare an access pattern for file data
 
SYNOPSIS


#define _XOPEN_SOURCE 600 #include int posix_fadvise(int fd, off_t offset, off_t len, int advice);
 
DESCRIPTION


Programs can use posix_fadvise() to announce an intention to access file data in a specific pattern in the future, thus allowing the kernel to perform appropriate optimizations. The advice applies to a (not necessarily existent) region starting at offset and extending for len bytes (or until the end of the file if len is 0) within the file referred to by fd. The advice is not binding; it merely constitutes an expectation on behalf of the application. Permissible values for advice include: POSIX_FADV_NORMAL Indicates that the application has no advice to give about its access pattern for the specified data. If no advice is given for an open file, this is the default assumption. POSIX_FADV_SEQUENTIAL The application expects to access the specified data sequen- tially (with lower offsets read before higher ones). POSIX_FADV_RANDOM The specified data will be accessed in random order. POSIX_FADV_NOREUSE The specified data will be accessed only once. POSIX_FADV_WILLNEED The specified data will be accessed in the near future. POSIX_FADV_DONTNEED The specified data will not be accessed in the near future.
 
RETURN VALUE


On success, zero is returned. On error, an error number is returned.
 
ERRORS


EBADF The fd argument was not a valid file descriptor. EINVAL An invalid value was specified for advice. ESPIPE The specified file descriptor refers to a pipe or FIFO. (Linux actually returns EINVAL in this case.)
 
VERSIONS


posix_fadvise() appeared in kernel 2.5.60. Glibc support has been pro- vided since version 2.2.
 
CONFORMING TO


POSIX.1-2001. Note that the type of the len argument was changed from size_t to off_t in POSIX.1-2003 TC1.
 
NOTES


Under Linux, POSIX_FADV_NORMAL sets the readahead window to the default size for the backing device; POSIX_FADV_SEQUENTIAL doubles this size, and POSIX_FADV_RANDOM disables file readahead entirely. These changes affect the entire file, not just the specified region (but other open file handles to the same file are unaffected). POSIX_FADV_WILLNEED initiates a non-blocking read of the specified region into the page cache. The amount of data read may be decreased by the kernel depending on virtual memory load. (A few megabytes will usually be fully satisfied, and more is rarely useful.) In kernels before 2.6.18, POSIX_FADV_NOREUSE had the same semantics as POSIX_FADV_WILLNEED. This was probably a bug; since kernel 2.6.18, this flag is a no-op. POSIX_FADV_DONTNEED attempts to free cached pages associated with the specified region. This is useful, for example, while streaming large files. A program may periodically request the kernel to free cached data that has already been used, so that more useful cached pages are not discarded instead. Pages that have not yet been written out will be unaffected, so if the application wishes to guarantee that pages will be released, it should call fsync(2) or fdatasync(2) first.
 
BUGS


In kernels before 2.6.6, if len was specified as 0, then this was interpreted literally as "zero bytes", rather than as meaning "all bytes through to the end of the file".
 
SEE ALSO


readahead(2), posix_fallocate(3), posix_madvise(3), fea- ture_test_macros(7)
 
COLOPHON


This page is part of release 3.05 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 2003-02-14 POSIX_FADVISE(2)


 Dernières recherches
Man  en anglais Man posix_fadvise en anglaisMan  en français Man posix_fadvise en français
Man  en anglais Man port en anglaisMan  en français Man port en français
Man  en anglais Man timer_gettime en anglaisMan  en français Man timer_gettime en français
Man  en anglais Man popen en anglaisMan  en français Man popen en français
Man  en anglais Man pkill en anglaisMan  en français Man pkill en français
Man  en anglais Man pivot_root en anglaisMan  en français Man pivot_root en français
Man  en anglais Man ping en anglaisMan  en français Man ping en français
Man  en anglais Man strcmp en anglaisMan  en français Man strcmp en français
Man  en anglais Man pidof en anglaisMan  en français Man pidof en français
Man  en anglais Man pg en anglaisMan  en français Man pg en français
Man  en anglais Man pfifo_fast en anglaisMan  en français Man pfifo_fast en français
Man  en anglais Man pfifo en anglaisMan  en français Man pfifo en français
Man  en anglais Man personality en anglaisMan  en français Man personality en français
Man  en anglais Man perl en anglaisMan  en français Man perl en français
Man  en anglais Man pcrepattern en anglaisMan  en français Man pcrepattern en français

 Recherche

Dans ce moteur de recherche, vous pouvez taper directement votre besoin, en une phrase normale, humaine.
Exemple : vous cherchez comment remplacer un mot par un autre dans tous les fichiers d'un certain dossier. Vous pouvez écrire "Comment remplacer un mot par un autre dans tous les fichiers d'un dossier". Le moteur vous ramenera les résultats en fonction de leur pertinence.
Vous pouvez bien sûr ne chercher qu'un seul mot-clé, par exemple "find".
 Toutes les lignes de code
Par popularité
Par fonction
Recherche avancée
 Les logiciels SHELL/SSH
Putty
Astuces Bash
Faire du SHELL avec PHP!
 La doc officielle
Les man Linux en français
Les man Linux en anglais
 Proposer vos bash
Partagez vos lignes!
 Les requêtes
Déposer une requête
Voir/répondre à une requête
 Quelques sites interessants
Bons sites pour apprendre
 Rechercher