Makefile - Added axwin3 to main build
[tpg/acess2.git] / Kernel / messages.c
1 /*
2  * AcessOS Microkernel Version
3  * messages.c
4  */
5 #define DEBUG   1
6 #include <acess.h>
7 #include <threads.h>
8 #include <threads_int.h>
9 #include <errno.h>
10
11 // === IMPORTS ===
12 extern tShortSpinlock   glThreadListLock;
13
14 // === CODE ===
15 /**
16  * \fn int Proc_SendMessage(Uint *Err, Uint Dest, int Length, void *Data)
17  * \brief Send an IPC message
18  * \param Err   Pointer to the errno variable
19  * \param Dest  Destination Thread
20  * \param Length        Length of the message
21  * \param Data  Message data
22  */
23 int Proc_SendMessage(Uint *Err, Uint Dest, int Length, void *Data)
24 {
25         tThread *thread;
26         tMsg    *msg;
27         
28         ENTER("pErr iDest iLength pData", Err, Dest, Length, Data);
29         
30         if(Length <= 0 || !Data) {
31                 *Err = -EINVAL;
32                 LEAVE_RET('i', -1);
33         }
34         
35         // Get thread
36         thread = Threads_GetThread( Dest );
37         
38         // Error check
39         if(!thread)     LEAVE_RET('i', -1);
40         
41         // Get Spinlock
42         SHORTLOCK( &thread->IsLocked );
43         
44         // Check if thread is still alive
45         if(thread->Status == THREAD_STAT_DEAD) {
46                 SHORTREL( &thread->IsLocked );
47                 LEAVE_RET('i', -1);
48         }
49         
50         // Create message
51         msg = malloc( sizeof(tMsg)+Length );
52         msg->Next = NULL;
53         msg->Source = Proc_GetCurThread()->TID;
54         msg->Length = Length;
55         memcpy(msg->Data, Data, Length);
56         
57         // If there are already messages
58         if(thread->LastMessage) {
59                 thread->LastMessage->Next = msg;
60                 thread->LastMessage = msg;
61         } else {
62                 thread->Messages = msg;
63                 thread->LastMessage = msg;
64         }
65         
66         SHORTREL(&thread->IsLocked);
67         
68         SHORTLOCK(&glThreadListLock);
69         LOG("Waking %p (%i %s)", thread, thread->TID, thread->ThreadName);
70         Threads_Wake( thread );
71         SHORTREL(&glThreadListLock);
72         
73         LEAVE_RET('i', 0);
74 }
75
76 /**
77  * \fn int Proc_GetMessage(Uint *Err, Uint *Source, void *Buffer)
78  * \brief Gets a message
79  * \param Err   Pointer to \a errno
80  * \param Source        Where to put the source TID
81  * \param Buffer        Buffer to place the message data (set to NULL to just get message length)
82  */
83 int Proc_GetMessage(Uint *Err, Uint *Source, void *Buffer)
84 {
85          int    ret;
86         void    *tmp;
87         tThread *cur = Proc_GetCurThread();
88         
89         // Check if queue has any items
90         if(!cur->Messages) {
91                 return 0;
92         }
93
94         SHORTLOCK( &cur->IsLocked );
95         
96         if(Source)
97                 *Source = cur->Messages->Source;
98         
99         // Get message length
100         if( !Buffer ) {
101                 ret = cur->Messages->Length;
102                 SHORTREL( &cur->IsLocked );
103                 return ret;
104         }
105         
106         // Get message
107         if(Buffer != GETMSG_IGNORE)
108         {
109                 if( !CheckMem( Buffer, cur->Messages->Length ) )
110                 {
111                         *Err = -EINVAL;
112                         SHORTREL( &cur->IsLocked );
113                         return -1;
114                 }
115                 memcpy(Buffer, cur->Messages->Data, cur->Messages->Length);
116         }
117         ret = cur->Messages->Length;
118         
119         // Remove from list
120         tmp = cur->Messages;
121         cur->Messages = cur->Messages->Next;
122         
123         SHORTREL( &cur->IsLocked );
124         
125         free(tmp);      // Free outside of lock
126         
127         return ret;
128 }

UCC git Repository :: git.ucc.asn.au