Revision 28, 2.1 KB
(checked in by andreu, 16 years ago)
|
debug mode in compilation option - Wno-long-long - copyright update
|
-
Property svn:eol-style set to
native
|
Line | |
---|
1 | |
---|
2 | |
---|
3 | |
---|
4 | |
---|
5 | |
---|
6 | |
---|
7 | |
---|
8 | |
---|
9 | |
---|
10 | |
---|
11 | |
---|
12 | |
---|
13 | |
---|
14 | |
---|
15 | |
---|
16 | |
---|
17 | |
---|
18 | |
---|
19 | |
---|
20 | |
---|
21 | |
---|
22 | |
---|
23 | |
---|
24 | |
---|
25 | |
---|
26 | #include <stdio.h> |
---|
27 | #include <string.h> |
---|
28 | #include <errno.h> |
---|
29 | #include <stdlib.h> |
---|
30 | #include <sys/types.h> |
---|
31 | #include <sys/ipc.h> |
---|
32 | #include <sys/msg.h> |
---|
33 | #include <syslog.h> |
---|
34 | |
---|
35 | #include "msg_mgmt.h" |
---|
36 | |
---|
37 | |
---|
38 | |
---|
39 | |
---|
40 | key_t |
---|
41 | createKey(char *argzero){ |
---|
42 | key_t key; |
---|
43 | if ((key = ftok (argzero, 0)) == -1) { |
---|
44 | perror ("ftok"); |
---|
45 | exit(-1); |
---|
46 | } |
---|
47 | return key; |
---|
48 | } |
---|
49 | |
---|
50 | |
---|
51 | |
---|
52 | |
---|
53 | int |
---|
54 | createQueue(key_t key){ |
---|
55 | int file; |
---|
56 | if ((file = msgget (key, IPC_CREAT | 0x660)) == -1) { |
---|
57 | perror ("msgget"); |
---|
58 | exit(-1); |
---|
59 | } |
---|
60 | return file; |
---|
61 | } |
---|
62 | |
---|
63 | |
---|
64 | |
---|
65 | |
---|
66 | void |
---|
67 | msgSend(int file, msgType msg){ |
---|
68 | if (msgsnd (file, (void *) & msg, sizeof(msg.text), |
---|
69 | IPC_NOWAIT) <0) { |
---|
70 | if (errno == EAGAIN) { |
---|
71 | syslog(LOG_INFO,"The IPC queue is full, I don't wait"); |
---|
72 | } else { |
---|
73 | syslog(LOG_ERR,"msgsnd : %s", strerror(errno)); |
---|
74 | exit(1); |
---|
75 | } |
---|
76 | } |
---|
77 | } |
---|
78 | |
---|
79 | |
---|
80 | |
---|
81 | |
---|
82 | unsigned char * |
---|
83 | msgRcv(int file, msgType *msg, long type) |
---|
84 | { |
---|
85 | if (msgrcv (file, (void *) msg, sizeof(msg->text), type, 0) >= 0){ |
---|
86 | return (unsigned char *)msg->text; |
---|
87 | } else if (errno == EINTR) { |
---|
88 | syslog(LOG_INFO,"msgrcv : Internal system call"); |
---|
89 | } else { |
---|
90 | syslog (LOG_ERR,"msgrcv : %s", strerror(errno)); |
---|
91 | exit(1); |
---|
92 | } |
---|
93 | return (unsigned char *)msg->text; |
---|
94 | } |
---|