tag | line | file | source code |
msgh | 54 | ipc/msg.c | struct msg *msgh; |
msgh | 108 | ipc/msg.c | msgh = (struct msg *) kmalloc (sizeof(*msgh) + msgsz, |
msgh | 110 | ipc/msg.c | if (!msgh) |
msgh | 112 | ipc/msg.c | msgh->msg_spot = (char *) (msgh + 1); |
msgh | 125 | ipc/msg.c | memcpy(msgh->msg_spot, (char *)(&(kdmp->id)), sizeof(long)); |
msgh | 126 | ipc/msg.c | memcpy(msgh->msg_spot + sizeof(long), kdmp->text, |
msgh | 130 | ipc/msg.c | memcpy_fromfs (msgh->msg_spot, msgp->mtext, msgsz); |
msgh | 134 | ipc/msg.c | kfree(msgh); |
msgh | 138 | ipc/msg.c | msgh->msg_next = NULL; |
msgh | 140 | ipc/msg.c | msq->msg_first = msq->msg_last = msgh; |
msgh | 142 | ipc/msg.c | msq->msg_last->msg_next = msgh; |
msgh | 143 | ipc/msg.c | msq->msg_last = msgh; |
msgh | 145 | ipc/msg.c | msgh->msg_ts = msgsz; |
msgh | 146 | ipc/msg.c | msgh->msg_type = mtype; |
msgh | 459 | ipc/msg.c | struct msg *msgp, *msgh; |
msgh | 475 | ipc/msg.c | for (msgp = msq->msg_first; msgp; msgp = msgh ) { |
msgh | 476 | ipc/msg.c | msgh = msgp->msg_next; |