Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion libc/docs/headers/time.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Implementation Status
+---------------------+---------+---------+---------+-----------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
| clock_nanosleep | | | | | | | | | | | | | |
+---------------------+---------+---------+---------+-----------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
| clock_settime | |check| | |check| | | |check| | | | | | | | | | |
| clock_settime | |check| | |check| | | |check| | | | | | | | | | |check| |
+---------------------+---------+---------+---------+-----------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
| ctime | |check| | |check| | | |check| | | | | | | | | | |
+---------------------+---------+---------+---------+-----------------+---------+---------+---------+---------+---------+---------+---------+---------+---------+
Expand Down
2 changes: 1 addition & 1 deletion libc/src/time/gpu/clock.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===-- GPU implementation of the clock function --------------------------===//
//===---------- GPU implementation of the clock function ------------------===//
//
// 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/src/time/gpu/clock_gettime.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===---------- GPU implementation of the POSIX clock_gettime function ----===//
//===---------- GPU implementation of the clock_gettime function ----------===//
//
// 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
7 changes: 7 additions & 0 deletions libc/src/time/gpu/clock_settime.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
//===---------- GPU implementation of the clock_settime function ----------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
2 changes: 1 addition & 1 deletion libc/src/time/gpu/nanosleep.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===-- GPU implementation of the nanosleep function ----------------------===//
//===---------- GPU implementation of the nanosleep function --------------===//
//
// 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/src/time/gpu/timespec_get.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===-- Implementation of timespec_get for gpu ----------------------------===//
//===---------- GPU implementation of the timespec_get function -----------===//
//
// 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
Loading