aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Mayer <fmayer@google.com>2024-04-16 23:03:22 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-04-16 23:03:22 +0000
commit08b1404cc2bbcc214c0f9d4d90f24923219872e8 (patch)
treee68cb009f01cef0a05b8b61086290b723020db8e
parent6b776d9db25f5c9c0af1b1ebf4282b04dc1be261 (diff)
parent7d098bbee7ceccf9cb007483494ddbc5c3a8217f (diff)
downloadbionic-08b1404cc2bbcc214c0f9d4d90f24923219872e8.tar.gz
Merge "Fix incorrect links" into main
-rw-r--r--libc/include/sched.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/include/sched.h b/libc/include/sched.h
index b1f18421b..9f043b600 100644
--- a/libc/include/sched.h
+++ b/libc/include/sched.h
@@ -99,7 +99,7 @@ struct sched_param {
};
/**
- * [sched_setscheduler(2)](http://man7.org/linux/man-pages/man2/sched_getcpu.2.html)
+ * [sched_setscheduler(2)](https://man7.org/linux/man-pages/man2/sched_setscheduler.2.html)
* sets the scheduling policy and associated parameters for the given thread.
*
* Returns 0 on success and returns -1 and sets `errno` on failure.
@@ -107,7 +107,7 @@ struct sched_param {
int sched_setscheduler(pid_t __pid, int __policy, const struct sched_param* _Nonnull __param);
/**
- * [sched_getscheduler(2)](http://man7.org/linux/man-pages/man2/sched_getcpu.2.html)
+ * [sched_getscheduler(2)](https://man7.org/linux/man-pages/man2/sched_getscheduler.2)
* gets the scheduling policy for the given thread.
*
* Returns a non-negative thread policy on success and returns -1 and sets