summaryrefslogtreecommitdiffstats
path: root/REFLECTION
blob: 2cf98dc019a0eb57b0beb49e44e46ea4b245b3ff (plain)
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
Extension [ <persistent> extension #130 pthreads version 3.2.0 ] {

  - Constants [9] {
    Constant [ integer PTHREADS_INHERIT_ALL ] { 1118481 }
    Constant [ integer PTHREADS_INHERIT_NONE ] { 0 }
    Constant [ integer PTHREADS_INHERIT_INI ] { 1 }
    Constant [ integer PTHREADS_INHERIT_CONSTANTS ] { 16 }
    Constant [ integer PTHREADS_INHERIT_CLASSES ] { 4096 }
    Constant [ integer PTHREADS_INHERIT_FUNCTIONS ] { 256 }
    Constant [ integer PTHREADS_INHERIT_INCLUDES ] { 65536 }
    Constant [ integer PTHREADS_INHERIT_COMMENTS ] { 1048576 }
    Constant [ integer PTHREADS_ALLOW_HEADERS ] { 268435456 }
  }

  - Classes [7] {
    Interface [ <internal:pthreads> interface Collectable ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [0] {
      }

      - Methods [1] {
        Method [ <internal:pthreads> abstract public method isGarbage ] {

          - Parameters [0] {
          }
          - Return [ boolean ]
        }
      }
    }

    Class [ <internal:pthreads> <iterateable> class Threaded implements Traversable, Collectable ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [1] {
        Method [ <internal:pthreads> static public method extend ] {

          - Parameters [1] {
            Parameter #0 [ <required> $class ]
          }
        }
      }

      - Properties [0] {
      }

      - Methods [16] {
        Method [ <internal:pthreads> public method run ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method wait ] {

          - Parameters [1] {
            Parameter #0 [ <optional> integer $timeout ]
          }
        }

        Method [ <internal:pthreads> public method notify ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method notifyOne ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method isRunning ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method isTerminated ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method synchronized ] {

          - Parameters [1] {
            Parameter #0 [ <required> $function ]
          }
        }

        Method [ <internal:pthreads> public method merge ] {

          - Parameters [2] {
            Parameter #0 [ <required> $from ]
            Parameter #1 [ <optional> $overwrite ]
          }
        }

        Method [ <internal:pthreads> public method shift ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method chunk ] {

          - Parameters [2] {
            Parameter #0 [ <required> $size ]
            Parameter #1 [ <optional> $preserve ]
          }
        }

        Method [ <internal:pthreads> public method pop ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method count ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, prototype Collectable> public method isGarbage ] {

          - Parameters [0] {
          }
          - Return [ boolean ]
        }

        Method [ <internal:pthreads> public method addRef ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method delRef ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method getRefCount ] {

          - Parameters [0] {
          }
        }
      }
    }

    Class [ <internal:pthreads> <iterateable> class Volatile extends Threaded implements Collectable, Traversable ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [1] {
        Method [ <internal:pthreads, inherits Threaded> static public method extend ] {

          - Parameters [1] {
            Parameter #0 [ <required> $class ]
          }
        }
      }

      - Properties [0] {
      }

      - Methods [16] {
        Method [ <internal:pthreads, inherits Threaded> public method run ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method wait ] {

          - Parameters [1] {
            Parameter #0 [ <optional> integer $timeout ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method notify ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method notifyOne ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method isRunning ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method isTerminated ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method synchronized ] {

          - Parameters [1] {
            Parameter #0 [ <required> $function ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method merge ] {

          - Parameters [2] {
            Parameter #0 [ <required> $from ]
            Parameter #1 [ <optional> $overwrite ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method shift ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method chunk ] {

          - Parameters [2] {
            Parameter #0 [ <required> $size ]
            Parameter #1 [ <optional> $preserve ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method pop ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method count ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded, prototype Collectable> public method isGarbage ] {

          - Parameters [0] {
          }
          - Return [ boolean ]
        }

        Method [ <internal:pthreads, inherits Threaded> public method addRef ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method delRef ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method getRefCount ] {

          - Parameters [0] {
          }
        }
      }
    }

    Class [ <internal:pthreads> <iterateable> class Thread extends Threaded implements Collectable, Traversable ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [3] {
        Method [ <internal:pthreads> static public method getCurrentThreadId ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> static public method getCurrentThread ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> static public method extend ] {

          - Parameters [1] {
            Parameter #0 [ <required> $class ]
          }
        }
      }

      - Properties [0] {
      }

      - Methods [22] {
        Method [ <internal:pthreads> public method start ] {

          - Parameters [1] {
            Parameter #0 [ <optional> integer $options ]
          }
        }

        Method [ <internal:pthreads> public method join ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method isStarted ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method isJoined ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method getThreadId ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method getCreatorId ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method run ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method wait ] {

          - Parameters [1] {
            Parameter #0 [ <optional> integer $timeout ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method notify ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method notifyOne ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method isRunning ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method isTerminated ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method synchronized ] {

          - Parameters [1] {
            Parameter #0 [ <required> $function ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method merge ] {

          - Parameters [2] {
            Parameter #0 [ <required> $from ]
            Parameter #1 [ <optional> $overwrite ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method shift ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method chunk ] {

          - Parameters [2] {
            Parameter #0 [ <required> $size ]
            Parameter #1 [ <optional> $preserve ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method pop ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method count ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded, prototype Collectable> public method isGarbage ] {

          - Parameters [0] {
          }
          - Return [ boolean ]
        }

        Method [ <internal:pthreads, inherits Threaded> public method addRef ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method delRef ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method getRefCount ] {

          - Parameters [0] {
          }
        }
      }
    }

    Class [ <internal:pthreads> <iterateable> class Worker extends Thread implements Traversable, Collectable ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [3] {
        Method [ <internal:pthreads, inherits Thread> static public method getCurrentThreadId ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Thread> static public method getCurrentThread ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> static public method extend ] {

          - Parameters [1] {
            Parameter #0 [ <required> $class ]
          }
        }
      }

      - Properties [0] {
      }

      - Methods [29] {
        Method [ <internal:pthreads> public method shutdown ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method stack ] {

          - Parameters [1] {
            Parameter #0 [ <required> Threaded $work ]
          }
        }

        Method [ <internal:pthreads> public method unstack ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method getStacked ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method isShutdown ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method collect ] {

          - Parameters [1] {
            Parameter #0 [ <optional> callable $function ]
          }
        }

        Method [ <internal:pthreads> public method collector ] {

          - Parameters [1] {
            Parameter #0 [ <required> Collectable $collectable ]
          }
        }

        Method [ <internal:pthreads, inherits Thread> public method start ] {

          - Parameters [1] {
            Parameter #0 [ <optional> integer $options ]
          }
        }

        Method [ <internal:pthreads, inherits Thread> public method join ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Thread> public method isStarted ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Thread> public method isJoined ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Thread> public method getThreadId ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Thread> public method getCreatorId ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method run ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method wait ] {

          - Parameters [1] {
            Parameter #0 [ <optional> integer $timeout ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method notify ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method notifyOne ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method isRunning ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method isTerminated ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method synchronized ] {

          - Parameters [1] {
            Parameter #0 [ <required> $function ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method merge ] {

          - Parameters [2] {
            Parameter #0 [ <required> $from ]
            Parameter #1 [ <optional> $overwrite ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method shift ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method chunk ] {

          - Parameters [2] {
            Parameter #0 [ <required> $size ]
            Parameter #1 [ <optional> $preserve ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method pop ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method count ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded, prototype Collectable> public method isGarbage ] {

          - Parameters [0] {
          }
          - Return [ boolean ]
        }

        Method [ <internal:pthreads, inherits Threaded> public method addRef ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method delRef ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method getRefCount ] {

          - Parameters [0] {
          }
        }
      }
    }

    Class [ <internal:pthreads> class Pool ] {

      - Constants [0] {
      }

      - Static properties [0] {
      }

      - Static methods [0] {
      }

      - Properties [5] {
        Property [ <default> protected $size ]
        Property [ <default> protected $class ]
        Property [ <default> protected $workers ]
        Property [ <default> protected $ctor ]
        Property [ <default> protected $last ]
      }

      - Methods [6] {
        Method [ <internal:pthreads, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <required> integer $size ]
            Parameter #1 [ <optional> string $class ]
            Parameter #2 [ <optional> array $ctor ]
          }
        }

        Method [ <internal:pthreads> public method resize ] {

          - Parameters [1] {
            Parameter #0 [ <required> integer $size ]
          }
        }

        Method [ <internal:pthreads> public method submit ] {

          - Parameters [1] {
            Parameter #0 [ <required> Threaded $task ]
          }
        }

        Method [ <internal:pthreads> public method submitTo ] {

          - Parameters [2] {
            Parameter #0 [ <required> integer $worker ]
            Parameter #1 [ <required> Threaded $task ]
          }
        }

        Method [ <internal:pthreads> public method collect ] {

          - Parameters [1] {
            Parameter #0 [ <optional> callable $collector ]
          }
        }

        Method [ <internal:pthreads> public method shutdown ] {

          - Parameters [0] {
          }
        }
      }
    }

    Class [ <internal:pthreads> <iterateable> class Socket extends Threaded implements Collectable, Traversable ] {

      - Constants [146] {
        Constant [ public integer AF_UNIX ] { 1 }
        Constant [ public integer AF_INET ] { 2 }
        Constant [ public integer AF_INET6 ] { 10 }
        Constant [ public integer SOCK_STREAM ] { 1 }
        Constant [ public integer SOCK_DGRAM ] { 2 }
        Constant [ public integer SOCK_RAW ] { 3 }
        Constant [ public integer SOCK_SEQPACKET ] { 5 }
        Constant [ public integer SOCK_RDM ] { 4 }
        Constant [ public integer SO_DEBUG ] { 1 }
        Constant [ public integer SO_REUSEADDR ] { 2 }
        Constant [ public integer SO_REUSEPORT ] { 15 }
        Constant [ public integer SO_KEEPALIVE ] { 9 }
        Constant [ public integer SO_DONTROUTE ] { 5 }
        Constant [ public integer SO_LINGER ] { 13 }
        Constant [ public integer SO_BROADCAST ] { 6 }
        Constant [ public integer SO_OOBINLINE ] { 10 }
        Constant [ public integer SO_SNDBUF ] { 7 }
        Constant [ public integer SO_RCVBUF ] { 8 }
        Constant [ public integer SO_SNDLOWAT ] { 19 }
        Constant [ public integer SO_RCVLOWAT ] { 18 }
        Constant [ public integer SO_SNDTIMEO ] { 21 }
        Constant [ public integer SO_RCVTIMEO ] { 20 }
        Constant [ public integer SO_TYPE ] { 3 }
        Constant [ public integer SO_ERROR ] { 4 }
        Constant [ public integer SO_BINDTODEVICE ] { 25 }
        Constant [ public integer SOMAXCONN ] { 128 }
        Constant [ public integer TCP_NODELAY ] { 1 }
        Constant [ public integer NORMAL_READ ] { 1 }
        Constant [ public integer BINARY_READ ] { 2 }
        Constant [ public integer SOL_SOCKET ] { 1 }
        Constant [ public integer SOL_TCP ] { 6 }
        Constant [ public integer SOL_UDP ] { 17 }
        Constant [ public integer MSG_OOB ] { 1 }
        Constant [ public integer MSG_WAITALL ] { 256 }
        Constant [ public integer MSG_CTRUNC ] { 8 }
        Constant [ public integer MSG_TRUNC ] { 32 }
        Constant [ public integer MSG_PEEK ] { 2 }
        Constant [ public integer MSG_DONTROUTE ] { 4 }
        Constant [ public integer MSG_EOR ] { 128 }
        Constant [ public integer MSG_CONFIRM ] { 2048 }
        Constant [ public integer MSG_ERRQUEUE ] { 8192 }
        Constant [ public integer MSG_NOSIGNAL ] { 16384 }
        Constant [ public integer MSG_MORE ] { 32768 }
        Constant [ public integer MSG_WAITFORONE ] { 65536 }
        Constant [ public integer MSG_CMSG_CLOEXEC ] { 1073741824 }
        Constant [ public integer EPERM ] { 1 }
        Constant [ public integer ENOENT ] { 2 }
        Constant [ public integer EINTR ] { 4 }
        Constant [ public integer EIO ] { 5 }
        Constant [ public integer ENXIO ] { 6 }
        Constant [ public integer E2BIG ] { 7 }
        Constant [ public integer EBADF ] { 9 }
        Constant [ public integer EAGAIN ] { 11 }
        Constant [ public integer ENOMEM ] { 12 }
        Constant [ public integer EACCES ] { 13 }
        Constant [ public integer EFAULT ] { 14 }
        Constant [ public integer ENOTBLK ] { 15 }
        Constant [ public integer EBUSY ] { 16 }
        Constant [ public integer EEXIST ] { 17 }
        Constant [ public integer EXDEV ] { 18 }
        Constant [ public integer ENODEV ] { 19 }
        Constant [ public integer ENOTDIR ] { 20 }
        Constant [ public integer EISDIR ] { 21 }
        Constant [ public integer EINVAL ] { 22 }
        Constant [ public integer ENFILE ] { 23 }
        Constant [ public integer EMFILE ] { 24 }
        Constant [ public integer ENOTTY ] { 25 }
        Constant [ public integer ENOSPC ] { 28 }
        Constant [ public integer ESPIPE ] { 29 }
        Constant [ public integer EROFS ] { 30 }
        Constant [ public integer EMLINK ] { 31 }
        Constant [ public integer EPIPE ] { 32 }
        Constant [ public integer ENAMETOOLONG ] { 36 }
        Constant [ public integer ENOLCK ] { 37 }
        Constant [ public integer ENOSYS ] { 38 }
        Constant [ public integer ENOTEMPTY ] { 39 }
        Constant [ public integer ELOOP ] { 40 }
        Constant [ public integer EWOULDBLOCK ] { 11 }
        Constant [ public integer ENOMSG ] { 42 }
        Constant [ public integer EIDRM ] { 43 }
        Constant [ public integer ECHRNG ] { 44 }
        Constant [ public integer EL2NSYNC ] { 45 }
        Constant [ public integer EL3HLT ] { 46 }
        Constant [ public integer EL3RST ] { 47 }
        Constant [ public integer ELNRNG ] { 48 }
        Constant [ public integer EUNATCH ] { 49 }
        Constant [ public integer ENOCSI ] { 50 }
        Constant [ public integer EL2HLT ] { 51 }
        Constant [ public integer EBADE ] { 52 }
        Constant [ public integer EBADR ] { 53 }
        Constant [ public integer EXFULL ] { 54 }
        Constant [ public integer ENOANO ] { 55 }
        Constant [ public integer EBADRQC ] { 56 }
        Constant [ public integer EBADSLT ] { 57 }
        Constant [ public integer ENOSTR ] { 60 }
        Constant [ public integer ENODATA ] { 61 }
        Constant [ public integer ETIME ] { 62 }
        Constant [ public integer ENOSR ] { 63 }
        Constant [ public integer ENONET ] { 64 }
        Constant [ public integer EREMOTE ] { 66 }
        Constant [ public integer ENOLINK ] { 67 }
        Constant [ public integer EADV ] { 68 }
        Constant [ public integer ESRMNT ] { 69 }
        Constant [ public integer ECOMM ] { 70 }
        Constant [ public integer EPROTO ] { 71 }
        Constant [ public integer EMULTIHOP ] { 72 }
        Constant [ public integer EBADMSG ] { 74 }
        Constant [ public integer ENOTUNIQ ] { 76 }
        Constant [ public integer EBADFD ] { 77 }
        Constant [ public integer EREMCHG ] { 78 }
        Constant [ public integer ERESTART ] { 85 }
        Constant [ public integer ESTRPIPE ] { 86 }
        Constant [ public integer EUSERS ] { 87 }
        Constant [ public integer ENOTSOCK ] { 88 }
        Constant [ public integer EDESTADDRREQ ] { 89 }
        Constant [ public integer EMSGSIZE ] { 90 }
        Constant [ public integer EPROTOTYPE ] { 91 }
        Constant [ public integer ENOPROTOOPT ] { 92 }
        Constant [ public integer EPROTONOSUPPORT ] { 93 }
        Constant [ public integer ESOCKTNOSUPPORT ] { 94 }
        Constant [ public integer EOPNOTSUPP ] { 95 }
        Constant [ public integer EPFNOSUPPORT ] { 96 }
        Constant [ public integer EAFNOSUPPORT ] { 97 }
        Constant [ public integer EADDRINUSE ] { 98 }
        Constant [ public integer EADDRNOTAVAIL ] { 99 }
        Constant [ public integer ENETDOWN ] { 100 }
        Constant [ public integer ENETUNREACH ] { 101 }
        Constant [ public integer ENETRESET ] { 102 }
        Constant [ public integer ECONNABORTED ] { 103 }
        Constant [ public integer ECONNRESET ] { 104 }
        Constant [ public integer ENOBUFS ] { 105 }
        Constant [ public integer EISCONN ] { 106 }
        Constant [ public integer ENOTCONN ] { 107 }
        Constant [ public integer ESHUTDOWN ] { 108 }
        Constant [ public integer ETOOMANYREFS ] { 109 }
        Constant [ public integer ETIMEDOUT ] { 110 }
        Constant [ public integer ECONNREFUSED ] { 111 }
        Constant [ public integer EHOSTDOWN ] { 112 }
        Constant [ public integer EHOSTUNREACH ] { 113 }
        Constant [ public integer EALREADY ] { 114 }
        Constant [ public integer EINPROGRESS ] { 115 }
        Constant [ public integer EISNAM ] { 120 }
        Constant [ public integer EREMOTEIO ] { 121 }
        Constant [ public integer EDQUOT ] { 122 }
        Constant [ public integer ENOMEDIUM ] { 123 }
        Constant [ public integer EMEDIUMTYPE ] { 124 }
      }

      - Static properties [0] {
      }

      - Static methods [3] {
        Method [ <internal:pthreads> static public method select ] {

          - Parameters [6] {
            Parameter #0 [ <required> array or NULL &$read ]
            Parameter #1 [ <required> array or NULL &$write ]
            Parameter #2 [ <required> array or NULL &$except ]
            Parameter #3 [ <required> integer or NULL $sec ]
            Parameter #4 [ <optional> integer $usec ]
            Parameter #5 [ <optional> integer or NULL &$error ]
          }
        }

        Method [ <internal:pthreads> static public method strerror ] {

          - Parameters [1] {
            Parameter #0 [ <required> integer $error ]
          }
          - Return [ string or NULL ]
        }

        Method [ <internal:pthreads, inherits Threaded> static public method extend ] {

          - Parameters [1] {
            Parameter #0 [ <required> $class ]
          }
        }
      }

      - Properties [0] {
      }

      - Methods [34] {
        Method [ <internal:pthreads, ctor> public method __construct ] {

          - Parameters [3] {
            Parameter #0 [ <required> integer $domain ]
            Parameter #1 [ <required> integer $type ]
            Parameter #2 [ <required> integer $protocol ]
          }
        }

        Method [ <internal:pthreads> public method setOption ] {

          - Parameters [3] {
            Parameter #0 [ <required> integer $level ]
            Parameter #1 [ <required> integer $name ]
            Parameter #2 [ <required> integer $value ]
          }
          - Return [ boolean ]
        }

        Method [ <internal:pthreads> public method getOption ] {

          - Parameters [2] {
            Parameter #0 [ <required> integer $level ]
            Parameter #1 [ <required> integer $name ]
          }
          - Return [ integer ]
        }

        Method [ <internal:pthreads> public method bind ] {

          - Parameters [2] {
            Parameter #0 [ <required> string $host ]
            Parameter #1 [ <optional> integer $port ]
          }
          - Return [ boolean ]
        }

        Method [ <internal:pthreads> public method listen ] {

          - Parameters [1] {
            Parameter #0 [ <required> integer $backlog ]
          }
          - Return [ boolean ]
        }

        Method [ <internal:pthreads> public method accept ] {

          - Parameters [1] {
            Parameter #0 [ <optional> $class ]
          }
        }

        Method [ <internal:pthreads> public method connect ] {

          - Parameters [2] {
            Parameter #0 [ <required> string $host ]
            Parameter #1 [ <optional> integer $port ]
          }
          - Return [ boolean ]
        }

        Method [ <internal:pthreads> public method read ] {

          - Parameters [3] {
            Parameter #0 [ <required> integer $length ]
            Parameter #1 [ <optional> integer $flags ]
            Parameter #2 [ <optional> integer $type ]
          }
        }

        Method [ <internal:pthreads> public method write ] {

          - Parameters [2] {
            Parameter #0 [ <required> string $buffer ]
            Parameter #1 [ <optional> integer $length ]
          }
        }

        Method [ <internal:pthreads> public method send ] {

          - Parameters [3] {
            Parameter #0 [ <required> string $buffer ]
            Parameter #1 [ <required> integer $length ]
            Parameter #2 [ <required> integer $flags ]
          }
        }

        Method [ <internal:pthreads> public method recvfrom ] {

          - Parameters [5] {
            Parameter #0 [ <required> string or NULL &$buffer ]
            Parameter #1 [ <required> integer $length ]
            Parameter #2 [ <required> integer $flags ]
            Parameter #3 [ <required> string or NULL &$name ]
            Parameter #4 [ <optional> integer or NULL &$port ]
          }
        }

        Method [ <internal:pthreads> public method sendto ] {

          - Parameters [5] {
            Parameter #0 [ <required> string $buffer ]
            Parameter #1 [ <required> integer $length ]
            Parameter #2 [ <required> integer $flags ]
            Parameter #3 [ <required> string $addr ]
            Parameter #4 [ <optional> integer $port ]
          }
        }

        Method [ <internal:pthreads> public method setBlocking ] {

          - Parameters [1] {
            Parameter #0 [ <required> boolean $blocking ]
          }
          - Return [ boolean ]
        }

        Method [ <internal:pthreads> public method getPeerName ] {

          - Parameters [1] {
            Parameter #0 [ <optional> boolean $port ]
          }
          - Return [ array ]
        }

        Method [ <internal:pthreads> public method getSockName ] {

          - Parameters [1] {
            Parameter #0 [ <optional> boolean $port ]
          }
          - Return [ array ]
        }

        Method [ <internal:pthreads> public method close ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads> public method getLastError ] {

          - Parameters [1] {
            Parameter #0 [ <optional> boolean $clear ]
          }
        }

        Method [ <internal:pthreads> public method clearError ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method run ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method wait ] {

          - Parameters [1] {
            Parameter #0 [ <optional> integer $timeout ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method notify ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method notifyOne ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method isRunning ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method isTerminated ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method synchronized ] {

          - Parameters [1] {
            Parameter #0 [ <required> $function ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method merge ] {

          - Parameters [2] {
            Parameter #0 [ <required> $from ]
            Parameter #1 [ <optional> $overwrite ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method shift ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method chunk ] {

          - Parameters [2] {
            Parameter #0 [ <required> $size ]
            Parameter #1 [ <optional> $preserve ]
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method pop ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method count ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded, prototype Collectable> public method isGarbage ] {

          - Parameters [0] {
          }
          - Return [ boolean ]
        }

        Method [ <internal:pthreads, inherits Threaded> public method addRef ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method delRef ] {

          - Parameters [0] {
          }
        }

        Method [ <internal:pthreads, inherits Threaded> public method getRefCount ] {

          - Parameters [0] {
          }
        }
      }
    }
  }
}