- 01 Mar, 2019 1 commit
-
-
Simon Giesecke authored
Solution: remove them
-
- 27 May, 2018 1 commit
-
-
Simon Giesecke authored
Problem: inconsistent naming style for private data members, conflicts with naming of local variables and member functions Solution: apply and check _lower_case naming style for private data members
-
- 26 May, 2018 2 commits
-
-
Simon Giesecke authored
Solution: remove else
-
Simon Giesecke authored
Solution: define and apply parameter naming style: lower_case_
-
- 22 May, 2018 1 commit
-
-
Simon Giesecke authored
Problem: API poller cannot be set independently from I/O thread poller, poll I/O thread poller broken on Windows Solution: change platform definitions to separate API poller from I/O thread poller, disallow configuring poll I/O thread poller on Windows
-
- 18 May, 2018 1 commit
-
-
Simon Giesecke authored
Solution: replace by C++-style casts
-
- 10 Mar, 2018 1 commit
-
-
Manuel Segura authored
* Problem: Still need to port over more files to VxWorks 6.x Solution: Port more files to VxWorks 6.x * Problem: Need to port over remaining files to VxWorks 6.x. Also remove POSIX thread dependency for VxWorks (because of priority inversion problem in POSIX mutexes with VxWorks 6.x processes) Solution: Port over remaining files to VxWorks 6.x. Also removed POSIX thread dependency for VxWorks * Problem: Needed to modify TCP, UDP, TIPC classes with #ifdefs to be compatible with VxWorks 6.x. Solution: Modify TCP, UDP, TIPC classes with #ifdefs to be compatible with VxWorks 6.x
-
- 13 Feb, 2018 1 commit
-
-
Simon Giesecke authored
Solution: apply clang-format
-
- 12 Feb, 2018 4 commits
-
-
Simon Giesecke authored
Solution: fixed access to stale vector
-
Simon Giesecke authored
Solution: change termination condition of select_t
-
Simon Giesecke authored
Solution: fixed call of select, and initialization of poll_t members
-
Luca Boccassi authored
* Problem: build failure with select as polling mechanism Solution: cast mailbox_handle argument to (poller_t::handle_t) like in the reaper thread class. * Problem: build failure due to INT_MAX use without include Solution: include limits and climits in src/select.cpp where INT_MAX is used * Problem: build failure due to unused variable in select.cpp Solution: move the declaration of int rc inside the ifdef block where it is actually used * Problem: reference to wrong variable in select.cpp breaks build Solution: fix it * Problem: family_entry_t constructor has no body, build fails on *nix Solution: add empty inline function in the struct * Problem: no test coverage for poll and select Solution: add Travis jobs for them on Linux * Problem: Travis jobs cannot run in container infra Solution: set sudo: false as it is not required anymore
-
- 11 Feb, 2018 1 commit
-
-
Simon Giesecke authored
Solution: extract thread_ctx_t from ctx_t
-
- 09 Feb, 2018 2 commits
-
-
sigiesec authored
Solution: relaxed test assertions, based on the actual time passed, instead of assuming that this equals to the time slept
-
Simon Giesecke authored
load Solution: add assertions, partially in debug build only, improved naming
-
- 02 Feb, 2018 1 commit
-
-
sigiesec authored
Solution: applied clang-format
-
- 31 Jan, 2018 1 commit
-
-
sigiesec authored
Solution: signal error to caller, and apply appropriate cleanup
-
- 26 Oct, 2017 3 commits
- 25 Oct, 2017 1 commit
-
-
sigiesec authored
iteration even if not used Solution: Move wsa_events closer to usage
-
- 01 Sep, 2017 1 commit
-
-
sigiesec authored
Solution: handle case when get_fd_family fails
-
- 21 Aug, 2017 1 commit
-
-
sigiesec authored
Solution: extract find_fd_entry_by_handle from rm_fd
-
- 14 Apr, 2017 1 commit
-
-
bjovke authored
Problem: FD set copying on Windows still not optimal on some places. Solution: Improved memcpy() of FD sets for Windows builds.
-
- 24 Nov, 2016 1 commit
-
-
Luca Boccassi authored
Solution: initialise class variables in the same order they are declared
-
- 25 Sep, 2016 1 commit
-
-
Ilya Kulakov authored
fd_entries (std::vector) can reallocate underlying storage which will render reference invalid.
-
- 23 Sep, 2016 1 commit
-
-
Gennady Makovetski authored
Problem: Pub socket crashes on client disconnect. family_entry.fd_entries [i] is modified in zmq::select_t::rm_fd() Solution: do not copy family_entry.fd_entries [i]
-
- 17 Sep, 2016 1 commit
-
-
Constantin Rack authored
Solution: replace tabes with spaces
-
- 16 Jun, 2016 1 commit
-
-
Douglas Cuthbertson authored
-
- 01 Jun, 2016 1 commit
-
-
Yann Diorcet authored
-
- 14 May, 2016 1 commit
-
-
evoskuil authored
-
- 25 Apr, 2016 2 commits
-
-
hitstergtd authored
Solution: fix them
-
hitstergtd authored
Solution: fix them
-
- 21 Apr, 2016 1 commit
-
-
Doron Somech authored
-
- 19 Mar, 2016 2 commits
-
-
Mário Kašuba authored
-
Mário Kašuba authored
-
- 18 Feb, 2016 1 commit
-
-
Osiris authored
Solution: Phase I - make precompiled.hpp be first file included in every source file
-
- 06 Feb, 2016 1 commit
-
-
Michael authored
used static_cast<signed int> around WSA_WAIT_FAILED as it is an unsigned implicitly defined as (0xFFFFFFFF ion winbase.h) and causes a comparison error. removed use of c++11 style initialiser list for 'sockaddr addr { 0 }' and changed it to 'sockaddr addr = { 0 }'
-
- 03 Feb, 2016 1 commit
-
-
Ilya Kulakov authored
select was improved to support multiple service providers on Windows. it should be slightly faster because of optimized iteration over selected sockets.
-
- 28 Jan, 2016 1 commit
-
-
Constantin Rack authored
Solution: update to 2016
-