Skip to content

Commit

Permalink
Updated muscle submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
jfriesne committed Nov 4, 2024
1 parent e27c115 commit 54c25a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion submodules/muscle
Submodule muscle updated 63 files
+26 −0 HISTORY.txt
+1 −1 README.html
+1 −1 dataio/FileDescriptorDataIO.cpp
+1 −1 html/Beginners Guide.html
+1 −1 html/Custom Servers.html
+2 −1 html/muscle-by-example/docs/bitchord.md
+1 −1 html/muscle-by-example/docs/mutex.md
+1 −1 html/muscle-by-example/docs/otherlanguages.md
+21 −0 html/muscle-by-example/docs/readerwritermutex.md
+1 −1 html/muscle-by-example/docs/thread.md
+1 −1 html/muscle-by-example/docs/waitcondition.md
+6 −0 html/muscle-by-example/examples/CMakeLists.txt
+8 −8 html/muscle-by-example/examples/atomiccounter/example_2_stress_test.cpp
+3 −3 html/muscle-by-example/examples/mutex/example_1_basic_usage.cpp
+2 −2 html/muscle-by-example/examples/mutex/example_2_mutex_guard.cpp
+2 −2 html/muscle-by-example/examples/networkutilityfunctions/example_3_udp_multicast.cpp
+37 −0 html/muscle-by-example/examples/readerwritermutex/Makefile
+74 −0 html/muscle-by-example/examples/readerwritermutex/example_1_basic_usage.cpp
+81 −0 html/muscle-by-example/examples/readerwritermutex/example_2_mutex_guard.cpp
+6 −6 html/muscle-by-example/examples/refcount/example_1_basic_usage.cpp
+10 −10 html/muscle-by-example/examples/refcount/example_2_with_object_pool.cpp
+4 −4 html/muscle-by-example/examples/threadlocalstorage/example_1_basic_usage.cpp
+1 −0 html/muscle-by-example/mkdocs.yml
+1 −0 iogateway/PlainTextMessageIOGateway.cpp
+25 −3 message/Message.cpp
+12 −0 message/Message.h
+1 −0 platform/qt/QMessageTransceiverThread.cpp
+4 −0 platform/qt/qt_advanced_example/qt_advanced_example.cpp
+6 −1 platform/qt/qt_example/qt_example.cpp
+4 −0 platform/qt/qt_muscled_browser/Browser.cpp
+3 −0 reflector/FilterSessionFactory.cpp
+1 −1 regex/PathMatcher.cpp
+3 −0 regex/QueryFilter.cpp
+1 −0 regex/StringMatcher.cpp
+1 −1 server/Makefile
+4 −2 support/BitChord.h
+2 −2 support/MuscleSupport.h
+3 −3 syslog/SysLog.cpp
+2 −0 system/GlobalMemoryAllocator.cpp
+5 −1 system/MessageTransceiverThread.cpp
+19 −9 system/Mutex.h
+301 −0 system/ReaderWriterMutex.cpp
+427 −0 system/ReaderWriterMutex.h
+41 −22 system/SetupSystem.cpp
+4 −1 system/SystemInfo.cpp
+1 −0 system/Thread.cpp
+1 −1 system/Thread.h
+4 −0 test/CMakeLists.txt
+4 −1 test/Makefile
+23 −0 test/testhashtable.cpp
+200 −0 test/testreaderwritermutex.cpp
+3 −0 tools/CMakeLists.txt
+5 −1 tools/Makefile
+25 −33 tools/chatclient.cpp
+14 −9 tools/deadlock.cpp
+57 −57 tools/hexterm.cpp
+57 −0 tools/rwdeadlock.cpp
+39 −0 util/Hashtable.h
+26 −23 util/MiscUtilityFunctions.cpp
+22 −4 util/NetworkUtilityFunctions.cpp
+2 −2 util/String.cpp
+86 −0 util/overloaded_preprocessor_macro.h
+4 −0 zlib/ZipFileUtilityFunctions.cpp

0 comments on commit 54c25a5

Please sign in to comment.