* Free a message's memory */
| 1681 | * Free a message's memory |
| 1682 | */ |
| 1683 | static __inline void |
| 1684 | mqueue_freemsg(struct mqueue_msg *msg) |
| 1685 | { |
| 1686 | free(msg, M_MQUEUEDATA); |
| 1687 | } |
| 1688 | |
| 1689 | /* |
| 1690 | * Send a message. if waitok is false, thread will not be |
no test coverage detected