This file is indexed.

/usr/lib/ocaml/lwt/lwt_pool.annot is in liblwt-ocaml-dev 2.7.1-4build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
"src/core/lwt_pool.ml" 47 1483 1487 "src/core/lwt_pool.ml" 47 1483 1493
type(
  int ->
  ?check:('a -> (bool -> unit) -> unit) ->
  ?validate:('a -> bool Lwt.t) -> (unit -> 'a Lwt.t) -> 'a t
)
ident(
  def create "src/core/lwt_pool.ml" 56 1734 1734 "src/core/lwt_pool.ml" 1 0 -1
)
"src/core/lwt_pool.ml" 47 1483 1494 "src/core/lwt_pool.ml" 47 1483 1495
type(
  int
)
ident(
  def m "src/core/lwt_pool.ml" 47 1483 1496 "src/core/lwt_pool.ml" 54 1694 1732
)
"src/core/lwt_pool.ml" 47 1483 1498 "src/core/lwt_pool.ml" 47 1483 1503
type(
  'a -> (bool -> unit) -> unit
)
"src/core/lwt_pool.ml" 47 1483 1510 "src/core/lwt_pool.ml" 47 1483 1511
type(
  'a
)
"src/core/lwt_pool.ml" 47 1483 1512 "src/core/lwt_pool.ml" 47 1483 1513
type(
  bool -> unit
)
ident(
  def f "src/core/lwt_pool.ml" 47 1483 1517 "src/core/lwt_pool.ml" 47 1483 1523
)
"src/core/lwt_pool.ml" 47 1483 1517 "src/core/lwt_pool.ml" 47 1483 1518
type(
  bool -> unit
)
ident(
  int_ref f "src/core/lwt_pool.ml" 47 1483 1512 "src/core/lwt_pool.ml" 47 1483 1513
)
"src/core/lwt_pool.ml" 47 1483 1519 "src/core/lwt_pool.ml" 47 1483 1523
type(
  bool
)
"src/core/lwt_pool.ml" 47 1483 1517 "src/core/lwt_pool.ml" 47 1483 1523
call(
  tail
)
type(
  unit
)
"src/core/lwt_pool.ml" 47 1483 1506 "src/core/lwt_pool.ml" 47 1483 1523
type(
  'a -> (bool -> unit) -> unit
)
type(
  'a -> (bool -> unit) -> unit
)
ident(
  int_ref *sth* "src/core/lwt_pool.ml" 47 1483 1506 "src/core/lwt_pool.ml" 47 1483 1523
)
type(
  ('a -> (bool -> unit) -> unit) option
)
type(
  ('a -> (bool -> unit) -> unit) option
)
type(
  'a -> (bool -> unit) -> unit
)
"src/core/lwt_pool.ml" 47 1483 1527 "src/core/lwt_pool.ml" 47 1483 1535
type(
  'a -> bool Lwt.t
)
"src/core/lwt_pool.ml" 47 1483 1542 "src/core/lwt_pool.ml" 47 1483 1543
type(
  'a
)
"src/core/lwt_pool.ml" 47 1483 1547 "src/core/lwt_pool.ml" 47 1483 1562
type(
  bool Lwt.t
)
ident(
  ext_ref Lwt.return_true
)
"src/core/lwt_pool.ml" 47 1483 1538 "src/core/lwt_pool.ml" 47 1483 1562
type(
  'a -> bool Lwt.t
)
type(
  'a -> bool Lwt.t
)
ident(
  int_ref *sth* "src/core/lwt_pool.ml" 47 1483 1538 "src/core/lwt_pool.ml" 47 1483 1562
)
type(
  ('a -> bool Lwt.t) option
)
type(
  ('a -> bool Lwt.t) option
)
type(
  'a -> bool Lwt.t
)
"src/core/lwt_pool.ml" 47 1483 1564 "src/core/lwt_pool.ml" 47 1483 1570
type(
  unit -> 'a Lwt.t
)
ident(
  def create "src/core/lwt_pool.ml" 48 1573 1575 "src/core/lwt_pool.ml" 54 1694 1732
)
"src/core/lwt_pool.ml" 48 1573 1583 "src/core/lwt_pool.ml" 48 1573 1584
type(
  int
)
ident(
  int_ref m "src/core/lwt_pool.ml" 47 1483 1494 "src/core/lwt_pool.ml" 47 1483 1495
)
"src/core/lwt_pool.ml" 49 1586 1599 "src/core/lwt_pool.ml" 49 1586 1605
type(
  unit -> 'a Lwt.t
)
ident(
  int_ref create "src/core/lwt_pool.ml" 47 1483 1564 "src/core/lwt_pool.ml" 47 1483 1570
)
"src/core/lwt_pool.ml" 50 1607 1622 "src/core/lwt_pool.ml" 50 1607 1630
type(
  'a -> bool Lwt.t
)
ident(
  int_ref validate "src/core/lwt_pool.ml" 47 1483 1527 "src/core/lwt_pool.ml" 47 1483 1535
)
"src/core/lwt_pool.ml" 51 1632 1644 "src/core/lwt_pool.ml" 51 1632 1649
type(
  'a -> (bool -> unit) -> unit
)
ident(
  int_ref check "src/core/lwt_pool.ml" 47 1483 1498 "src/core/lwt_pool.ml" 47 1483 1503
)
"src/core/lwt_pool.ml" 52 1651 1663 "src/core/lwt_pool.ml" 52 1651 1664
type(
  int
)
"src/core/lwt_pool.ml" 53 1666 1677 "src/core/lwt_pool.ml" 53 1666 1689
type(
  unit -> 'a Queue.t
)
ident(
  ext_ref Queue.create
)
"src/core/lwt_pool.ml" 53 1666 1690 "src/core/lwt_pool.ml" 53 1666 1692
type(
  unit
)
"src/core/lwt_pool.ml" 53 1666 1677 "src/core/lwt_pool.ml" 53 1666 1692
call(
  stack
)
type(
  'a Queue.t
)
"src/core/lwt_pool.ml" 54 1694 1708 "src/core/lwt_pool.ml" 54 1694 1727
type(
  unit -> 'a Lwt.u Lwt_sequence.t
)
ident(
  ext_ref Lwt_sequence.create
)
"src/core/lwt_pool.ml" 54 1694 1728 "src/core/lwt_pool.ml" 54 1694 1730
type(
  unit
)
"src/core/lwt_pool.ml" 54 1694 1708 "src/core/lwt_pool.ml" 54 1694 1730
call(
  stack
)
type(
  'a Lwt.u Lwt_sequence.t
)
"src/core/lwt_pool.ml" 48 1573 1575 "src/core/lwt_pool.ml" 54 1694 1732
type(
  'a t
)
"src/core/lwt_pool.ml" 56 1734 1738 "src/core/lwt_pool.ml" 56 1734 1751
type(
  'a t -> 'a Lwt.t
)
ident(
  def create_member "src/core/lwt_pool.ml" 69 2116 2116 "src/core/lwt_pool.ml" 1 0 -1
)
"src/core/lwt_pool.ml" 56 1734 1752 "src/core/lwt_pool.ml" 56 1734 1753
type(
  'a t
)
ident(
  def p "src/core/lwt_pool.ml" 57 1756 1758 "src/core/lwt_pool.ml" 66 2065 2085
)
"src/core/lwt_pool.ml" 57 1756 1758 "src/core/lwt_pool.ml" 57 1756 1767
type(
  (unit -> 'a Lwt.t) -> (exn -> 'a Lwt.t) -> 'a Lwt.t
)
ident(
  ext_ref Lwt.catch
)
"src/core/lwt_pool.ml" 58 1768 1777 "src/core/lwt_pool.ml" 58 1768 1779
type(
  unit
)
"src/core/lwt_pool.ml" 61 1911 1918 "src/core/lwt_pool.ml" 61 1911 1919
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 56 1734 1752 "src/core/lwt_pool.ml" 56 1734 1753
)
"src/core/lwt_pool.ml" 61 1911 1929 "src/core/lwt_pool.ml" 61 1911 1930
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 56 1734 1752 "src/core/lwt_pool.ml" 56 1734 1753
)
"src/core/lwt_pool.ml" 61 1911 1929 "src/core/lwt_pool.ml" 61 1911 1936
type(
  int
)
"src/core/lwt_pool.ml" 61 1911 1937 "src/core/lwt_pool.ml" 61 1911 1938
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( + )
)
"src/core/lwt_pool.ml" 61 1911 1939 "src/core/lwt_pool.ml" 61 1911 1940
type(
  int
)
"src/core/lwt_pool.ml" 61 1911 1929 "src/core/lwt_pool.ml" 61 1911 1940
type(
  int
)
"src/core/lwt_pool.ml" 61 1911 1918 "src/core/lwt_pool.ml" 61 1911 1940
type(
  unit
)
"src/core/lwt_pool.ml" 62 1942 1949 "src/core/lwt_pool.ml" 62 1942 1950
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 56 1734 1752 "src/core/lwt_pool.ml" 56 1734 1753
)
"src/core/lwt_pool.ml" 62 1942 1949 "src/core/lwt_pool.ml" 62 1942 1957
type(
  unit -> 'a Lwt.t
)
"src/core/lwt_pool.ml" 62 1942 1958 "src/core/lwt_pool.ml" 62 1942 1960
type(
  unit
)
"src/core/lwt_pool.ml" 62 1942 1949 "src/core/lwt_pool.ml" 62 1942 1960
call(
  tail
)
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 61 1911 1918 "src/core/lwt_pool.ml" 62 1942 1960
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 58 1768 1772 "src/core/lwt_pool.ml" 62 1942 1961
type(
  unit -> 'a Lwt.t
)
"src/core/lwt_pool.ml" 63 1962 1971 "src/core/lwt_pool.ml" 63 1962 1974
type(
  exn
)
ident(
  def exn "src/core/lwt_pool.ml" 65 2034 2041 "src/core/lwt_pool.ml" 66 2065 2084
)
"src/core/lwt_pool.ml" 65 2034 2041 "src/core/lwt_pool.ml" 65 2034 2042
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 56 1734 1752 "src/core/lwt_pool.ml" 56 1734 1753
)
"src/core/lwt_pool.ml" 65 2034 2052 "src/core/lwt_pool.ml" 65 2034 2053
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 56 1734 1752 "src/core/lwt_pool.ml" 56 1734 1753
)
"src/core/lwt_pool.ml" 65 2034 2052 "src/core/lwt_pool.ml" 65 2034 2059
type(
  int
)
"src/core/lwt_pool.ml" 65 2034 2060 "src/core/lwt_pool.ml" 65 2034 2061
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"src/core/lwt_pool.ml" 65 2034 2062 "src/core/lwt_pool.ml" 65 2034 2063
type(
  int
)
"src/core/lwt_pool.ml" 65 2034 2052 "src/core/lwt_pool.ml" 65 2034 2063
type(
  int
)
"src/core/lwt_pool.ml" 65 2034 2041 "src/core/lwt_pool.ml" 65 2034 2063
type(
  unit
)
"src/core/lwt_pool.ml" 66 2065 2072 "src/core/lwt_pool.ml" 66 2065 2080
type(
  exn -> 'a Lwt.t
)
ident(
  ext_ref Lwt.fail
)
"src/core/lwt_pool.ml" 66 2065 2081 "src/core/lwt_pool.ml" 66 2065 2084
type(
  exn
)
ident(
  int_ref exn "src/core/lwt_pool.ml" 63 1962 1971 "src/core/lwt_pool.ml" 63 1962 1974
)
"src/core/lwt_pool.ml" 66 2065 2072 "src/core/lwt_pool.ml" 66 2065 2084
call(
  tail
)
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 65 2034 2041 "src/core/lwt_pool.ml" 66 2065 2084
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 63 1962 1966 "src/core/lwt_pool.ml" 66 2065 2085
type(
  exn -> 'a Lwt.t
)
"src/core/lwt_pool.ml" 57 1756 1758 "src/core/lwt_pool.ml" 66 2065 2085
call(
  tail
)
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 69 2116 2120 "src/core/lwt_pool.ml" 69 2116 2127
type(
  'a t -> 'a -> unit
)
ident(
  def release "src/core/lwt_pool.ml" 79 2435 2435 "src/core/lwt_pool.ml" 1 0 -1
)
"src/core/lwt_pool.ml" 69 2116 2128 "src/core/lwt_pool.ml" 69 2116 2129
type(
  'a t
)
ident(
  def p "src/core/lwt_pool.ml" 69 2116 2130 "src/core/lwt_pool.ml" 76 2355 2382
)
"src/core/lwt_pool.ml" 69 2116 2130 "src/core/lwt_pool.ml" 69 2116 2131
type(
  'a
)
ident(
  def c "src/core/lwt_pool.ml" 70 2134 2136 "src/core/lwt_pool.ml" 76 2355 2382
)
"src/core/lwt_pool.ml" 70 2134 2142 "src/core/lwt_pool.ml" 70 2134 2165
type(
  'a Lwt.u Lwt_sequence.t -> 'a Lwt.u option
)
ident(
  ext_ref Lwt_sequence.take_opt_l
)
"src/core/lwt_pool.ml" 70 2134 2166 "src/core/lwt_pool.ml" 70 2134 2167
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 69 2116 2128 "src/core/lwt_pool.ml" 69 2116 2129
)
"src/core/lwt_pool.ml" 70 2134 2166 "src/core/lwt_pool.ml" 70 2134 2175
type(
  'a Lwt.u Lwt_sequence.t
)
"src/core/lwt_pool.ml" 70 2134 2142 "src/core/lwt_pool.ml" 70 2134 2175
call(
  stack
)
type(
  'a Lwt.u option
)
"src/core/lwt_pool.ml" 71 2181 2192 "src/core/lwt_pool.ml" 71 2181 2199
type(
  'a Lwt.u
)
ident(
  def wakener "src/core/lwt_pool.ml" 73 2263 2271 "src/core/lwt_pool.ml" 73 2263 2297
)
"src/core/lwt_pool.ml" 71 2181 2187 "src/core/lwt_pool.ml" 71 2181 2199
type(
  'a Lwt.u option
)
"src/core/lwt_pool.ml" 73 2263 2271 "src/core/lwt_pool.ml" 73 2263 2287
type(
  'a Lwt.u -> 'a -> unit
)
ident(
  ext_ref Lwt.wakeup_later
)
"src/core/lwt_pool.ml" 73 2263 2288 "src/core/lwt_pool.ml" 73 2263 2295
type(
  'a Lwt.u
)
ident(
  int_ref wakener "src/core/lwt_pool.ml" 71 2181 2192 "src/core/lwt_pool.ml" 71 2181 2199
)
"src/core/lwt_pool.ml" 73 2263 2296 "src/core/lwt_pool.ml" 73 2263 2297
type(
  'a
)
ident(
  int_ref c "src/core/lwt_pool.ml" 69 2116 2130 "src/core/lwt_pool.ml" 69 2116 2131
)
"src/core/lwt_pool.ml" 73 2263 2271 "src/core/lwt_pool.ml" 73 2263 2297
call(
  tail
)
type(
  unit
)
"src/core/lwt_pool.ml" 74 2298 2304 "src/core/lwt_pool.ml" 74 2298 2308
type(
  'a Lwt.u option
)
"src/core/lwt_pool.ml" 76 2355 2363 "src/core/lwt_pool.ml" 76 2355 2373
type(
  'a -> 'a Queue.t -> unit
)
ident(
  ext_ref Queue.push
)
"src/core/lwt_pool.ml" 76 2355 2374 "src/core/lwt_pool.ml" 76 2355 2375
type(
  'a
)
ident(
  int_ref c "src/core/lwt_pool.ml" 69 2116 2130 "src/core/lwt_pool.ml" 69 2116 2131
)
"src/core/lwt_pool.ml" 76 2355 2376 "src/core/lwt_pool.ml" 76 2355 2377
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 69 2116 2128 "src/core/lwt_pool.ml" 69 2116 2129
)
"src/core/lwt_pool.ml" 76 2355 2376 "src/core/lwt_pool.ml" 76 2355 2382
type(
  'a Queue.t
)
"src/core/lwt_pool.ml" 76 2355 2363 "src/core/lwt_pool.ml" 76 2355 2382
call(
  tail
)
type(
  unit
)
"src/core/lwt_pool.ml" 70 2134 2136 "src/core/lwt_pool.ml" 76 2355 2382
type(
  unit
)
"src/core/lwt_pool.ml" 79 2435 2439 "src/core/lwt_pool.ml" 79 2435 2455
type(
  'a t -> unit
)
ident(
  def replace_acquired "src/core/lwt_pool.ml" 95 2981 2981 "src/core/lwt_pool.ml" 1 0 -1
)
"src/core/lwt_pool.ml" 79 2435 2456 "src/core/lwt_pool.ml" 79 2435 2457
type(
  'a t
)
ident(
  def p "src/core/lwt_pool.ml" 80 2460 2462 "src/core/lwt_pool.ml" 93 2933 2979
)
"src/core/lwt_pool.ml" 80 2460 2468 "src/core/lwt_pool.ml" 80 2460 2491
type(
  'a Lwt.u Lwt_sequence.t -> 'a Lwt.u option
)
ident(
  ext_ref Lwt_sequence.take_opt_l
)
"src/core/lwt_pool.ml" 80 2460 2492 "src/core/lwt_pool.ml" 80 2460 2493
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 79 2435 2456 "src/core/lwt_pool.ml" 79 2435 2457
)
"src/core/lwt_pool.ml" 80 2460 2492 "src/core/lwt_pool.ml" 80 2460 2501
type(
  'a Lwt.u Lwt_sequence.t
)
"src/core/lwt_pool.ml" 80 2460 2468 "src/core/lwt_pool.ml" 80 2460 2501
call(
  stack
)
type(
  'a Lwt.u option
)
"src/core/lwt_pool.ml" 81 2507 2513 "src/core/lwt_pool.ml" 81 2507 2517
type(
  'a Lwt.u option
)
"src/core/lwt_pool.ml" 84 2637 2645 "src/core/lwt_pool.ml" 84 2637 2646
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 79 2435 2456 "src/core/lwt_pool.ml" 79 2435 2457
)
"src/core/lwt_pool.ml" 84 2637 2656 "src/core/lwt_pool.ml" 84 2637 2657
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 79 2435 2456 "src/core/lwt_pool.ml" 79 2435 2457
)
"src/core/lwt_pool.ml" 84 2637 2656 "src/core/lwt_pool.ml" 84 2637 2663
type(
  int
)
"src/core/lwt_pool.ml" 84 2637 2664 "src/core/lwt_pool.ml" 84 2637 2665
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"src/core/lwt_pool.ml" 84 2637 2666 "src/core/lwt_pool.ml" 84 2637 2667
type(
  int
)
"src/core/lwt_pool.ml" 84 2637 2656 "src/core/lwt_pool.ml" 84 2637 2667
type(
  int
)
"src/core/lwt_pool.ml" 84 2637 2645 "src/core/lwt_pool.ml" 84 2637 2667
type(
  unit
)
"src/core/lwt_pool.ml" 85 2668 2679 "src/core/lwt_pool.ml" 85 2668 2686
type(
  'a Lwt.u
)
ident(
  def wakener "src/core/lwt_pool.ml" 86 2690 2698 "src/core/lwt_pool.ml" 93 2933 2979
)
"src/core/lwt_pool.ml" 85 2668 2674 "src/core/lwt_pool.ml" 85 2668 2686
type(
  'a Lwt.u option
)
"src/core/lwt_pool.ml" 86 2690 2698 "src/core/lwt_pool.ml" 86 2690 2708
type(
  'a Lwt.t -> ('a -> unit) -> (exn -> unit) -> unit
)
ident(
  ext_ref Lwt.on_any
)
"src/core/lwt_pool.ml" 87 2709 2720 "src/core/lwt_pool.ml" 87 2709 2729
type(
  (unit -> 'a Lwt.t) -> unit -> 'a Lwt.t
)
ident(
  ext_ref Lwt.apply
)
"src/core/lwt_pool.ml" 87 2709 2730 "src/core/lwt_pool.ml" 87 2709 2731
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 79 2435 2456 "src/core/lwt_pool.ml" 79 2435 2457
)
"src/core/lwt_pool.ml" 87 2709 2730 "src/core/lwt_pool.ml" 87 2709 2738
type(
  unit -> 'a Lwt.t
)
"src/core/lwt_pool.ml" 87 2709 2739 "src/core/lwt_pool.ml" 87 2709 2741
type(
  unit
)
"src/core/lwt_pool.ml" 87 2709 2719 "src/core/lwt_pool.ml" 87 2709 2742
call(
  stack
)
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 88 2743 2758 "src/core/lwt_pool.ml" 88 2743 2759
type(
  'a
)
ident(
  def c "src/core/lwt_pool.ml" 89 2763 2776 "src/core/lwt_pool.ml" 89 2763 2802
)
"src/core/lwt_pool.ml" 89 2763 2776 "src/core/lwt_pool.ml" 89 2763 2792
type(
  'a Lwt.u -> 'a -> unit
)
ident(
  ext_ref Lwt.wakeup_later
)
"src/core/lwt_pool.ml" 89 2763 2793 "src/core/lwt_pool.ml" 89 2763 2800
type(
  'a Lwt.u
)
ident(
  int_ref wakener "src/core/lwt_pool.ml" 85 2668 2679 "src/core/lwt_pool.ml" 85 2668 2686
)
"src/core/lwt_pool.ml" 89 2763 2801 "src/core/lwt_pool.ml" 89 2763 2802
type(
  'a
)
ident(
  int_ref c "src/core/lwt_pool.ml" 88 2743 2758 "src/core/lwt_pool.ml" 88 2743 2759
)
"src/core/lwt_pool.ml" 89 2763 2776 "src/core/lwt_pool.ml" 89 2763 2802
call(
  tail
)
type(
  unit
)
"src/core/lwt_pool.ml" 88 2743 2753 "src/core/lwt_pool.ml" 89 2763 2803
type(
  'a -> unit
)
"src/core/lwt_pool.ml" 90 2804 2819 "src/core/lwt_pool.ml" 90 2804 2822
type(
  exn
)
ident(
  def exn "src/core/lwt_pool.ml" 92 2896 2909 "src/core/lwt_pool.ml" 93 2933 2978
)
"src/core/lwt_pool.ml" 92 2896 2909 "src/core/lwt_pool.ml" 92 2896 2910
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 79 2435 2456 "src/core/lwt_pool.ml" 79 2435 2457
)
"src/core/lwt_pool.ml" 92 2896 2920 "src/core/lwt_pool.ml" 92 2896 2921
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 79 2435 2456 "src/core/lwt_pool.ml" 79 2435 2457
)
"src/core/lwt_pool.ml" 92 2896 2920 "src/core/lwt_pool.ml" 92 2896 2927
type(
  int
)
"src/core/lwt_pool.ml" 92 2896 2928 "src/core/lwt_pool.ml" 92 2896 2929
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"src/core/lwt_pool.ml" 92 2896 2930 "src/core/lwt_pool.ml" 92 2896 2931
type(
  int
)
"src/core/lwt_pool.ml" 92 2896 2920 "src/core/lwt_pool.ml" 92 2896 2931
type(
  int
)
"src/core/lwt_pool.ml" 92 2896 2909 "src/core/lwt_pool.ml" 92 2896 2931
type(
  unit
)
"src/core/lwt_pool.ml" 93 2933 2946 "src/core/lwt_pool.ml" 93 2933 2966
type(
  'a Lwt.u -> exn -> unit
)
ident(
  ext_ref Lwt.wakeup_later_exn
)
"src/core/lwt_pool.ml" 93 2933 2967 "src/core/lwt_pool.ml" 93 2933 2974
type(
  'a Lwt.u
)
ident(
  int_ref wakener "src/core/lwt_pool.ml" 85 2668 2679 "src/core/lwt_pool.ml" 85 2668 2686
)
"src/core/lwt_pool.ml" 93 2933 2975 "src/core/lwt_pool.ml" 93 2933 2978
type(
  exn
)
ident(
  int_ref exn "src/core/lwt_pool.ml" 90 2804 2819 "src/core/lwt_pool.ml" 90 2804 2822
)
"src/core/lwt_pool.ml" 93 2933 2946 "src/core/lwt_pool.ml" 93 2933 2978
call(
  tail
)
type(
  unit
)
"src/core/lwt_pool.ml" 92 2896 2909 "src/core/lwt_pool.ml" 93 2933 2978
type(
  unit
)
"src/core/lwt_pool.ml" 90 2804 2814 "src/core/lwt_pool.ml" 93 2933 2979
type(
  exn -> unit
)
"src/core/lwt_pool.ml" 86 2690 2698 "src/core/lwt_pool.ml" 93 2933 2979
call(
  tail
)
type(
  unit
)
"src/core/lwt_pool.ml" 80 2460 2462 "src/core/lwt_pool.ml" 93 2933 2979
type(
  unit
)
"src/core/lwt_pool.ml" 95 2981 2985 "src/core/lwt_pool.ml" 95 2981 2992
type(
  'a t -> 'a Lwt.t
)
ident(
  def acquire "src/core/lwt_pool.ml" 124 3823 3823 "src/core/lwt_pool.ml" 1 0 -1
)
"src/core/lwt_pool.ml" 95 2981 2993 "src/core/lwt_pool.ml" 95 2981 2994
type(
  'a t
)
ident(
  def p "src/core/lwt_pool.ml" 96 2997 2999 "src/core/lwt_pool.ml" 121 3757 3777
)
"src/core/lwt_pool.ml" 96 2997 3002 "src/core/lwt_pool.ml" 96 2997 3016
type(
  'a Queue.t -> bool
)
ident(
  ext_ref Queue.is_empty
)
"src/core/lwt_pool.ml" 96 2997 3017 "src/core/lwt_pool.ml" 96 2997 3018
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 95 2981 2993 "src/core/lwt_pool.ml" 95 2981 2994
)
"src/core/lwt_pool.ml" 96 2997 3017 "src/core/lwt_pool.ml" 96 2997 3023
type(
  'a Queue.t
)
"src/core/lwt_pool.ml" 96 2997 3002 "src/core/lwt_pool.ml" 96 2997 3023
call(
  stack
)
type(
  bool
)
"src/core/lwt_pool.ml" 98 3065 3072 "src/core/lwt_pool.ml" 98 3065 3073
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 95 2981 2993 "src/core/lwt_pool.ml" 95 2981 2994
)
"src/core/lwt_pool.ml" 98 3065 3072 "src/core/lwt_pool.ml" 98 3065 3079
type(
  int
)
"src/core/lwt_pool.ml" 98 3065 3080 "src/core/lwt_pool.ml" 98 3065 3081
type(
  int -> int -> bool
)
ident(
  ext_ref Pervasives.( < )
)
"src/core/lwt_pool.ml" 98 3065 3082 "src/core/lwt_pool.ml" 98 3065 3083
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 95 2981 2993 "src/core/lwt_pool.ml" 95 2981 2994
)
"src/core/lwt_pool.ml" 98 3065 3082 "src/core/lwt_pool.ml" 98 3065 3087
type(
  int
)
"src/core/lwt_pool.ml" 98 3065 3072 "src/core/lwt_pool.ml" 98 3065 3087
type(
  bool
)
"src/core/lwt_pool.ml" 100 3142 3148 "src/core/lwt_pool.ml" 100 3142 3161
type(
  'a t -> 'a Lwt.t
)
ident(
  int_ref create_member "src/core/lwt_pool.ml" 56 1734 1738 "src/core/lwt_pool.ml" 56 1734 1751
)
"src/core/lwt_pool.ml" 100 3142 3162 "src/core/lwt_pool.ml" 100 3142 3163
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 95 2981 2993 "src/core/lwt_pool.ml" 95 2981 2994
)
"src/core/lwt_pool.ml" 100 3142 3148 "src/core/lwt_pool.ml" 100 3142 3163
call(
  tail
)
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 103 3221 3227 "src/core/lwt_pool.ml" 103 3221 3241
type(
  'a Lwt.u Lwt_sequence.t -> 'a Lwt.t
)
ident(
  ext_ref Lwt.add_task_r
)
"src/core/lwt_pool.ml" 103 3221 3242 "src/core/lwt_pool.ml" 103 3221 3243
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 95 2981 2993 "src/core/lwt_pool.ml" 95 2981 2994
)
"src/core/lwt_pool.ml" 103 3221 3242 "src/core/lwt_pool.ml" 103 3221 3251
type(
  'a Lwt.u Lwt_sequence.t
)
"src/core/lwt_pool.ml" 103 3221 3227 "src/core/lwt_pool.ml" 103 3221 3251
call(
  tail
)
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 98 3065 3069 "src/core/lwt_pool.ml" 103 3221 3251
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 106 3313 3321 "src/core/lwt_pool.ml" 106 3313 3322
type(
  'a
)
ident(
  def c "src/core/lwt_pool.ml" 107 3346 3350 "src/core/lwt_pool.ml" 121 3757 3777
)
"src/core/lwt_pool.ml" 106 3313 3325 "src/core/lwt_pool.ml" 106 3313 3335
type(
  'a Queue.t -> 'a
)
ident(
  ext_ref Queue.take
)
"src/core/lwt_pool.ml" 106 3313 3336 "src/core/lwt_pool.ml" 106 3313 3337
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 95 2981 2993 "src/core/lwt_pool.ml" 95 2981 2994
)
"src/core/lwt_pool.ml" 106 3313 3336 "src/core/lwt_pool.ml" 106 3313 3342
type(
  'a Queue.t
)
"src/core/lwt_pool.ml" 106 3313 3325 "src/core/lwt_pool.ml" 106 3313 3342
call(
  stack
)
type(
  'a
)
"src/core/lwt_pool.ml" 107 3346 3350 "src/core/lwt_pool.ml" 107 3346 3362
type(
  (unit -> bool Lwt.t) -> (bool -> 'a Lwt.t) -> (exn -> 'a Lwt.t) -> 'a Lwt.t
)
ident(
  ext_ref Lwt.try_bind
)
"src/core/lwt_pool.ml" 108 3363 3374 "src/core/lwt_pool.ml" 108 3363 3376
type(
  unit
)
"src/core/lwt_pool.ml" 109 3380 3389 "src/core/lwt_pool.ml" 109 3380 3390
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 95 2981 2993 "src/core/lwt_pool.ml" 95 2981 2994
)
"src/core/lwt_pool.ml" 109 3380 3389 "src/core/lwt_pool.ml" 109 3380 3399
type(
  'a -> bool Lwt.t
)
"src/core/lwt_pool.ml" 109 3380 3400 "src/core/lwt_pool.ml" 109 3380 3401
type(
  'a
)
ident(
  int_ref c "src/core/lwt_pool.ml" 106 3313 3321 "src/core/lwt_pool.ml" 106 3313 3322
)
"src/core/lwt_pool.ml" 109 3380 3389 "src/core/lwt_pool.ml" 109 3380 3401
call(
  tail
)
type(
  bool Lwt.t
)
"src/core/lwt_pool.ml" 108 3363 3369 "src/core/lwt_pool.ml" 109 3380 3402
type(
  unit -> bool Lwt.t
)
"src/core/lwt_pool.ml" 111 3419 3430 "src/core/lwt_pool.ml" 111 3419 3434
type(
  bool
)
"src/core/lwt_pool.ml" 112 3438 3451 "src/core/lwt_pool.ml" 112 3438 3461
type(
  'a -> 'a Lwt.t
)
ident(
  ext_ref Lwt.return
)
"src/core/lwt_pool.ml" 112 3438 3462 "src/core/lwt_pool.ml" 112 3438 3463
type(
  'a
)
ident(
  int_ref c "src/core/lwt_pool.ml" 106 3313 3321 "src/core/lwt_pool.ml" 106 3313 3322
)
"src/core/lwt_pool.ml" 112 3438 3451 "src/core/lwt_pool.ml" 112 3438 3463
call(
  tail
)
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 113 3464 3475 "src/core/lwt_pool.ml" 113 3464 3480
type(
  bool
)
"src/core/lwt_pool.ml" 115 3544 3557 "src/core/lwt_pool.ml" 115 3544 3558
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 95 2981 2993 "src/core/lwt_pool.ml" 95 2981 2994
)
"src/core/lwt_pool.ml" 115 3544 3568 "src/core/lwt_pool.ml" 115 3544 3569
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 95 2981 2993 "src/core/lwt_pool.ml" 95 2981 2994
)
"src/core/lwt_pool.ml" 115 3544 3568 "src/core/lwt_pool.ml" 115 3544 3575
type(
  int
)
"src/core/lwt_pool.ml" 115 3544 3576 "src/core/lwt_pool.ml" 115 3544 3577
type(
  int -> int -> int
)
ident(
  ext_ref Pervasives.( - )
)
"src/core/lwt_pool.ml" 115 3544 3578 "src/core/lwt_pool.ml" 115 3544 3579
type(
  int
)
"src/core/lwt_pool.ml" 115 3544 3568 "src/core/lwt_pool.ml" 115 3544 3579
type(
  int
)
"src/core/lwt_pool.ml" 115 3544 3557 "src/core/lwt_pool.ml" 115 3544 3579
type(
  unit
)
"src/core/lwt_pool.ml" 116 3581 3594 "src/core/lwt_pool.ml" 116 3581 3607
type(
  'a t -> 'a Lwt.t
)
ident(
  int_ref create_member "src/core/lwt_pool.ml" 56 1734 1738 "src/core/lwt_pool.ml" 56 1734 1751
)
"src/core/lwt_pool.ml" 116 3581 3608 "src/core/lwt_pool.ml" 116 3581 3609
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 95 2981 2993 "src/core/lwt_pool.ml" 95 2981 2994
)
"src/core/lwt_pool.ml" 116 3581 3594 "src/core/lwt_pool.ml" 116 3581 3609
call(
  tail
)
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 115 3544 3557 "src/core/lwt_pool.ml" 116 3581 3609
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 110 3403 3409 "src/core/lwt_pool.ml" 116 3581 3610
type(
  bool -> 'a Lwt.t
)
"src/core/lwt_pool.ml" 117 3611 3622 "src/core/lwt_pool.ml" 117 3611 3623
type(
  exn
)
ident(
  def e "src/core/lwt_pool.ml" 120 3728 3737 "src/core/lwt_pool.ml" 121 3757 3776
)
"src/core/lwt_pool.ml" 120 3728 3737 "src/core/lwt_pool.ml" 120 3728 3753
type(
  'a t -> unit
)
ident(
  int_ref replace_acquired "src/core/lwt_pool.ml" 79 2435 2439 "src/core/lwt_pool.ml" 79 2435 2455
)
"src/core/lwt_pool.ml" 120 3728 3754 "src/core/lwt_pool.ml" 120 3728 3755
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 95 2981 2993 "src/core/lwt_pool.ml" 95 2981 2994
)
"src/core/lwt_pool.ml" 120 3728 3737 "src/core/lwt_pool.ml" 120 3728 3755
call(
  stack
)
type(
  unit
)
"src/core/lwt_pool.ml" 121 3757 3766 "src/core/lwt_pool.ml" 121 3757 3774
type(
  exn -> 'a Lwt.t
)
ident(
  ext_ref Lwt.fail
)
"src/core/lwt_pool.ml" 121 3757 3775 "src/core/lwt_pool.ml" 121 3757 3776
type(
  exn
)
ident(
  int_ref e "src/core/lwt_pool.ml" 117 3611 3622 "src/core/lwt_pool.ml" 117 3611 3623
)
"src/core/lwt_pool.ml" 121 3757 3766 "src/core/lwt_pool.ml" 121 3757 3776
call(
  tail
)
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 120 3728 3737 "src/core/lwt_pool.ml" 121 3757 3776
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 117 3611 3617 "src/core/lwt_pool.ml" 121 3757 3777
type(
  exn -> 'a Lwt.t
)
"src/core/lwt_pool.ml" 107 3346 3350 "src/core/lwt_pool.ml" 121 3757 3777
call(
  tail
)
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 106 3313 3317 "src/core/lwt_pool.ml" 121 3757 3777
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 96 2997 2999 "src/core/lwt_pool.ml" 121 3757 3777
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 124 3823 3827 "src/core/lwt_pool.ml" 124 3823 3842
type(
  'a t -> 'a -> unit
)
ident(
  def checked_release "src/core/lwt_pool.ml" 132 3951 3951 "src/core/lwt_pool.ml" 1 0 -1
)
"src/core/lwt_pool.ml" 124 3823 3843 "src/core/lwt_pool.ml" 124 3823 3844
type(
  'a t
)
ident(
  def p "src/core/lwt_pool.ml" 124 3823 3845 "src/core/lwt_pool.ml" 130 3944 3949
)
"src/core/lwt_pool.ml" 124 3823 3845 "src/core/lwt_pool.ml" 124 3823 3846
type(
  'a
)
ident(
  def c "src/core/lwt_pool.ml" 125 3849 3851 "src/core/lwt_pool.ml" 130 3944 3949
)
"src/core/lwt_pool.ml" 125 3849 3851 "src/core/lwt_pool.ml" 125 3849 3852
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 124 3823 3843 "src/core/lwt_pool.ml" 124 3823 3844
)
"src/core/lwt_pool.ml" 125 3849 3851 "src/core/lwt_pool.ml" 125 3849 3858
type(
  'a -> (bool -> unit) -> unit
)
"src/core/lwt_pool.ml" 125 3849 3859 "src/core/lwt_pool.ml" 125 3849 3860
type(
  'a
)
ident(
  int_ref c "src/core/lwt_pool.ml" 124 3823 3845 "src/core/lwt_pool.ml" 124 3823 3846
)
"src/core/lwt_pool.ml" 125 3849 3871 "src/core/lwt_pool.ml" 125 3849 3873
type(
  bool
)
ident(
  def ok "src/core/lwt_pool.ml" 126 3877 3881 "src/core/lwt_pool.ml" 129 3919 3943
)
"src/core/lwt_pool.ml" 126 3877 3884 "src/core/lwt_pool.ml" 126 3877 3886
type(
  bool
)
ident(
  int_ref ok "src/core/lwt_pool.ml" 125 3849 3871 "src/core/lwt_pool.ml" 125 3849 3873
)
"src/core/lwt_pool.ml" 127 3892 3898 "src/core/lwt_pool.ml" 127 3892 3905
type(
  'a t -> 'a -> unit
)
ident(
  int_ref release "src/core/lwt_pool.ml" 69 2116 2120 "src/core/lwt_pool.ml" 69 2116 2127
)
"src/core/lwt_pool.ml" 127 3892 3906 "src/core/lwt_pool.ml" 127 3892 3907
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 124 3823 3843 "src/core/lwt_pool.ml" 124 3823 3844
)
"src/core/lwt_pool.ml" 127 3892 3908 "src/core/lwt_pool.ml" 127 3892 3909
type(
  'a
)
ident(
  int_ref c "src/core/lwt_pool.ml" 124 3823 3845 "src/core/lwt_pool.ml" 124 3823 3846
)
"src/core/lwt_pool.ml" 127 3892 3898 "src/core/lwt_pool.ml" 127 3892 3909
call(
  tail
)
type(
  unit
)
"src/core/lwt_pool.ml" 129 3919 3925 "src/core/lwt_pool.ml" 129 3919 3941
type(
  'a t -> unit
)
ident(
  int_ref replace_acquired "src/core/lwt_pool.ml" 79 2435 2439 "src/core/lwt_pool.ml" 79 2435 2455
)
"src/core/lwt_pool.ml" 129 3919 3942 "src/core/lwt_pool.ml" 129 3919 3943
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 124 3823 3843 "src/core/lwt_pool.ml" 124 3823 3844
)
"src/core/lwt_pool.ml" 129 3919 3925 "src/core/lwt_pool.ml" 129 3919 3943
call(
  tail
)
type(
  unit
)
"src/core/lwt_pool.ml" 126 3877 3881 "src/core/lwt_pool.ml" 129 3919 3943
type(
  unit
)
"src/core/lwt_pool.ml" 125 3849 3861 "src/core/lwt_pool.ml" 130 3944 3949
type(
  bool -> unit
)
"src/core/lwt_pool.ml" 125 3849 3851 "src/core/lwt_pool.ml" 130 3944 3949
call(
  tail
)
type(
  unit
)
"src/core/lwt_pool.ml" 132 3951 3955 "src/core/lwt_pool.ml" 132 3951 3958
type(
  'a t -> ('a -> 'b Lwt.t) -> 'b Lwt.t
)
ident(
  def use "src/core/lwt_pool.ml" 142 4133 4151 "src/core/lwt_pool.ml" 1 0 -1
)
"src/core/lwt_pool.ml" 132 3951 3959 "src/core/lwt_pool.ml" 132 3951 3960
type(
  'a t
)
ident(
  def p "src/core/lwt_pool.ml" 132 3951 3961 "src/core/lwt_pool.ml" 142 4133 4151
)
"src/core/lwt_pool.ml" 132 3951 3961 "src/core/lwt_pool.ml" 132 3951 3962
type(
  'a -> 'b Lwt.t
)
ident(
  def f "src/core/lwt_pool.ml" 133 3965 3967 "src/core/lwt_pool.ml" 142 4133 4151
)
"src/core/lwt_pool.ml" 133 3965 3967 "src/core/lwt_pool.ml" 133 3965 3974
type(
  'a t -> 'a Lwt.t
)
ident(
  int_ref acquire "src/core/lwt_pool.ml" 95 2981 2985 "src/core/lwt_pool.ml" 95 2981 2992
)
"src/core/lwt_pool.ml" 133 3965 3975 "src/core/lwt_pool.ml" 133 3965 3976
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 132 3951 3959 "src/core/lwt_pool.ml" 132 3951 3960
)
"src/core/lwt_pool.ml" 133 3965 3967 "src/core/lwt_pool.ml" 133 3965 3976
call(
  stack
)
type(
  'a Lwt.t
)
"src/core/lwt_pool.ml" 133 3965 3977 "src/core/lwt_pool.ml" 133 3965 3980
type(
  'a Lwt.t -> ('a -> 'b Lwt.t) -> 'b Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/core/lwt_pool.ml" 133 3965 3985 "src/core/lwt_pool.ml" 133 3965 3986
type(
  'a
)
ident(
  def c "src/core/lwt_pool.ml" 134 3990 3992 "src/core/lwt_pool.ml" 142 4133 4151
)
"src/core/lwt_pool.ml" 134 3990 3992 "src/core/lwt_pool.ml" 134 3990 4001
type(
  (unit -> 'b Lwt.t) -> (exn -> 'b Lwt.t) -> 'b Lwt.t
)
ident(
  ext_ref Lwt.catch
)
"src/core/lwt_pool.ml" 135 4002 4011 "src/core/lwt_pool.ml" 135 4002 4013
type(
  unit
)
"src/core/lwt_pool.ml" 136 4017 4028 "src/core/lwt_pool.ml" 136 4017 4029
type(
  'b Lwt.t
)
ident(
  def t "src/core/lwt_pool.ml" 137 4039 4046 "src/core/lwt_pool.ml" 139 4081 4089
)
"src/core/lwt_pool.ml" 136 4017 4032 "src/core/lwt_pool.ml" 136 4017 4033
type(
  'a -> 'b Lwt.t
)
ident(
  int_ref f "src/core/lwt_pool.ml" 132 3951 3961 "src/core/lwt_pool.ml" 132 3951 3962
)
"src/core/lwt_pool.ml" 136 4017 4034 "src/core/lwt_pool.ml" 136 4017 4035
type(
  'a
)
ident(
  int_ref c "src/core/lwt_pool.ml" 133 3965 3985 "src/core/lwt_pool.ml" 133 3965 3986
)
"src/core/lwt_pool.ml" 136 4017 4032 "src/core/lwt_pool.ml" 136 4017 4035
call(
  stack
)
type(
  'b Lwt.t
)
"src/core/lwt_pool.ml" 137 4039 4046 "src/core/lwt_pool.ml" 137 4039 4047
type(
  'b Lwt.t
)
ident(
  int_ref t "src/core/lwt_pool.ml" 136 4017 4028 "src/core/lwt_pool.ml" 136 4017 4029
)
"src/core/lwt_pool.ml" 137 4039 4048 "src/core/lwt_pool.ml" 137 4039 4051
type(
  'b Lwt.t -> ('b -> 'b Lwt.t) -> 'b Lwt.t
)
ident(
  ext_ref Lwt.Infix.( >>= )
)
"src/core/lwt_pool.ml" 137 4039 4056 "src/core/lwt_pool.ml" 137 4039 4057
type(
  'b
)
"src/core/lwt_pool.ml" 138 4061 4068 "src/core/lwt_pool.ml" 138 4061 4075
type(
  'a t -> 'a -> unit
)
ident(
  int_ref release "src/core/lwt_pool.ml" 69 2116 2120 "src/core/lwt_pool.ml" 69 2116 2127
)
"src/core/lwt_pool.ml" 138 4061 4076 "src/core/lwt_pool.ml" 138 4061 4077
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 132 3951 3959 "src/core/lwt_pool.ml" 132 3951 3960
)
"src/core/lwt_pool.ml" 138 4061 4078 "src/core/lwt_pool.ml" 138 4061 4079
type(
  'a
)
ident(
  int_ref c "src/core/lwt_pool.ml" 133 3965 3985 "src/core/lwt_pool.ml" 133 3965 3986
)
"src/core/lwt_pool.ml" 138 4061 4068 "src/core/lwt_pool.ml" 138 4061 4079
call(
  stack
)
type(
  unit
)
"src/core/lwt_pool.ml" 139 4081 4088 "src/core/lwt_pool.ml" 139 4081 4089
type(
  'b Lwt.t
)
ident(
  int_ref t "src/core/lwt_pool.ml" 136 4017 4028 "src/core/lwt_pool.ml" 136 4017 4029
)
"src/core/lwt_pool.ml" 138 4061 4068 "src/core/lwt_pool.ml" 139 4081 4089
type(
  'b Lwt.t
)
"src/core/lwt_pool.ml" 137 4039 4052 "src/core/lwt_pool.ml" 139 4081 4089
type(
  'b -> 'b Lwt.t
)
"src/core/lwt_pool.ml" 137 4039 4046 "src/core/lwt_pool.ml" 139 4081 4089
call(
  tail
)
type(
  'b Lwt.t
)
"src/core/lwt_pool.ml" 136 4017 4024 "src/core/lwt_pool.ml" 139 4081 4089
type(
  'b Lwt.t
)
"src/core/lwt_pool.ml" 135 4002 4006 "src/core/lwt_pool.ml" 139 4081 4090
type(
  unit -> 'b Lwt.t
)
"src/core/lwt_pool.ml" 140 4091 4100 "src/core/lwt_pool.ml" 140 4091 4101
type(
  exn
)
ident(
  def e "src/core/lwt_pool.ml" 141 4105 4112 "src/core/lwt_pool.ml" 142 4133 4150
)
"src/core/lwt_pool.ml" 141 4105 4112 "src/core/lwt_pool.ml" 141 4105 4127
type(
  'a t -> 'a -> unit
)
ident(
  int_ref checked_release "src/core/lwt_pool.ml" 124 3823 3827 "src/core/lwt_pool.ml" 124 3823 3842
)
"src/core/lwt_pool.ml" 141 4105 4128 "src/core/lwt_pool.ml" 141 4105 4129
type(
  'a t
)
ident(
  int_ref p "src/core/lwt_pool.ml" 132 3951 3959 "src/core/lwt_pool.ml" 132 3951 3960
)
"src/core/lwt_pool.ml" 141 4105 4130 "src/core/lwt_pool.ml" 141 4105 4131
type(
  'a
)
ident(
  int_ref c "src/core/lwt_pool.ml" 133 3965 3985 "src/core/lwt_pool.ml" 133 3965 3986
)
"src/core/lwt_pool.ml" 141 4105 4112 "src/core/lwt_pool.ml" 141 4105 4131
call(
  stack
)
type(
  unit
)
"src/core/lwt_pool.ml" 142 4133 4140 "src/core/lwt_pool.ml" 142 4133 4148
type(
  exn -> 'b Lwt.t
)
ident(
  ext_ref Lwt.fail
)
"src/core/lwt_pool.ml" 142 4133 4149 "src/core/lwt_pool.ml" 142 4133 4150
type(
  exn
)
ident(
  int_ref e "src/core/lwt_pool.ml" 140 4091 4100 "src/core/lwt_pool.ml" 140 4091 4101
)
"src/core/lwt_pool.ml" 142 4133 4140 "src/core/lwt_pool.ml" 142 4133 4150
call(
  tail
)
type(
  'b Lwt.t
)
"src/core/lwt_pool.ml" 141 4105 4112 "src/core/lwt_pool.ml" 142 4133 4150
type(
  'b Lwt.t
)
"src/core/lwt_pool.ml" 140 4091 4095 "src/core/lwt_pool.ml" 142 4133 4151
type(
  exn -> 'b Lwt.t
)
"src/core/lwt_pool.ml" 134 3990 3992 "src/core/lwt_pool.ml" 142 4133 4151
call(
  tail
)
type(
  'b Lwt.t
)
"src/core/lwt_pool.ml" 133 3965 3981 "src/core/lwt_pool.ml" 142 4133 4151
type(
  'a -> 'b Lwt.t
)
"src/core/lwt_pool.ml" 133 3965 3967 "src/core/lwt_pool.ml" 142 4133 4151
call(
  tail
)
type(
  'b Lwt.t
)