summaryrefslogblamecommitdiffstats
path: root/private/os2/client/dllmuxwt.c
blob: bdd6d3e81a0fb29e767ac91da25d2792b942107e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423














































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                    
/*++

Copyright (c) 1989  Microsoft Corporation

Module Name:

    dllmuxwt.c

Abstract:

    This module implements the OS/2 V2.0 MuxWait Semaphore API Calls.

Author:

    Steve Wood (stevewo) 07-Feb-1990

Revision History:

--*/

#define INCL_OS2V20_SEMAPHORES
#define INCL_OS2V20_ERRORS
#include "os2dll.h"


APIRET
Od2AddMuxWait(
    IN POD2_MUXWAIT_SEMAPHORE MuxWait,
    IN PSEMRECORD MuxWaitEntry
    )
{
    POD2_MUXWAIT_RECORD MuxWaitRecord;
    APIRET rc;
    BOOLEAN SharedSem;
    POR2_HANDLE_TABLE SemaphoreTable;
    POD2_SEMAPHORE Semaphore;
    ULONG Handle;
    USHORT i;

    if (MuxWait->CountMuxWaitRecords == DCMW_MAX_SEMRECORDS) {
        return( ERROR_TOO_MANY_SEMAPHORES );
        }

    //
    // Validate the passed OS/2 2.0 semaphore handle and extract the
    // shared/private flag and the index field.  Return an error if not a
    // valid handle.
    //

    rc = Od2ValidateSemaphoreHandle( MuxWaitEntry->hsemCur,
                                     &SharedSem,
                                     &Handle
                                   );
    if (rc != NO_ERROR) {
        return( rc );
        }

    //
    // Get the pointer to either the shared or private semaphore table.
    // Table must exist.  Return an error if it does not.
    //

    SemaphoreTable = Od2GetSemaphoreTable( SharedSem, FALSE );
    if (!SemaphoreTable) {
        return( ERROR_INVALID_HANDLE );
        }

    //
    // Map the semaphore handle into a pointer to the semaphore structure
    // contained in the table.  Return an error if the handle is outside the
    // current limits of the table.  If the mapping is successful then the
    // semaphore table is left locked while we use the pointer.
    //

    Semaphore = (POD2_SEMAPHORE)Or2MapHandle( SemaphoreTable,
                                                       Handle,
                                                       TRUE
                                                     );
    if (Semaphore == NULL) {
        return( ERROR_INVALID_HANDLE );
        }

    //
    // Now see if this semaphore is already in the MuxWait semaphore.
    // Return an error if it is.
    //

    MuxWaitRecord = &MuxWait->MuxWaitRecords[ 0 ];
    for (i=0; i<MuxWait->CountMuxWaitRecords; i++) {
        if (MuxWaitRecord->Semaphore == Semaphore) {
            return( ERROR_DUPLICATE_HANDLE );
            }

        MuxWaitRecord++;
        }


    //
    // Entry in semaphore table exists, so make sure it is not a MuxWait
    // semaphore.  Also make sure it is that same type of semaphore as the
    // first semaphore.  Also make sure if the MuxWait semaphore that all
    // the component semaphores are also shared.  Return an error if any
    // of these conditions are not met.
    //

    if (Semaphore->Type == Od2MuxWaitSem) {
        return( ERROR_WRONG_TYPE );
        }

    if (MuxWait->CountMuxWaitRecords == 0) {
        MuxWait->Type = Semaphore->Type;
        }
    else
    if (Semaphore->Type != MuxWait->Type) {
        return( ERROR_WRONG_TYPE );
        }

    //
    // At this point everything is copasetic, so fill in the next available
    // record in the MuxWait semaphore.
    //

    MuxWaitRecord->SemHandle = MuxWaitEntry->hsemCur;
    MuxWaitRecord->UserKey = MuxWaitEntry->ulUser;
    MuxWaitRecord->Semaphore = Od2ReferenceSemaphore( Semaphore );
    MuxWait->CountMuxWaitRecords++;

    return( NO_ERROR );
}


APIRET
Od2DeleteMuxWait(
    IN POD2_MUXWAIT_SEMAPHORE MuxWait,
    IN ULONG MuxWaitEntryIndex,
    IN HSEM MuxWaitEntrySem OPTIONAL
    )
{
    POD2_MUXWAIT_RECORD MuxWaitRecord;
    USHORT i;

    if (MuxWait->CountMuxWaitRecords == 0) {
        return( ERROR_EMPTY_MUXWAIT );
        }

    MuxWaitRecord = &MuxWait->MuxWaitRecords[ 0 ];
    for (i=0; i<MuxWait->CountMuxWaitRecords; i++) {
        if (ARGUMENT_PRESENT( MuxWaitEntrySem )) {
            if (MuxWaitRecord->SemHandle == MuxWaitEntrySem) {
                break;
                }
            }
        else
        if (i == (USHORT)MuxWaitEntryIndex) {
            break;
            }

        MuxWaitRecord++;
        }

    if (i == MuxWait->CountMuxWaitRecords) {
        return( ERROR_INVALID_HANDLE );
        }

    Od2DereferenceSemaphore( MuxWaitRecord->Semaphore );

    MuxWait->CountMuxWaitRecords -= 1;
    for (; i<MuxWait->CountMuxWaitRecords; i++) {
        *MuxWaitRecord = *(MuxWaitRecord+1);
        MuxWaitRecord++;
        }
    MuxWaitRecord->Semaphore = NULL;
    MuxWaitRecord->SemHandle = 0;
    MuxWaitRecord->UserKey = 0;

    return( NO_ERROR );
}



APIRET
DosCreateMuxWaitSem(
    IN PSZ ObjectName,
    IN OUT PHMUX MuxWaitHandle,
    IN ULONG CountMuxWaitEntries,
    IN SEMRECORD MuxWaitEntries[],
    IN ULONG CreateAttributes
    )
{
    OS2_API_MSG m;
    POS2_DOSCREATEMUXWAITSEM_MSG a = &m.u.DosCreateMuxWaitSem;
    POS2_DOSCLOSEMUXWAITSEM_MSG a1 = &m.u.DosCloseMuxWaitSem;
    POS2_CAPTURE_HEADER CaptureBuffer;
    PSEMRECORD CapturedMuxWaitEntries;
    APIRET rc;
    ULONG i;
    BOOLEAN SharedSem;
    ULONG MuxWaitType;
    POR2_HANDLE_TABLE SemaphoreTable;
    OD2_SEMAPHORE Semaphore;
    POD2_MUXWAIT_SEMAPHORE MuxWait;

    //
    // Validate the simple parameters
    //

    MuxWaitType = CreateAttributes & (DCMW_WAIT_ANY | DCMW_WAIT_ALL);
    if (MuxWaitType == 0 ||
        !(MuxWaitType ^ (DCMW_WAIT_ANY | DCMW_WAIT_ALL)) ||
        CreateAttributes & ~(DC_SEM_SHARED | DCMW_WAIT_ANY | DCMW_WAIT_ALL)
       ) {
        return( ERROR_INVALID_PARAMETER );
        }

    if (CountMuxWaitEntries > DCMW_MAX_SEMRECORDS) {
        return( ERROR_TOO_MANY_SEMAPHORES );
        }

    //
    // probe handle pointer and MuxWaitEntries buffer
    //

    try {
        Od2ProbeForWrite( (PVOID)MuxWaitHandle, sizeof( MuxWaitHandle ), 1 );
        Od2ProbeForRead(MuxWaitEntries,sizeof(SEMRECORD)*CountMuxWaitEntries,1);
    } except( EXCEPTION_EXECUTE_HANDLER ) {
       Od2ExitGP();
        }

    //
    // Capture and validate any semaphore name.
    //

    rc = Od2CaptureObjectName( ObjectName,
                               CANONICALIZE_SEMAPHORE,
                               sizeof( OD2_MUXWAIT_SEMAPHORE ),
                               &CaptureBuffer,
                               &a->ObjectName
                             );
    if (rc != NO_ERROR) {
        return( rc );
        }

    //
    // Determine if a shared or private semaphore.
    //

    if (CaptureBuffer != NULL || CreateAttributes & DC_SEM_SHARED) {
        SharedSem = TRUE;
        }
    else {
        SharedSem = FALSE;
        }

    //
    // Get the pointer to either the shared or private semaphore table,
    // creating it if necessary.  Lock the table for the duration of this
    // API call.
    //

    SemaphoreTable = Od2GetSemaphoreTable( SharedSem, TRUE );
    if (!SemaphoreTable) {
        if (CaptureBuffer != NULL) {
            Od2FreeCaptureBuffer( CaptureBuffer );
            }
        return( ERROR_NOT_ENOUGH_MEMORY );
        }


    //
    // Initialize the Client OS/2 Semaphore Structure
    //

    Semaphore.Type = Od2MuxWaitSem;
    Semaphore.Shared = SharedSem;
    Semaphore.PointerCount = 0;
    Semaphore.OpenCount = 1;
    Semaphore.u.MuxWait = MuxWait = NULL;


    //
    // Mark the fact that we are creating a semaphore handle.
    //

    a->HandleIndex = 0xFFFFFFFF;

    if (SharedSem) {
        //
        // For shared semaphores, we need to pass the create to OS/2 Subsystem
        // so that it can manager adds and deletes.
        //

        //
        // If one or more SEMRECORDs then allocate space for a copy in the
        // CaptureBuffer so we can pass the array to the server.
        //

        if (CountMuxWaitEntries != 0) {
            if (CaptureBuffer == NULL) {
                CaptureBuffer = Od2AllocateCaptureBuffer(
                                    1,
                                    0,
                                    (sizeof( OD2_MUXWAIT_SEMAPHORE ) + 3) & ~3
                                    );
                if (CaptureBuffer == NULL) {
                    return( ERROR_NOT_ENOUGH_MEMORY );
                    }
                }

            Od2AllocateMessagePointer( CaptureBuffer,
                                       CountMuxWaitEntries * sizeof( SEMRECORD ),
                                       (PVOID *)&(a->MuxWaitEntries)
                                     );
            CapturedMuxWaitEntries = a->MuxWaitEntries;
            for (i=0; i<CountMuxWaitEntries; i++) {
                CapturedMuxWaitEntries->ulUser = MuxWaitEntries->ulUser;
                rc = Od2ValidateSemaphoreHandle(
                         MuxWaitEntries->hsemCur,
                         &SharedSem,
                         (PULONG)&CapturedMuxWaitEntries->hsemCur
                         );
                if (rc != NO_ERROR) {
                    break;
                    }
                else
                if (!SharedSem) {
                    rc = ERROR_WRONG_TYPE;
                    break;
                    }
                else {
                    MuxWaitEntries++;
                    CapturedMuxWaitEntries++;
                    }
                }
            }
        else {
            a->MuxWaitEntries = NULL;
            }

        if (rc != NO_ERROR) {
            if (CaptureBuffer != NULL) {
                Od2FreeCaptureBuffer( CaptureBuffer );
                }

            return( rc );
            }


        //
        // Pass the call to the OS/2 subsystem to create the system wide
        // semaphore handle value.
        //

        a->CreateAttributes = CreateAttributes | DC_SEM_SHARED;
        a->CountMuxWaitEntries = CountMuxWaitEntries;

        rc = Od2CallSubsystem( &m,
                               CaptureBuffer,
                               Os2CreateMuxWaitSem,
                               sizeof( *a )
                             );

        //
        // Free any capture buffer, since the subsystem has saved away any
        // semaphore name in its table.
        //

        if (CaptureBuffer != NULL) {
            Od2FreeCaptureBuffer( CaptureBuffer );
            }

        //
        // At this point, the semaphore handle index has been stored in
        // a->HandleIndex by the OS/2 subsystem, if rc is NO_ERROR
        //

        }
    else {
        //
        // Private semaphore.  Allocate the muxwait semaphore structure.
        // Return an error if not enough memory to allocate the structure.
        //

        MuxWait = RtlAllocateHeap( Od2Heap, 0, sizeof( *MuxWait ) );
        if (MuxWait == NULL) {
            return( ERROR_NOT_ENOUGH_MEMORY );
            }

        //
        // Initialize the muxwait semaphore sturcture to contain zero records.
        //

        MuxWait->CountMuxWaitRecords = 0;
        MuxWait->Type = 0;
        MuxWait->WaitAll = (BOOLEAN)((CreateAttributes & DCMW_WAIT_ALL) != 0);
        MuxWait->Reserved = 0;


        //
        // Loop over the input array of SEMRECORDs adding them one at a time
        // to the muxwait semaphore.  Bail out of loop if any errors occur.
        // Lock the semaphore table prior to entering the loop so that things
        // change change out from under us.
        //

        AcquireHandleTableLock( SemaphoreTable );
        for (i=0; i<CountMuxWaitEntries; i++) {
            rc = Od2AddMuxWait( MuxWait,
                                MuxWaitEntries
                              );
            if (rc != NO_ERROR) {
                break;
                }
            else {
                MuxWaitEntries++;
                }
            }

        //
        // All done.  If successful, store the address of the muxwait structure
        // in the semaphore structure.
        //

        if (rc == NO_ERROR) {
            Semaphore.u.MuxWait = MuxWait;
            }
        }

    //
    // Create an entry in the appropriate semaphore table, which will copy
    // the semaphore structure into the table entry and return an index to
    // the entry in a->HandleIndex
    //

    if (rc != NO_ERROR ||
        !Or2CreateHandle( SemaphoreTable,
                                   &a->HandleIndex,
                                   (PVOID)&Semaphore
                                 )
       ) {
        //
        // Error occurred. Cleanup any partial results.
        //

        if (!SharedSem) {
            if (MuxWait != NULL) {
                //
                // For a private muxwait semaphore, deconstruct whatever
                // portion of the muxwait semaphore that was successfully
                // constructed and then free the allocated memory and release
                // the lock we acquired at the beginning of the construction
                // process.
                //

                while (Od2DeleteMuxWait( MuxWait, 0, 0 ) == NO_ERROR) {
                    ;
                    }

                RtlFreeHeap( Od2Heap, 0, MuxWait );
                }

            ReleaseHandleTableLock( SemaphoreTable );
            }
        else
        if (a->HandleIndex != -1) {
            //
            // If this is a shared semaphore that successfully created the
            // handle in the OS/2 subsystem, then call the subsystem to
            // close our reference to this shared OS/2 semaphore.
            //

            a1->HandleIndex = a->HandleIndex;
            Od2CallSubsystem( &m, NULL, Os2CloseMuxWaitSem, sizeof( *a1 ) );
            }


        //
        // Return the error code to the caller.
        //

        if (rc == NO_ERROR) {
            return( ERROR_NOT_ENOUGH_MEMORY );
            }
        else {
            return( rc );
            }
        }


    //
    // Okay to release the lock we held while building the private muxwait
    // semaphore.
    //

    if (!SharedSem) {
        ReleaseHandleTableLock( SemaphoreTable );
        }


    //
    // Success.  Store a valid OS/2 2.0 Semaphore handle in the location
    // specified by the caller and return success to the caller.
    //

    *MuxWaitHandle = Od2ConstructSemaphoreHandle( SharedSem,
                                                  a->HandleIndex
                                                );
    return( NO_ERROR );
}


APIRET
DosOpenMuxWaitSem(
    IN PSZ ObjectName,
    IN OUT PHMUX MuxWaitHandle
    )
{
    OS2_API_MSG m;
    POS2_DOSOPENMUXWAITSEM_MSG a = &m.u.DosOpenMuxWaitSem;
    POS2_DOSCLOSEMUXWAITSEM_MSG a1 = &m.u.DosCloseMuxWaitSem;
    POS2_CAPTURE_HEADER CaptureBuffer;
    POR2_HANDLE_TABLE SemaphoreTable;
    OD2_SEMAPHORE NewSemaphore;
    POD2_SEMAPHORE Semaphore;
    BOOLEAN SharedSem;
    APIRET rc;


    //
    // probe handle pointer
    //

    try {
        Od2ProbeForWrite( (PVOID)MuxWaitHandle, sizeof( MuxWaitHandle ), 1 );
    } except( EXCEPTION_EXECUTE_HANDLER ) {
       Od2ExitGP();
        }

    //
    // Capture and validate any semaphore name.
    //

    rc = Od2CaptureObjectName( ObjectName,
                               CANONICALIZE_SEMAPHORE,
                               0,
                               &CaptureBuffer,
                               &a->ObjectName
                             );
    if (rc != NO_ERROR) {
        return( rc );
        }

    //
    // Determine if opening the semaphore by name or by handle.
    //

    if (CaptureBuffer != NULL) {
        //
        // If a semaphore name was given, then we are opening the semaphore
        // by name, so call the OS/2 Subsystem to do the name lookup.
        //

        a->HandleIndex = 0xFFFFFFFF;
        rc = Od2CallSubsystem( &m,
                               CaptureBuffer,
                               Os2OpenMuxWaitSem,
                               sizeof( *a )
                             );

        //
        // Free any capture buffer, since the name has served its purpose
        // at this point.
        //

        if (CaptureBuffer != NULL) {
            Od2FreeCaptureBuffer( CaptureBuffer );
            RtlZeroMemory( &a->ObjectName, sizeof( a->ObjectName ) );
            }

        //
        // Return if an error was discovered.
        //

        if (rc != NO_ERROR) {
            return( rc );
            }

        //
        // At this point, the semaphore handle index has been stored in
        // a->HandleIndex by the OS/2 subsystem.  Set the shared semaphore
        // flag.
        //

        SharedSem = TRUE;


        //
        // If the caller specified both the name and the handle, make sure
        // the named mapped to the same handle value that they specified.
        //

        if (*MuxWaitHandle != NULL &&
            *MuxWaitHandle != Od2ConstructSemaphoreHandle( SharedSem,
                                                           a->HandleIndex
                                                         )
           ) {
            return( ERROR_INVALID_PARAMETER );
            }
        }
    else {
        //
        // Opening by handle.  Validate the handle and get the shared/private
        // flag.
        //

        rc = Od2ValidateSemaphoreHandle( *MuxWaitHandle,
                                         &SharedSem,
                                         &a->HandleIndex
                                       );

        //
        // Return if invalid handle.
        //

        if (rc != NO_ERROR) {
            return( rc );
            }
        }

    //
    // Get the pointer to either the shared or private semaphore table.
    // Creating is okay if this is a shared semaphore open.  Return the
    // appropriate error code if table does not exist or cant be created.
    //

    SemaphoreTable = Od2GetSemaphoreTable( SharedSem, SharedSem );
    if (!SemaphoreTable) {
        return( SharedSem ? ERROR_NOT_ENOUGH_MEMORY : ERROR_INVALID_HANDLE );
        }

    //
    // Now lock the semaphore table while we figure out what we are doing and
    // do it.
    //

    AcquireHandleTableLock( SemaphoreTable );

    //
    // See if the semaphore handle maps to an allocated entry in the table.
    //

    Semaphore = (POD2_SEMAPHORE)Or2MapHandle( SemaphoreTable,
                                                       a->HandleIndex,
                                                       TRUE
                                                     );
    if (Semaphore == NULL || *(PULONG)Semaphore == 0) {
        //
        // No entry in the table for this semaphore handle.  Error if not
        // a shared semaphore.
        //

        if (!SharedSem) {
            rc = ERROR_INVALID_HANDLE;
            }
        else {

            //
            // This is the first usage of this shared semaphore handle by
            // the calling process, so call the OS/2 subsystem so that it
            // can bump its reference count.
            //

            rc = Od2CallSubsystem( &m,
                                   NULL,
                                   Os2OpenMuxWaitSem,
                                   sizeof( *a )
                                 );
            if (rc == NO_ERROR) {
                //
                // If we succeeded, then the semaphore was not deleted
                // in between the two calls to the subsystem, so add an
                // entry for this handle in the semaphore table.
                //

                NewSemaphore.Type = Od2MuxWaitSem;
                NewSemaphore.Shared = TRUE;
                NewSemaphore.PointerCount = 0;
                NewSemaphore.OpenCount = 1;
                NewSemaphore.u.MuxWait = 0;

                if (!Or2CreateHandle( SemaphoreTable,
                                               &a->HandleIndex,
                                               (PVOID)&NewSemaphore
                                             )
                   ) {
                    //
                    // Unable to create the entry.  Call the OS/2 subsystem
                    // to close our reference to this shared OS/2 semaphore.
                    // Set the appropriate error code.
                    //

                    a1->HandleIndex = a->HandleIndex;
                    Od2CallSubsystem( &m,
                                      NULL,
                                      Os2CloseMuxWaitSem,
                                      sizeof( *a1 )
                                    );
                    rc = ERROR_NOT_ENOUGH_MEMORY;
                    }
                }
            }
        }

    //
    // Entry in semaphore table exists, so make sure it is a MuxWait semaphore.
    // Set the appropriate error code if not.
    //

    else
    if (Semaphore->Type != Od2MuxWaitSem) {
        rc = ERROR_INVALID_HANDLE;
        }

    //
    // Entry in semaphore table is for a MuxWait semaphore, see if the
    // OpenCount is about to overflow, and set the appropriate error code
    // if it is.
    //

    else
    if (Semaphore->OpenCount == 0xFFFF) {
        rc = ERROR_TOO_MANY_OPENS;
        }

    //
    // Everything is okay, so bump the open count in the semaphore table entry.
    //

    else {
        Semaphore->OpenCount++;
        }

    //
    // All done mucking about, so release the semaphore table lock.
    //

    ReleaseHandleTableLock( SemaphoreTable );

    //
    // If no errors, store a valid OS/2 2.0 Semaphore handle in the location
    // specified by the caller and return success to the caller.
    //

    if (rc == NO_ERROR) {
        *MuxWaitHandle = Od2ConstructSemaphoreHandle( SharedSem,
                                                      a->HandleIndex
                                                    );
        }

    //
    // Return an error code to the caller.
    //

    return( rc );
}


APIRET
DosCloseMuxWaitSem(
    IN HMUX MuxWaitHandle
    )
{
    OS2_API_MSG m;
    POS2_DOSCLOSEMUXWAITSEM_MSG a = &m.u.DosCloseMuxWaitSem;
    POD2_MUXWAIT_SEMAPHORE MuxWait;
    POR2_HANDLE_TABLE SemaphoreTable;
    POD2_SEMAPHORE Semaphore;
    BOOLEAN SharedSem;
    APIRET rc;

    //
    // Validate the passed OS/2 2.0 semaphore handle and extract the
    // shared/private flag and the index field.  Return an error if
    // not a valid handle.
    //

    rc = Od2ValidateSemaphoreHandle( MuxWaitHandle,
                                     &SharedSem,
                                     &a->HandleIndex
                                   );
    if (rc != NO_ERROR) {
        return( rc );
        }

    //
    // Get the pointer to either the shared or private semaphore table.
    // Table must exist.  Return an error if it does not.
    //

    SemaphoreTable = Od2GetSemaphoreTable( SharedSem, FALSE );
    if (!SemaphoreTable) {
        return( ERROR_INVALID_HANDLE );
        }

    //
    // Map the semaphore handle into a pointer to the semaphore structure
    // contained in the table.  Return an error if the handle is outside
    // the current limits of the table.  If the mapping is successful then
    // the semaphore table is left locked while we use the pointer.
    //

    Semaphore = (POD2_SEMAPHORE)Or2MapHandle( SemaphoreTable,
                                                       a->HandleIndex,
                                                       FALSE
                                                     );
    if (Semaphore == NULL) {
        return( ERROR_INVALID_HANDLE );
        }

    //
    // Entry in semaphore table exists, so make sure it is a MuxWait semaphore.
    // Return an error if not, after unlock the table first.
    //

    if (Semaphore->Type != Od2MuxWaitSem) {
        ReleaseHandleTableLock( SemaphoreTable );
        return( ERROR_INVALID_HANDLE );
        }

    //
    // Entry in semaphore table is for a MuxWait semaphore, so decrement the
    // OpenCount and see if it has gone to zero.
    //

    if (--Semaphore->OpenCount == 0) {
        //
        // OpenCount is now zero, so we can really close the semaphore
        // and delete the entry in the semaphore table.
        //

        //
        // First make sure that no thread in this process is waiting on this
        // muxwait semaphore.  If there is one waiting on it, increment the
        // open count and return an error.
        //

        if (Od2SearchForWaitingThread( Semaphore )) {
            Semaphore->OpenCount++;
            ReleaseHandleTableLock( SemaphoreTable );
            rc = ERROR_SEM_BUSY;
            }
        else {
            //
            // Okay to really close this muxwait semaphore.  First destroy
            // the handle, which will unlock the handle table.
            //

            MuxWait = Semaphore->u.MuxWait;
            Or2DestroyHandle( SemaphoreTable, a->HandleIndex );

            if (!SharedSem) {
                //
                // If not a shared semaphore, free the muxwait structure
                // associated with this muxwait semaphore.
                //

                if (MuxWait != NULL) {
                    while (Od2DeleteMuxWait( MuxWait, 0, 0 ) == NO_ERROR) {
                        ;
                        }

                    RtlFreeHeap( Od2Heap, 0, MuxWait );
                    }
                }
            else {

                //
                // If this is a shared semaphore, call the subsystem so that it
                // can decrement its open count, as this process is no longer
                // using the shared semaphore handle.
                //

                rc = Od2CallSubsystem( &m,
                                       NULL,
                                       Os2CloseMuxWaitSem,
                                       sizeof( *a )
                                     );
                }
            }
        }
    else {
        //
        // OpenCount is still non-zero, so just release the semaphore table
        // lock.
        //

        ReleaseHandleTableLock( SemaphoreTable );
        }

    //
    // Return any error code to the caller.
    //

    return( rc );
}


APIRET
DosWaitMuxWaitSem(
    IN HMUX MuxWaitHandle,
    IN ULONG Timeout,
    OUT PULONG UserValue
    )
{
    NTSTATUS Status;
    OS2_API_MSG m;
    POS2_DOSWAITMUXWAITSEM_MSG a = &m.u.DosWaitMuxWaitSem;
    POD2_MUXWAIT_SEMAPHORE MuxWait;
    POD2_MUXWAIT_RECORD MuxWaitRecord;
    POR2_HANDLE_TABLE SemaphoreTable;
    POD2_SEMAPHORE Semaphore;
    OD2_SEMAPHORE_TYPE MuxWaitType;
    BOOLEAN SharedSem;
    APIRET rc;
    USHORT i;
    HANDLE NtHandles[ MAXIMUM_WAIT_OBJECTS ];
    PLARGE_INTEGER NtTimeout;

    try {
        *UserValue = 0;
        }
    except( EXCEPTION_EXECUTE_HANDLER ) {
       Od2ExitGP();
        }

    //
    // Capture the timeout value and convert it into an NT timeout value.
    //

    NtTimeout = Od2CaptureTimeout( Timeout, (PLARGE_INTEGER)&a->Timeout );


    //
    // Validate the passed OS/2 2.0 semaphore handle and extract the
    // shared/private flag and the index field.  Return an error if
    // not a valid handle.
    //
retry:
    rc = Od2ValidateSemaphoreHandle( MuxWaitHandle,
                                     &SharedSem,
                                     &a->HandleIndex
                                   );
    if (rc != NO_ERROR) {
        return( rc );
        }

    //
    // Get the pointer to either the shared or private semaphore table.
    // Table must exist.  Return an error if it does not.
    //

    SemaphoreTable = Od2GetSemaphoreTable( SharedSem, FALSE );
    if (!SemaphoreTable) {
        return( ERROR_INVALID_HANDLE );
        }

    //
    // Map the semaphore handle into a pointer to the semaphore structure
    // contained in the table.  Return an error if the handle is outside
    // the current limits of the table.  If the mapping is successful then
    // the semaphore table is left locked while we use the pointer.
    //

    Semaphore = (POD2_SEMAPHORE)Or2MapHandle( SemaphoreTable,
                                                       a->HandleIndex,
                                                       FALSE
                                                     );
    if (Semaphore == NULL) {
        return( ERROR_INVALID_HANDLE );
        }

    //
    // Entry in semaphore table exists, so make sure it is a MuxWait semaphore.
    // Return an error if not, after unlock the table first.
    //

    if (Semaphore->Type != Od2MuxWaitSem) {
        ReleaseHandleTableLock( SemaphoreTable );
        return( ERROR_INVALID_HANDLE );
        }

    if (SharedSem) {
        Od2ThreadWaitingOnSemaphore( SemaphoreTable, Semaphore, TRUE );

        rc = Od2CallSubsystem( &m,
                               NULL,
                               Os2WaitMuxWaitSem,
                               sizeof( *a )
                             );

        Od2ThreadWaitingOnSemaphore( SemaphoreTable, Semaphore, FALSE );
        }
    else {
        MuxWait = Semaphore->u.MuxWait;
        if (MuxWait->CountMuxWaitRecords == 0) {
            ReleaseHandleTableLock( SemaphoreTable );
            return( ERROR_EMPTY_MUXWAIT );
            }

        MuxWaitRecord = &MuxWait->MuxWaitRecords[ 0 ];
        MuxWaitType = MuxWait->Type;
        for (i=0; i<MuxWait->CountMuxWaitRecords; i++) {
            if (MuxWaitType == Od2EventSem) {
                NtHandles[ i ] = MuxWaitRecord->Semaphore->u.EventHandle;
                }
            else
            if (MuxWaitType == Od2MutexSem) {
                NtHandles[ i ] = MuxWaitRecord->Semaphore->u.Mutex->MutantHandle;
                }
            else {
                ReleaseHandleTableLock( SemaphoreTable );
                return( ERROR_INVALID_HANDLE );
                }

            MuxWaitRecord++;
            }

        Od2ThreadWaitingOnSemaphore( SemaphoreTable, Semaphore, TRUE );

        Status = NtWaitForMultipleObjects(
                     (CHAR)i,
                     NtHandles,
                     MuxWait->WaitAll ? WaitAll : WaitAny,
                     TRUE,
                     NtTimeout
                     );
        if (NT_SUCCESS( Status )) {
            if (Status <= STATUS_WAIT_63) {
                *UserValue = MuxWait->MuxWaitRecords[ (ULONG)(Status & 0x3F)
                                                    ].UserKey;
                rc = NO_ERROR;
                }
            else
            if (Status == STATUS_ABANDONED) {
                rc = ERROR_SEM_OWNER_DIED;
                }
            else
            if (Status == STATUS_TIMEOUT) {
                rc = ERROR_TIMEOUT;
                }
            else
            if (Status == STATUS_USER_APC || Status == STATUS_ALERTED) {
                rc = ERROR_SS_RETRY;
                }
            else {
                rc = Or2MapStatus( Status );
                }
            }
        else {
            rc = Or2MapStatus( Status );
            }

        Od2ThreadWaitingOnSemaphore( SemaphoreTable, Semaphore, FALSE );

        if (rc == ERROR_SS_RETRY) {
            goto retry;
            }
        }

    return( rc );
}


APIRET
DosAddMuxWaitSem(
    IN HMUX MuxWaitHandle,
    IN PSEMRECORD MuxWaitEntry
    )
{
    OS2_API_MSG m, m1;
    POS2_DOSADDMUXWAITSEM_MSG a = &m.u.DosAddMuxWaitSem;
    POS2_ALERTMUXWAITER_MSG a1 = &m1.u.AlertMuxWaiter;
    POR2_HANDLE_TABLE SemaphoreTable;
    POD2_SEMAPHORE Semaphore;
    POD2_THREAD Thread;
    BOOLEAN SharedSem;
    APIRET rc;


    //
    // probe MuxWaitEntry buffer
    //

    try {
        Od2ProbeForRead(MuxWaitEntry,sizeof(SEMRECORD),1);
    } except( EXCEPTION_EXECUTE_HANDLER ) {
       Od2ExitGP();
        }

    //
    // Validate the passed OS/2 2.0 semaphore handle and extract the
    // shared/private flag and the index field.  Return an error if
    // not a valid handle.
    //

    rc = Od2ValidateSemaphoreHandle( MuxWaitHandle,
                                     &SharedSem,
                                     &a->HandleIndex
                                   );
    if (rc != NO_ERROR) {
        return( rc );
        }

    //
    // Get the pointer to either the shared or private semaphore table.
    // Table must exist.  Return an error if it does not.
    //

    SemaphoreTable = Od2GetSemaphoreTable( SharedSem, FALSE );
    if (!SemaphoreTable) {
        return( ERROR_INVALID_HANDLE );
        }

    //
    // Map the semaphore handle into a pointer to the semaphore structure
    // contained in the table.  Return an error if the handle is outside
    // the current limits of the table.  If the mapping is successful then
    // the semaphore table is left locked while we use the pointer.
    //

    Semaphore = (POD2_SEMAPHORE)Or2MapHandle( SemaphoreTable,
                                                       a->HandleIndex,
                                                       FALSE
                                                     );
    if (Semaphore == NULL) {
        return( ERROR_INVALID_HANDLE );
        }

    //
    // Entry in semaphore table exists, so make sure it is a MuxWait semaphore.
    // Return an error if not, after unlock the table first.
    //

    if (Semaphore->Type != Od2MuxWaitSem) {
        ReleaseHandleTableLock( SemaphoreTable );
        return( ERROR_INVALID_HANDLE );
        }

    if (SharedSem) {
        a->MuxWaitEntry.ulUser = MuxWaitEntry->ulUser;
        rc = Od2ValidateSemaphoreHandle( MuxWaitEntry->hsemCur,
                                         &SharedSem,
                                         (PULONG)&a->MuxWaitEntry.hsemCur
                                       );
        if (rc == NO_ERROR && !SharedSem) {
            rc = ERROR_WRONG_TYPE;
            }

        if (rc == NO_ERROR) {
            rc = Od2CallSubsystem( &m,
                                   NULL,
                                   Os2AddMuxWaitSem,
                                   sizeof( *a )
                                 );
            }
        }
    else {
        rc = Od2AddMuxWait( Semaphore->u.MuxWait, MuxWaitEntry );
        if (rc == NO_ERROR &&
            (Thread = Od2SearchForWaitingThread( Semaphore ))
           ) {
            rc = Od2CallSubsystem( &m1,
                                   NULL,
                                   Oi2AlertMuxWaiter,
                                   sizeof( *a1 )
                                 );
            }
        }

    ReleaseHandleTableLock( SemaphoreTable );

    return( rc );
}


APIRET
DosDeleteMuxWaitSem(
    IN HMUX MuxWaitHandle,
    IN HSEM MuxWaitEntrySem
    )
{
    OS2_API_MSG m;
    POS2_DOSDELETEMUXWAITSEM_MSG a = &m.u.DosDeleteMuxWaitSem;
    POR2_HANDLE_TABLE SemaphoreTable;
    POD2_SEMAPHORE Semaphore;
    BOOLEAN SharedSem;
    APIRET rc;


    //
    // Validate the passed OS/2 2.0 semaphore handle and extract the
    // shared/private flag and the index field.  Return an error if
    // not a valid handle.
    //

    rc = Od2ValidateSemaphoreHandle( MuxWaitHandle,
                                     &SharedSem,
                                     &a->HandleIndex
                                   );
    if (rc != NO_ERROR) {
        return( rc );
        }

    //
    // Get the pointer to either the shared or private semaphore table.
    // Table must exist.  Return an error if it does not.
    //

    SemaphoreTable = Od2GetSemaphoreTable( SharedSem, FALSE );
    if (!SemaphoreTable) {
        return( ERROR_INVALID_HANDLE );
        }

    //
    // Map the semaphore handle into a pointer to the semaphore structure
    // contained in the table.  Return an error if the handle is outside
    // the current limits of the table.  If the mapping is successful then
    // the semaphore table is left locked while we use the pointer.
    //

    Semaphore = (POD2_SEMAPHORE)Or2MapHandle( SemaphoreTable,
                                                       a->HandleIndex,
                                                       FALSE
                                                     );
    if (Semaphore == NULL) {
        return( ERROR_INVALID_HANDLE );
        }

    //
    // Entry in semaphore table exists, so make sure it is a MuxWait semaphore.
    // Return an error if not, after unlock the table first.
    //

    if (Semaphore->Type != Od2MuxWaitSem) {
        ReleaseHandleTableLock( SemaphoreTable );
        return( ERROR_INVALID_HANDLE );
        }

    if (SharedSem) {
        rc = Od2ValidateSemaphoreHandle( MuxWaitEntrySem,
                                         &SharedSem,
                                         &a->EntryHandleIndex
                                       );
        if (!SharedSem) {
            rc = ERROR_INVALID_HANDLE;
            }

        if (rc == NO_ERROR) {
            rc = Od2CallSubsystem( &m,
                                   NULL,
                                   Os2DeleteMuxWaitSem,
                                   sizeof( *a )
                                 );
            }
        }
    else {
        rc = Od2DeleteMuxWait( Semaphore->u.MuxWait, 0, MuxWaitEntrySem );
        }

    ReleaseHandleTableLock( SemaphoreTable );
    return( rc );
}


APIRET
DosQueryMuxWaitSem(
    IN HMUX MuxWaitHandle,
    IN OUT PULONG CountMuxWaitEntries,
    OUT SEMRECORD MuxWaitEntries[],
    OUT PULONG CreateAttributes
    )
{
    OS2_API_MSG m;
    POS2_DOSQUERYMUXWAITSEM_MSG a = &m.u.DosQueryMuxWaitSem;
    POS2_CAPTURE_HEADER CaptureBuffer;
    PSEMRECORD CapturedMuxWaitEntries;
    POD2_MUXWAIT_SEMAPHORE MuxWait;
    POD2_MUXWAIT_RECORD MuxWaitRecord;
    POR2_HANDLE_TABLE SemaphoreTable;
    POD2_SEMAPHORE Semaphore;
    BOOLEAN SharedSem;
    APIRET rc;
    USHORT i;

    //
    // probe CreateAttributes, CountMuxWaitEntries, and MuxWaitEntries buffer
    //

    try {
        Od2ProbeForWrite( CountMuxWaitEntries, sizeof( CountMuxWaitEntries ), 1 );
        Od2ProbeForWrite( CreateAttributes, sizeof( CreateAttributes ), 1 );
        Od2ProbeForWrite(MuxWaitEntries,*CountMuxWaitEntries * sizeof(SEMRECORD),1);
    } except( EXCEPTION_EXECUTE_HANDLER ) {
       Od2ExitGP();
        }

    //
    // Validate the passed OS/2 2.0 semaphore handle and extract the
    // shared/private flag and the index field.  Return an error if
    // not a valid handle.
    //

    rc = Od2ValidateSemaphoreHandle( MuxWaitHandle,
                                     &SharedSem,
                                     &a->HandleIndex
                                   );
    if (rc != NO_ERROR) {
        return( rc );
        }

    //
    // Get the pointer to either the shared or private semaphore table.
    // Table must exist.  Return an error if it does not.
    //

    SemaphoreTable = Od2GetSemaphoreTable( SharedSem, FALSE );
    if (!SemaphoreTable) {
        return( ERROR_INVALID_HANDLE );
        }

    //
    // Map the semaphore handle into a pointer to the semaphore structure
    // contained in the table.  Return an error if the handle is outside
    // the current limits of the table.  If the mapping is successful then
    // the semaphore table is left locked while we use the pointer.
    //

    Semaphore = (POD2_SEMAPHORE)Or2MapHandle( SemaphoreTable,
                                                       a->HandleIndex,
                                                       FALSE
                                                     );
    if (Semaphore == NULL) {
        return( ERROR_INVALID_HANDLE );
        }

    //
    // Entry in semaphore table exists, so make sure it is a MuxWait semaphore.
    // Return an error if not, after unlock the table first.
    //

    if (Semaphore->Type != Od2MuxWaitSem) {
        ReleaseHandleTableLock( SemaphoreTable );
        return( ERROR_INVALID_HANDLE );
        }

    if (SharedSem) {
        a->CountMuxWaitEntries = *CountMuxWaitEntries;
        i = (USHORT)(((a->CountMuxWaitEntries * sizeof( SEMRECORD )) + 3) & ~3);

        CaptureBuffer = Od2AllocateCaptureBuffer( 1, 0, i );
        if (CaptureBuffer == NULL) {
            rc = ERROR_NOT_ENOUGH_MEMORY;
            }
        else {
            Od2AllocateMessagePointer( CaptureBuffer,
                                       i,
                                       &(PVOID)(a->MuxWaitEntries)
                                     );

            rc = Od2CallSubsystem( &m,
                                   CaptureBuffer,
                                   Os2QueryMuxWaitSem,
                                   sizeof( *a )
                                 );
            if (rc == NO_ERROR) {
                *CreateAttributes = a->CreateAttributes;
                *CountMuxWaitEntries = a->CountMuxWaitEntries;
                CapturedMuxWaitEntries = a->MuxWaitEntries;
                for (i=0; i<(USHORT)a->CountMuxWaitEntries; i++) {
                    MuxWaitEntries->hsemCur =
                        Od2ConstructSemaphoreHandle(
                            TRUE, (ULONG)CapturedMuxWaitEntries->hsemCur
                            );
                    MuxWaitEntries->ulUser = CapturedMuxWaitEntries->ulUser;
                    MuxWaitEntries++;
                    CapturedMuxWaitEntries++;
                    }
                }
            else
            if (rc == ERROR_PARAM_TOO_SMALL) {
                *CountMuxWaitEntries = a->CountMuxWaitEntries;
                }

            Od2FreeCaptureBuffer( CaptureBuffer );
            }
        }
    else {
        MuxWait = Semaphore->u.MuxWait;
        if (*CountMuxWaitEntries < (ULONG)MuxWait->CountMuxWaitRecords) {
            rc = ERROR_PARAM_TOO_SMALL;
            }
        else {
            *CreateAttributes =
                (Semaphore->Shared ? DC_SEM_SHARED : 0) |
                (MuxWait->WaitAll ? DCMW_WAIT_ALL : DCMW_WAIT_ANY);
            MuxWaitRecord = &MuxWait->MuxWaitRecords[ 0 ];
            for (i=0; i<MuxWait->CountMuxWaitRecords; i++) {
                MuxWaitEntries->hsemCur = MuxWaitRecord->SemHandle;
                MuxWaitEntries->ulUser = MuxWaitRecord->UserKey;
                MuxWaitEntries++;
                MuxWaitRecord++;
                }

            rc = NO_ERROR;
            }

        *CountMuxWaitEntries = (ULONG)MuxWait->CountMuxWaitRecords;
        }

    ReleaseHandleTableLock( SemaphoreTable );

    return( rc );
}