Skip to content

Commit 2e2ec9a

Browse files
lvanassexiaoxiang781216
authored andcommitted
Doc: Replace link from old wiki to new wiki in signaling events from int
Signed-off-by: Ludovic Vanasse <[email protected]>
1 parent 2532a79 commit 2e2ec9a

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

Documentation/guides/signal_events_interrupt_handlers.rst

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,7 @@ it to zero:
106106
immediately after the ``sem_init()``. The effect of this function call is to
107107
disable priority inheritance for that specific semaphore. There should
108108
then be no priority inheritance operations on this semaphore that is
109-
used for signaling. See `Signaling Semaphores and Priority Inheritance
110-
<https://cwiki.apache.org/confluence/display/NUTTX/Signaling+Semaphores+and+Priority+Inheritance>`_
109+
used for signaling. See :doc:`/guides/signaling_sem_priority_inheritance`
111110
for further information.
112111

113112
Since the semaphore is initialized to zero, each time that a thread joins
@@ -197,14 +196,14 @@ properties of ``sem_getvalue()``.
197196
NOTE: There is possibility of improper interactions between the
198197
semaphore when it is used for signaling and priority inheritance.
199198
In this case, you should disable priority inheritance on the
200-
signaling semaphore using ``sem_setprotocol(SEM_PRIO_NONE)``. See `Signaling Semaphores and Priority Inheritance
201-
<https://cwiki.apache.org/confluence/display/NUTTX/Signaling+Semaphores+and+Priority+Inheritance>`_
199+
signaling semaphore using ``sem_setprotocol(SEM_PRIO_NONE)``. See
200+
:doc:`/guides/signaling_sem_priority_inheritance`
202201
for further information.
203202

204203
Signals
205204
=======
206205

207-
3) Store the thread id's in a list when ``read()`` is called. Wake up the
206+
3) Store the thread id's in a list when ``read()`` is called. Wake up the
208207
threads using ``sigqueue()``. Read the data from a shared buffer
209208
inside ``sched_lock()``.
210209

@@ -242,8 +241,8 @@ NuttX does not currently support process groups. But that might be a good
242241
RTOS extension. If you and others think that would be useful I could
243242
probably add the basics of such a feature in a day or so.
244243

245-
poll()
246-
======
244+
``poll()``
245+
==========
247246

248247
Is there some better way that I haven't discovered?
249248

0 commit comments

Comments
 (0)