Skip to content
Snippets Groups Projects
Commit 381022e1 authored by alexander.lysikov's avatar alexander.lysikov
Browse files

added `mutex` to `struct dap_client` for correct closing connection

update modules
parent 4f9d6997
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,8 @@ typedef enum dap_client_stage {
STAGE_STREAM_CTL=2,
STAGE_STREAM_SESSION=3,
STAGE_STREAM_CONNECTED=4,
STAGE_STREAM_STREAMING=5
STAGE_STREAM_STREAMING=5,
STAGE_STREAM_ABORT=10
} dap_client_stage_t;
typedef enum dap_client_stage_status {
......@@ -69,6 +70,7 @@ typedef enum dap_client_error {
* @brief The dap_client struct
*/
typedef struct dap_client{
pthread_mutex_t mutex;
void * _internal;
void * _inheritor;
} dap_client_t;
......
Subproject commit 4ab41cdcaa8087323652cd5fef702876ccc25dab
Subproject commit 4896ad4eeda5b8d4b3ba92dfe2eb6d4cf34efcc7
Subproject commit ff63d762657f9687173db825705b8bf4b958abee
Subproject commit bcfcef1cd87cc6cfbc7e47887894c0fa3742a218
Subproject commit 2cc113d3ef8234037016ac21f33731998bba6552
Subproject commit 5c4bf1f472a48086f71822355c14197ff416831a
Subproject commit 1008394f0ecdbc41d995a4cc5bbc4b51ad789eaf
Subproject commit bbe4d2b4e00012effac21cda4c2d3554dc6173e0
Subproject commit bbf1b9db2c3af9a3a59f6debb90ddc8db55ae2eb
Subproject commit e320774de51a831559fbeafb2dab6e7c063dcc99
Subproject commit 7a53ab997e1079000d0f7477d30e4d58cf4185f7
Subproject commit d970b74478fc582e75c3e287fa63bec207b92598
Subproject commit 268f422bde88a5f4f254a31b7d52b18d2cad71fc
Subproject commit 09e76911c2f76c6cc1c4651a99f0e545c1c1c840
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment