Page MenuHomeFreeBSD

Mark the pipe(2) system call as COMPAT10.
ClosedPublic

Authored by brooks on Jun 11 2016, 8:57 PM.
Tags
None
Referenced Files
Unknown Object (File)
Feb 23 2024, 12:21 PM
Unknown Object (File)
Feb 14 2024, 11:10 AM
Unknown Object (File)
Dec 20 2023, 1:44 AM
Unknown Object (File)
Nov 12 2023, 3:16 AM
Unknown Object (File)
Sep 23 2023, 9:44 AM
Unknown Object (File)
Sep 16 2023, 7:44 PM
Unknown Object (File)
Aug 26 2023, 7:01 AM
Unknown Object (File)
Aug 10 2023, 7:22 AM

Details

Summary

Libc now implements pipe() as a call to pipe2() which is identical when
called with a flags value of 0.

This depends on https://reviews.freebsd.org/D6815

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 4191
Build 4234: arc lint + arc unit

Event Timeline

brooks retitled this revision from to Mark the pipe(2) system call as COMPAT10..
brooks updated this object.
brooks edited the test plan for this revision. (Show Details)
brooks added reviewers: peter, andrew.

In principle I think this is OK. As an aside, pipe2(2) should also be able to return EFAULT, but that isn't mentioned in the man page.

This revision was automatically updated to reflect the committed changes.
juan.molina_club.fr added inline comments.
head/sys/kern/syscalls.master
31 ↗(On Diff #17777)

There is a small typo here, isn’t it? s/COMPAT7/COMPAT10