Skip to content

Commit

Permalink
iox-#2209 Change ssize_t to iox_ssize_t in mqueue functions
Browse files Browse the repository at this point in the history
  • Loading branch information
khromenokroman committed Aug 30, 2024
1 parent d88b22c commit 09228d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: Build & Test
# Triggers the workflow on push or pull request events but only for the main branch
on:
push:
branches: [ main ]
branches: [ main , iox-* ]
pull_request:
branches: [ main, release*, iox-* ]

Expand Down
4 changes: 2 additions & 2 deletions iceoryx_platform/win/include/iceoryx_platform/mqueue.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ inline int mq_close(mqd_t mqdes)
//{
//}

inline ssize_t mq_receive(mqd_t mqdes, char* msg_ptr, size_t msg_len, unsigned int* msg_prio)
inline iox_ssize_t mq_receive(mqd_t mqdes, char* msg_ptr, size_t msg_len, unsigned int* msg_prio)
{
return 0;
}

inline ssize_t
inline iox_ssize_t
mq_timedreceive(mqd_t mqdes, char* msg_ptr, size_t msg_len, unsigned int* msg_prio, const struct timespec* abs_timeout)
{
return 0;
Expand Down

0 comments on commit 09228d1

Please sign in to comment.