Skip to content

Commit

Permalink
8.62 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jfriesne committed Sep 22, 2022
1 parent 53e8bc7 commit d6e8b89
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
1 change: 1 addition & 0 deletions HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ key: - new feature
* bug fixed
o other

8.62 - Released 9/22/2022
- Added a Hashtable::ComputeInvertedTable() convenience-method.
- Added a Hashtable::ComputeValuesHistogram() convenience-method.
- Updated server/Makefile and test/Makefile to compile Universal
Expand Down
2 changes: 1 addition & 1 deletion README.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<H2>
MUSCLE: Crossbar Server, Portable Messaging and Support Classes<p>
8/2/2022 v8.61 jaf@meyersound.com<p>
9/22/2022 v8.62 jaf@meyersound.com<p>
Jeremy Friesner / Meyer Sound Laboratories Inc.<p>
Win32 compatibility contributions by Vitaliy Mikitchenko<p>
C# client code by Wilson Yeung<p>
Expand Down
2 changes: 1 addition & 1 deletion html/Beginners Guide.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<HTML>
<HEAD>
<H1>MUSCLE Overview and Beginner's Guide</H1>
<H4>v8.61 / Jeremy Friesner / Meyer Sound Laboratories Inc (jaf@meyersound.com) 8/2/2022</H4>
<H4>v8.62 / Jeremy Friesner / Meyer Sound Laboratories Inc (jaf@meyersound.com) 9/22/2022</H4>
<A HREF="https://public.msli.com/lcs/muscle/html/index.html">Click here for DOxygen class API documentation</A><p>
<A HREF="https://public.msli.com/lcs/muscle/muscle/html/muscle-by-example/site/index.html">Click here for the MUSCLE-by-example tour</A>
</HEAD>
Expand Down
2 changes: 1 addition & 1 deletion html/Custom Servers.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<HTML>
<HEAD>
<H1>Implementing a Custom Server with MUSCLE</H1>
<H4>v8.61 / Jeremy Friesner / Meyer Sound Laboratories Inc (jaf@meyersound.com) 8/2/2022</H4>
<H4>v8.62 / Jeremy Friesner / Meyer Sound Laboratories Inc (jaf@meyersound.com) 9/22/2022</H4>
</HEAD>
<BODY bgcolor=#ffffff>
<H2>Introduction</H2>
Expand Down
4 changes: 2 additions & 2 deletions support/MuscleSupport.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
/
*******************************************************************************/

#define MUSCLE_VERSION_STRING "8.61" /**< The current version of the MUSCLE distribution, expressed as an ASCII string */
#define MUSCLE_VERSION 86100 /**< Current version, expressed as decimal Mmmbb, where (M) is the number before the decimal point, (mm) is the number after the decimal point, and (bb) is reserved */
#define MUSCLE_VERSION_STRING "8.62" /**< The current version of the MUSCLE distribution, expressed as an ASCII string */
#define MUSCLE_VERSION 86200 /**< Current version, expressed as decimal Mmmbb, where (M) is the number before the decimal point, (mm) is the number after the decimal point, and (bb) is reserved */

/*! \mainpage MUSCLE Documentation Page
*
Expand Down
1 change: 0 additions & 1 deletion test/snoopsharedmem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ int main(int argc, char ** argv)
const uint32 memSize = m.GetAreaSize();
LogTime(MUSCLE_LOG_INFO, "Successfully attached to Shared Memory region [%s], which is located at %p and is " UINT32_FORMAT_SPEC " bytes long.\n", shmemName, a, memSize);

uint64 lastTime = 0;
while(1)
{
Snooze64(MillisToMicros(100));
Expand Down

0 comments on commit d6e8b89

Please sign in to comment.