123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- #include <shim_unistd.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <sys/ipc.h>
- #include <sys/msg.h>
- #include <sys/time.h>
- #include <sys/types.h>
- #include <sys/wait.h>
- #include <unistd.h>
- #define PAYLOAD_SIZE 4
- struct msgbuf {
- long mtype;
- char mtext[PAYLOAD_SIZE];
- };
- #define TEST_TIMES 1000
- #define DO_BENCH 1
- int msqid;
- /* server always sends messages */
- void server(void) {
- struct timeval tv1, tv2;
- struct msgbuf buf;
- int i;
- buf.mtype = 1;
- gettimeofday(&tv1, NULL);
- for (i = 0; i < TEST_TIMES; i++) {
- if (msgsnd(msqid, &buf, PAYLOAD_SIZE, 0) < 0) {
- perror("msgsnd");
- exit(1);
- }
- #ifndef DO_BENCH
- printf("Message: \"%s\" sent\n", buf.mtext);
- #endif
- }
- msgpersist(msqid, MSGPERSIST_STORE);
- gettimeofday(&tv2, NULL);
- printf("time spent on %d msgsnd: %llu microsecond\n", TEST_TIMES,
- (tv2.tv_sec * 1000000ull + tv2.tv_usec) - (tv1.tv_sec * 1000000ull + tv1.tv_usec));
- }
- /* client always sends messages */
- void client(void) {
- struct timeval tv1, tv2;
- struct msgbuf buf;
- int ret;
- gettimeofday(&tv1, NULL);
- msgpersist(msqid, MSGPERSIST_LOAD);
- for (int i = 0; i < TEST_TIMES; i++) {
- if ((ret = msgrcv(msqid, &buf, PAYLOAD_SIZE, 1, 0)) < 0) {
- perror("msgrcv");
- exit(1);
- }
- #ifndef DO_BENCH
- buf.mtext[ret] = 0;
- printf("Client received: \"%s\"\n", buf.mtext);
- #endif
- }
- gettimeofday(&tv2, NULL);
- printf("time spent on %d msgrcv: %llu microsecond\n", TEST_TIMES,
- (tv2.tv_sec * 1000000ull + tv2.tv_usec) - (tv1.tv_sec * 1000000ull + tv1.tv_usec));
- msgctl(msqid, IPC_RMID, NULL);
- }
- int main(int argc, char** argv) {
- if ((msqid = msgget(IPC_PRIVATE, 0600 | IPC_CREAT)) < 0) {
- perror("msgget");
- exit(1);
- }
- server();
- client();
- return 0;
- }
|