From f626abc98e8780b78755f8ebb1afe2fd2fb8b3ea Mon Sep 17 00:00:00 2001 From: Gaetan Perrot Date: Sun, 4 Feb 2024 00:10:27 +0900 Subject: [PATCH 1/2] doc: posix: mark putmsg as supported Mark `putmsg()` as implemented but will fail with ``ENOSYS`` Was missing on the documentation before. signed-off-by: Gaetan Perrot --- doc/services/portability/posix/conformance/index.rst | 2 +- doc/services/portability/posix/option_groups/index.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/services/portability/posix/conformance/index.rst b/doc/services/portability/posix/conformance/index.rst index 0c38955337ee..2fe9156f943d 100644 --- a/doc/services/portability/posix/conformance/index.rst +++ b/doc/services/portability/posix/conformance/index.rst @@ -109,7 +109,7 @@ POSIX System Interfaces _XOPEN_CRYPT, -1, _XOPEN_REALTIME, -1, _XOPEN_REALTIME_THREADS, -1, - :ref:`_XOPEN_STREAMS`, -1, :kconfig:option:`CONFIG_NET_SOCKETS` + :ref:`_XOPEN_STREAMS`, -1, :ref:`†` _XOPEN_UNIX, -1, POSIX Shell and Utilities diff --git a/doc/services/portability/posix/option_groups/index.rst b/doc/services/portability/posix/option_groups/index.rst index d0a37584e3d3..ae13c41952ae 100644 --- a/doc/services/portability/posix/option_groups/index.rst +++ b/doc/services/portability/posix/option_groups/index.rst @@ -509,7 +509,7 @@ _XOPEN_STREAMS getpmsg(), ioctl(),yes isastream(), - putmsg(), + putmsg(), yes (will fail with ``ENOSYS``:ref:`†`) putpmsg(), From 5ca81054e96555ca7b287e1d25afa98e38cd8a0f Mon Sep 17 00:00:00 2001 From: Gaetan Perrot Date: Thu, 29 Feb 2024 16:49:44 +0900 Subject: [PATCH 2/2] doc: posix: sched functions will fail with ENOSYS Mark `sched_setparam()` , `sched_setscheduler()` and `sched_rr_get_interval()` have implemented but will fail with ``ENOSYS`` Were missing on the documentation before. signed-off-by: Gaetan Perrot --- doc/services/portability/posix/option_groups/index.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/services/portability/posix/option_groups/index.rst b/doc/services/portability/posix/option_groups/index.rst index ae13c41952ae..eb2fdf8c4e3a 100644 --- a/doc/services/portability/posix/option_groups/index.rst +++ b/doc/services/portability/posix/option_groups/index.rst @@ -379,9 +379,9 @@ _POSIX_PRIORITY_SCHEDULING sched_get_priority_min(),yes sched_getparam(),yes sched_getscheduler(),yes - sched_rr_get_interval(),yes - sched_setparam(),yes - sched_setscheduler(),yes + sched_rr_get_interval(),yes (will fail with ``ENOSYS``:ref:`†`) + sched_setparam(),yes (will fail with ``ENOSYS``:ref:`†`) + sched_setscheduler(),yes (will fail with ``ENOSYS``:ref:`†`) sched_yield(),yes .. _posix_option_reader_writer_locks: