Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions libc/include/llvm-libc-macros/linux/watch-queue-macros.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//===-- Definition of macros from watch-queue.h
//---------------------------------===//
//===-- Definition of macros from watch-queue.h ---------------------------------===//
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

git clang-format does not like this. Please ignore for now as this file may not even be required.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That header is way too long, shorten it to 80 characters and it will stop doing this.

//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down
2 changes: 1 addition & 1 deletion libc/spec/linux.td
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def Linux : StandardSpec<"Linux"> {
FunctionSpec<
"pipe2",
RetValSpec<IntType>,
[ArgSpec<IntPtr>, ArgSpec<IntType>]
[ArgSpec<IntPtr>, ArgSpec<IntType>] // TODO: use int[2] array for the first ArgSpec when possible
>,
]
>;
Expand Down
3 changes: 1 addition & 2 deletions libc/src/unistd/linux/pipe2.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//===-- Linux implementation of pipe2
//---------------------------------------===//
//===-- Linux implementation of pipe2 -------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down
3 changes: 1 addition & 2 deletions libc/src/unistd/pipe2.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//===-- Implementation header for pipe2 ---------------------------*- C++
//-*-===//
//===-- Implementation header for pipe2 -------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down
3 changes: 1 addition & 2 deletions libc/test/src/unistd/pipe2_test.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//===-- Unittests for pipe2
//-------------------------------------------------===//
//===-- Unittests for pipe2 -----------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand Down