Skip to content

Commit 4554b2c

Browse files
committed
Update for MQ 9.4.1
1 parent 233f16e commit 4554b2c

File tree

13 files changed

+54
-10
lines changed

13 files changed

+54
-10
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
History (newest at top)
33
=======================
44

5+
Oct 2024 (v5.5.1)
6+
* Update for MQ 9.4.1
7+
* Some QESD fields renamed to match product changes
8+
59
Jun 2024 (v5.5)
610
* Update for MQ 9.4.0
711
* New stats available for zHyperlink

bin/aix/convH

0 Bytes
Binary file not shown.

bin/aix/mqsmfcsv

16 Bytes
Binary file not shown.

bin/linux/convH

0 Bytes
Binary file not shown.

bin/linux/mqsmfcsv

0 Bytes
Binary file not shown.

bin/win/mqsmfcsv.exe

-512 Bytes
Binary file not shown.

src/M

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plat=`uname`
44

55
if [ -z "$VERS" ]
66
then
7-
VERS="940"
7+
VERS="941"
88
fi
99

1010
if [ "$plat" = "AIX" ]

src/Makefile.gcc.win

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ CC=i686-w64-mingw32-gcc
33
# CFLAGS= -I. -m32 -fpack-struct=8 -DPLATFORM_WINDOWS
44
CFLAGS= -I. -m32 -DPLATFORM_WINDOWS
55
PLATFLAGS=
6-
VERS=940
6+
VERS=941
77
SRC = mqsmf.c \
88
smfDDL.c \
99
smfDate.c \

src/Makefile.win

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CFLAGS=-nologo /D_CRT_SECURE_NO_WARNINGS /Zp1 /J /O2 /DPLATFORM_WINDOWS
2-
VERS=940
2+
VERS=941
33
SRC = mqsmf.c \
44
smfDDL.c \
55
smfDate.c \

src/mqsmfstrucU.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file was generated from cqsdsmfc.h version 940
2+
* This file was generated from cqsdsmfc.h version 941
33
* by the convH program (convH64.c) in the src directory
44
* Do not try to edit this header manually.
55
*

src/mqsmfstrucW.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* This file was generated from cqsdsmfc.h version 940
2+
* This file was generated from cqsdsmfc.h version 941
33
* by the convH program (convH64.c) in the src directory
44
* Do not try to edit this header manually.
55
*

src/sizes/sizes.master.941

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
q5st : 672
2+
qcct : 64
3+
qct_dsp : 36
4+
qct_adp : 32
5+
qct_ssl : 48
6+
qct_dns : 48
7+
qcst : 324
8+
qest : 4104
9+
qesd : 336
10+
qist : 80
11+
qis1 : 104
12+
qjst : 720
13+
qlst : 32
14+
qmac : 48
15+
qmst : 104
16+
qpst : 104
17+
qqst : 552
18+
qsgm : 48
19+
qsph : 88
20+
qsrs : 232
21+
qsst : 72
22+
qtst : 96
23+
qwac : 176
24+
qwhc : 92
25+
qwhs : 52
26+
wtas : 2344
27+
wtid : 208
28+
qwst : 28
29+
qws0 : 96
30+
qws1 : 72
31+
qws5 : 16
32+
qws8 : 16
33+
qws9 : 16
34+
qwsx : 48
35+
qwas : 28
36+
qwa0 : 56
37+
wq : 2800
38+
wq->maxqdpth: 588
39+
wq->z__001 : 594
40+
qqst->qqstdpth : 80

src/t115/printQESD.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ void printQESD(qesd *p)
3737
ADDU32 ("Blocks_Msg_Data" , p -> qesdsmbd);
3838
ADDU32 ("Blocks_In_Use" , p -> qesdsmbu);
3939
ADDU32 ("Blocks_Free" , p -> qesdsmbf);
40-
ADDU32 ("Messages_In_Dataset", p -> qesdsmmc);
41-
ADDU32 ("Space_Allocated" , p -> qesdsmar);
42-
ADDU32 ("Space_Free" , p -> qesdsmfr);
43-
ADDU32 ("Space_Reallocated", p -> qesdsmrr);
44-
ADDU32 ("Space_Cleaned_Up" , p -> qesdsmcr);
40+
ADDU32 ("Messages_In_Dataset" , p -> qesdsmmc);
41+
ADDU32 ("Allocation_Requests" , p -> qesdsmar);
42+
ADDU32 ("Release_Requests" , p -> qesdsmfr);
43+
ADDU32 ("Reallocation_Requests", p -> qesdsmrr);
44+
ADDU32 ("Cleanup_Requests" , p -> qesdsmcr);
4545
ADDU32 ("Pages_Allocated" , p -> qesdsmap);
4646
ADDU32 ("Pages_Freed" , p -> qesdsmfp);
4747
ADDU32 ("Pages_Reallocated", p -> qesdsmrp);

0 commit comments

Comments
 (0)