[libc-commits] [libc] [libc] [unistd] implement pipe2 syscall wrapper (PR #114474)

Nick Desaulniers via libc-commits libc-commits at lists.llvm.org
Thu Oct 31 16:06:20 PDT 2024


================
@@ -287,6 +287,23 @@ def Linux : StandardSpec<"Linux"> {
       ]
   >;
 
+
+  HeaderSpec UniStd = HeaderSpec<
+    "unistd.h",
+    [], // Macros
+    [],
+    [], // Enumerations
+    [
+        FunctionSpec<
+          "pipe",
----------------
nickdesaulniers wrote:

ah, good catch, yeah this should be `pipe2`. Sorry I missed it!

https://github.com/llvm/llvm-project/pull/114474


More information about the libc-commits mailing list