* Drop a record off the front of a sockbuf and move the next record to the * front. */
| 1717 | * front. |
| 1718 | */ |
| 1719 | void |
| 1720 | sbdroprecord(struct sockbuf *sb) |
| 1721 | { |
| 1722 | |
| 1723 | SOCKBUF_LOCK(sb); |
| 1724 | sbdroprecord_locked(sb); |
| 1725 | SOCKBUF_UNLOCK(sb); |
| 1726 | } |
| 1727 | |
| 1728 | /* |
| 1729 | * Create a "control" mbuf containing the specified data with the specified |
no test coverage detected