* Clear the message buffer. */
| 116 | * Clear the message buffer. |
| 117 | */ |
| 118 | void |
| 119 | msgbuf_clear(struct msgbuf *mbp) |
| 120 | { |
| 121 | |
| 122 | bzero(mbp->msg_ptr, mbp->msg_size); |
| 123 | mbp->msg_wseq = 0; |
| 124 | mbp->msg_rseq = 0; |
| 125 | mbp->msg_cksum = 0; |
| 126 | } |
| 127 | |
| 128 | /* |
| 129 | * Get a count of the number of unread characters in the message buffer. |
no test coverage detected