| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | "Kevin Grittner" <Kevin(dot)Grittner(at)wicourts(dot)gov> |
| Cc: | "Simon Riggs" <simon(at)2ndQuadrant(dot)com>, pgsql-hackers(at)postgresql(dot)org |
| Subject: | Re: Re: [COMMITTERS] pgsql: Fix blatantly uninitialized variable in recent commit. |
| Date: | 2011-02-17 17:23:14 |
| Message-ID: | 10432.1297963394@sss.pgh.pa.us |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers pgsql-hackers |
"Kevin Grittner" <Kevin(dot)Grittner(at)wicourts(dot)gov> writes:
> I know that in Java you can get a positive number less than the full
> size as an indication that part of the block was written, and you
> must loop to write until you get all of it written (or get an error
> return). At this page, it appears that the same is true of the
> write function in C:
This is appropriate when writing to sockets etc, where the kernel is
willing to reflect details like packet boundaries back to userspace.
I have never seen nor heard of it being true for writes to disk files,
except for the case of out-of-disk-space, in which it is quite unlikely
that looping is a good thing to do.
regards, tom lane
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Andrew Dunstan | 2011-02-17 17:28:51 | Re: Re: [COMMITTERS] pgsql: Fix blatantly uninitialized variable in recent commit. |
| Previous Message | Tom Lane | 2011-02-17 17:19:48 | Re: Re: [COMMITTERS] pgsql: Fix blatantly uninitialized variable in recent commit. |
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Stephen Frost | 2011-02-17 17:24:53 | Re: Debian readline/libedit breakage |
| Previous Message | Tom Lane | 2011-02-17 17:19:48 | Re: Re: [COMMITTERS] pgsql: Fix blatantly uninitialized variable in recent commit. |