| 12
 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
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 
 | .\" -*- nroff -*-
.\"
.\" Copyright (C) 1996 Andries Brouwer (aeb@cwi.nl)
.\" Copyright (C) 1996 Markus Kuhn.
.\"
.\" [This version merged from two independently written pages - aeb]
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one
.\" 
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein.  The author(s) may not
.\" have taken the same level of care in the production of this manual,
.\" which is licensed free of charge, as they might when working
.\" professionally.
.\" 
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.\" 1996-04-12  Andries Brouwer <aeb@cwi.nl>
.\" 1996-04-13  Markus Kuhn <mskuhn@cip.informatik.uni-erlangen.de>
.\"
.TH FDATASYNC 2 "13/04/1996" "Linux 1.3.86" "Manual do Programador Linux"
.SH NOME
fdatasync \- sincroniza os dados de um arquivo com aquele no disco
.SH SINOPSE
.B #include <unistd.h>
.sp
.B #ifdef _POSIX_SYNCHRONIZED_IO
.sp
.BI "int fdatasync(int " fd );
.sp
.B #endif
.SH DESCRIO
.B fdatasync
esvazia todos do buffers de dados de um arquivo para o disco (antes do
retorno da chamada de sistema). Ele lembra
.B fsync
mas no  requerido para atualizar os metadados como por exemplo o tempo de acesso.
Aplicaes que acessam base da dados or arquivos de log frequentemtne escrevem pequeno
fragmento de dados (por exemplo, uma linha em um arquivo de log) e ento chama
.B fsync
imediatamente para assegurar que os dados escritos so fisicamente
armazenados no disco rgido. Desafortunadamente,
.B fsync
ir sempre iniciar duas operaes de escrita: uma para a recente escrita
de dados e outra para atualizar o tempo de modificao armazenado
no inode. Se o tempo de modificao no  uma parte da transao o
conceito de
.B fdatasync
pode ser usado para evitar inodes desnecessrios em operaes de escrita no disco.
.SH "VALORES RETORNADOS"
Em caso de sucesso, zero  retornado. Caso contrrio, \-1  retornado, e
.I errno
 selecionado adequadamente.
.SH ERROS
.TP
.B EBADF
.I fd
no  um descritor de arquivos aberto para escrita.
.TP
.BR EROFS ", " EINVAL
.I fd
 confinado para um arquivo especial o qual no suporta sincronizao.
.TP
.B EIO
Um erro ocorreu durante a sincronizao.
.SH PROBLEMAS
Atualmente (Linux 2.0.23)
.B fdatasync
 equivalente a
.BR fsync .
.SH "DE ACORDO COM"
POSIX1b (anteriormente POSIX.4)
.SH "VEJA TAMBM"
.BR fsync (2),
B.O. Gallmeister, POSIX.4, O'Reilly, pp. 220-223 and 343.
.SH TRADUZIDO POR LDP-BR em 21/08/2000.
\&\fR\&\f(CWAndr L. Fassone Canova <lonelywolf@blv.com.br> (traduo)\fR
\&\fR\&\f(CWxxxxxxxxxxxxxxxxxxxxxxxxx <xxx@xxxxxx.xxx.xx> (reviso)\fR
 |