Priority Messages and Thread Names
You will be familiarized with how messages can be sent with high priority and how names can be assigned to the threads in this lesson.
We'll cover the following...
Priority messages
Messages can be sent with higher priority than regular messages by prioritySend()
. These messages are handled before the other messages that are already in the mailbox:
prioritySend(ownerTid, ImportantMessage(100));
If the receiver does not ...