12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #define _XOPEN_SOURCE 700
- #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;
- }
|