Appends one mbuf chain to the end of another.
#include <sys/types.h> #include <sys/errno.h> #include <sys/mbuf.h>
void m_cat (m, n) struct mbuf *m; struct mbuf *n;
m | Specifies the mbuf chain to be appended to. |
n | Specifies the mbuf chain to append. |
The m_cat kernel service appends an mbuf chain specified by the n parameter to the end of mbuf chain specified by the m parameter. Where possible, compaction is performed.
The m_cat kernel service can be called from either the process or interrupt environment.
The m_cat service has no return values.
The m_cat kernel service is part of Base Operating System (BOS) Runtime.
I/O Kernel Services in AIX Kernel Extensions and Device Support Programming Concepts.