cf77abac9b
* Added BACnet Secure Connect datalink. * Added BACnet/SC hub application --------- Co-authored-by: Kirill Neznamov <kirill.neznamov@dsr-corporation.com> Co-authored-by: Mikhail Antropov <michail.antropov@dsr-corporation.com> Co-authored-by: Ondřej Hruška <ondra@ondrovo.com> Co-authored-by: Patrick Grimm <patrick@lunatiki.de>
28 lines
827 B
C
28 lines
827 B
C
/**
|
|
* @file
|
|
* @brief Global websocket functions
|
|
* @author Kirill Neznamov <kirill.neznamov@dsr-corporation.com>
|
|
* @date May 2022
|
|
* @copyright SPDX-License-Identifier: MIT
|
|
*/
|
|
#ifndef __BSC_WEBSOCKET_MUTEX_INCLUDED__
|
|
#define __BSC_WEBSOCKET_MUTEX_INCLUDED__
|
|
|
|
#ifndef BSC_DEBUG_WEBSOCKET_MUTEX_ENABLED
|
|
#define BSC_DEBUG_WEBSOCKET_MUTEX_ENABLED 0
|
|
#endif
|
|
|
|
#if (BSC_DEBUG_WEBSOCKET_MUTEX_ENABLED != 1)
|
|
void bsc_websocket_global_lock(void);
|
|
void bsc_websocket_global_unlock(void);
|
|
#else
|
|
void bsc_websocket_global_lock_dbg(char *f, int line);
|
|
void bsc_websocket_global_unlock_dbg(char *f, int line);
|
|
#define bsc_websocket_global_lock() bsc_websocket_global_lock_dbg(__FILE__, __LINE__);
|
|
#define bsc_websocket_global_unlock() bsc_websocket_global_unlock_dbg(__FILE__, __LINE__);
|
|
#endif
|
|
|
|
void bsc_websocket_init_log(void);
|
|
|
|
#endif
|