| 92 | } |
| 93 | |
| 94 | void send_msg(int msqid, void *msgp, size_t msgsz, int msgflg) { |
| 95 | if (msgsnd(msqid, msgp, msgsz, msgflg) == -1) |
| 96 | perror("msgsend failure"); |
| 97 | return; |
| 98 | } |
| 99 | |
| 100 | size_t user_cs, user_ss, user_rflags, user_sp; |
| 101 | void save_status() |
no outgoing calls
no test coverage detected