in reply to Re^2: Why does fpathconf give "bad file descriptor"?
in thread Why does fpathconf give "bad file descriptor"?

it's really not possible for a pipe to have a buffer size of 0

fpathconf says it returns "the maximum number of bytes which will be written atomically to a pipe."

I took that to mean it returns the available buffer size. The documentation isn't clear, but I'm favouring your interpretation.

My local man page simply says "returns the size of the pipe buffer", confirming your interpretation.

  • Comment on Re^3: Why does fpathconf give "bad file descriptor"?

Replies are listed 'Best First'.
Re^4: Why does fpathconf give "bad file descriptor"?
by madscientist (Novice) on Apr 01, 2010 at 04:25 UTC

    The POSIX spec says:

    The fpathconf() and pathconf() functions shall determine the current value of a configurable limit or option (variable) that is associated with a file or directory.

    I'm quite confident this is intended to be the maximum available for that type of object, not the remaining space left for that particular instance of the object.