cb243c36a8
* Change MIT license texts to SPDX-License-Identifier SPDX-License-Identifier is much easier to understand and grep than license text so use that instead. * Change GPL exception license texts to SPDX-License-Identifier SPDX-License-Identifier is much easier to understand and grep than license text so use that instead. * Change misc license texts to SPDX-License-Identifier There are some external code in repo which are not licenses as most of the stuff in this repo. We still want every file to have SPDX identifier to easily grep licenses. * Add currently used license files Even though Bacnet-Stack is using SPDX identifiers we still need to give those license files with source. For this reason add all license files to license/ folder. SPDX has also files which would make same thing but this is style which example Linux kernel is using and it is quite clear so I choose that one for now. I choosed not yet bring CC-PDDC as that is not right license for those files. --------- Co-authored-by: Kari Argillander <kari.argillander@fidelix.com>
85 lines
1.5 KiB
C
85 lines
1.5 KiB
C
/**
|
|
* @file
|
|
* @author Andriy Sukhynyuk, Vasyl Tkhir, Andriy Ivasiv
|
|
* @date 2012
|
|
* @brief Message queue module
|
|
*
|
|
* @section LICENSE
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <pthread.h>
|
|
#include "msgqueue.h"
|
|
|
|
pthread_mutex_t msg_lock = PTHREAD_MUTEX_INITIALIZER;
|
|
|
|
MSGBOX_ID create_msgbox()
|
|
{
|
|
MSGBOX_ID msgboxid;
|
|
|
|
msgboxid = msgget(IPC_PRIVATE, 0666 | IPC_CREAT);
|
|
if (msgboxid == INVALID_MSGBOX_ID) {
|
|
return INVALID_MSGBOX_ID;
|
|
}
|
|
|
|
return msgboxid;
|
|
}
|
|
|
|
bool send_to_msgbox(MSGBOX_ID dest, BACMSG *msg)
|
|
{
|
|
int err;
|
|
|
|
err = msgsnd(dest, msg, sizeof(BACMSG) - sizeof(MSGTYPE), 0);
|
|
if (err) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
BACMSG *recv_from_msgbox(MSGBOX_ID src, BACMSG *msg, int flags)
|
|
{
|
|
int recv_bytes;
|
|
|
|
recv_bytes = msgrcv(src, msg, sizeof(BACMSG) - sizeof(MSGTYPE), 0, flags);
|
|
if (recv_bytes > 0) {
|
|
return msg;
|
|
} else {
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
void del_msgbox(MSGBOX_ID msgboxid)
|
|
{
|
|
if (msgboxid == INVALID_MSGBOX_ID) {
|
|
return;
|
|
} else {
|
|
msgctl(msgboxid, IPC_RMID, NULL);
|
|
}
|
|
}
|
|
|
|
void free_data(MSG_DATA *data)
|
|
{
|
|
if (data->pdu) {
|
|
free(data->pdu);
|
|
data->pdu = NULL;
|
|
}
|
|
if (data) {
|
|
free(data);
|
|
data = NULL;
|
|
}
|
|
}
|
|
|
|
void check_data(MSG_DATA *data)
|
|
{
|
|
/* lock and decrement messages reference count */
|
|
pthread_mutex_lock(&msg_lock);
|
|
if (--data->ref_count == 0) {
|
|
free_data(data);
|
|
}
|
|
pthread_mutex_unlock(&msg_lock);
|
|
}
|