-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcompile.txt
1209 lines (1209 loc) · 98.5 KB
/
compile.txt
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
[ 87/145] Compiling src/deptran/service.cc
In file included from ../src/deptran/service.h:4,
from ../src/deptran/service.cc:1:
../src/deptran/rcc_rpc.h:235:32: error: ‘MarshallDeputy’ does not name a type
virtual void Forward(const MarshallDeputy& cmd, const uint64_t& dep_id, uint64_t* coro_id, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
In file included from ../src/deptran/service.h:4,
from ../src/deptran/service.cc:1:
../src/deptran/rcc_rpc.h:237:99: error: ‘MarshallDeputy’ does not name a type
virtual void Accept(const uint64_t& slot, const uint64_t& time, const ballot_t& ballot, const MarshallDeputy& cmd, ballot_t* max_ballot, uint64_t* coro_id, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:238:77: error: ‘MarshallDeputy’ does not name a type
virtual void Decide(const uint64_t& slot, const ballot_t& ballot, const MarshallDeputy& cmd, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::MultiPaxosService::__Forward__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:241:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* in_0 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:241:25: error: ‘in_0’ was not declared in this scope
MarshallDeputy* in_0 = new MarshallDeputy;
^~~~
../src/deptran/rcc_rpc.h:241:25: note: suggested alternative: ‘id_t’
MarshallDeputy* in_0 = new MarshallDeputy;
^~~~
id_t
../src/deptran/rcc_rpc.h:241:36: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* in_0 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::MultiPaxosService::__Accept__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:284:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:284:25: error: ‘in_3’ was not declared in this scope
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~
../src/deptran/rcc_rpc.h:284:25: note: suggested alternative: ‘in_2’
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~
in_2
../src/deptran/rcc_rpc.h:284:36: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::MultiPaxosService::__Decide__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:308:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* in_2 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:308:25: error: ‘in_2’ was not declared in this scope
MarshallDeputy* in_2 = new MarshallDeputy;
^~~~
../src/deptran/rcc_rpc.h:308:25: note: suggested alternative: ‘in_1’
MarshallDeputy* in_2 = new MarshallDeputy;
^~~~
in_1
../src/deptran/rcc_rpc.h:308:36: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* in_2 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: At global scope:
../src/deptran/rcc_rpc.h:327:38: error: ‘MarshallDeputy’ does not name a type
rrr::Future* async_Forward(const MarshallDeputy& cmd, const uint64_t& dep_id, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:336:28: error: ‘MarshallDeputy’ does not name a type
rrr::i32 Forward(const MarshallDeputy& cmd, const uint64_t& dep_id, uint64_t* coro_id) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:370:105: error: ‘MarshallDeputy’ does not name a type
rrr::Future* async_Accept(const uint64_t& slot, const uint64_t& time, const ballot_t& ballot, const MarshallDeputy& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:381:95: error: ‘MarshallDeputy’ does not name a type
rrr::i32 Accept(const uint64_t& slot, const uint64_t& time, const ballot_t& ballot, const MarshallDeputy& cmd, ballot_t* max_ballot, uint64_t* coro_id) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:394:83: error: ‘MarshallDeputy’ does not name a type
rrr::Future* async_Decide(const uint64_t& slot, const ballot_t& ballot, const MarshallDeputy& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:404:73: error: ‘MarshallDeputy’ does not name a type
rrr::i32 Decide(const uint64_t& slot, const ballot_t& ballot, const MarshallDeputy& cmd) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:458:32: error: ‘MarshallDeputy’ does not name a type
virtual void Forward(const MarshallDeputy& cmd, uint64_t* cmt_idx, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:461:246: error: ‘MarshallDeputy’ does not name a type
virtual void AppendEntries(const uint64_t& slot, const ballot_t& ballot, const uint64_t& leaderCurrentTerm, const uint64_t& leaderPrevLogIndex, const uint64_t& leaderPrevLogTerm, const uint64_t& leaderCommitIndex, const DepId& dep_id, const MarshallDeputy& cmd, uint64_t* followerAppendOK, uint64_t* followerCurrentTerm, uint64_t* followerLastLogIndex, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
In file included from ../src/deptran/service.h:4,
from ../src/deptran/service.cc:1:
../src/deptran/rcc_rpc.h:462:98: error: ‘MarshallDeputy’ does not name a type
virtual void Decide(const uint64_t& slot, const ballot_t& ballot, const DepId& dep_id, const MarshallDeputy& cmd, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::FpgaRaftService::__Forward__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:482:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* in_0 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:482:25: error: ‘in_0’ was not declared in this scope
MarshallDeputy* in_0 = new MarshallDeputy;
^~~~
../src/deptran/rcc_rpc.h:482:25: note: suggested alternative: ‘id_t’
MarshallDeputy* in_0 = new MarshallDeputy;
^~~~
id_t
../src/deptran/rcc_rpc.h:482:36: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* in_0 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::FpgaRaftService::__AppendEntries__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:562:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* in_7 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:562:25: error: ‘in_7’ was not declared in this scope
MarshallDeputy* in_7 = new MarshallDeputy;
^~~~
../src/deptran/rcc_rpc.h:562:25: note: suggested alternative: ‘in_6’
MarshallDeputy* in_7 = new MarshallDeputy;
^~~~
in_6
../src/deptran/rcc_rpc.h:562:36: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* in_7 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::FpgaRaftService::__Decide__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:595:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:595:25: error: ‘in_3’ was not declared in this scope
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~
../src/deptran/rcc_rpc.h:595:25: note: suggested alternative: ‘in_2’
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~
in_2
../src/deptran/rcc_rpc.h:595:36: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: At global scope:
../src/deptran/rcc_rpc.h:636:38: error: ‘MarshallDeputy’ does not name a type
rrr::Future* async_Forward(const MarshallDeputy& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:644:28: error: ‘MarshallDeputy’ does not name a type
rrr::i32 Forward(const MarshallDeputy& cmd, uint64_t* cmt_idx) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:704:252: error: ‘MarshallDeputy’ does not name a type
rrr::Future* async_AppendEntries(const uint64_t& slot, const ballot_t& ballot, const uint64_t& leaderCurrentTerm, const uint64_t& leaderPrevLogIndex, const uint64_t& leaderPrevLogTerm, const uint64_t& leaderCommitIndex, const DepId& dep_id, const MarshallDeputy& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:719:242: error: ‘MarshallDeputy’ does not name a type
rrr::i32 AppendEntries(const uint64_t& slot, const ballot_t& ballot, const uint64_t& leaderCurrentTerm, const uint64_t& leaderPrevLogIndex, const uint64_t& leaderPrevLogTerm, const uint64_t& leaderCommitIndex, const DepId& dep_id, const MarshallDeputy& cmd, uint64_t* followerAppendOK, uint64_t* followerCurrentTerm, uint64_t* followerLastLogIndex) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:733:104: error: ‘MarshallDeputy’ does not name a type
rrr::Future* async_Decide(const uint64_t& slot, const ballot_t& ballot, const DepId& dep_id, const MarshallDeputy& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:744:94: error: ‘MarshallDeputy’ does not name a type
rrr::i32 Decide(const uint64_t& slot, const ballot_t& ballot, const DepId& dep_id, const MarshallDeputy& cmd) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:973:36: error: ‘MarshallDeputy’ does not name a type
virtual void MsgMarshall(const MarshallDeputy& arg, MarshallDeputy* ret, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:973:57: error: ‘MarshallDeputy’ has not been declared
virtual void MsgMarshall(const MarshallDeputy& arg, MarshallDeputy* ret, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:975:75: error: ‘MarshallDeputy’ does not name a type
virtual void Dispatch(const rrr::i64& tid, const DepId& dep_id, const MarshallDeputy& cmd, rrr::i32* res, TxnOutput* output, uint64_t* coro_id, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:984:34: error: ‘SimpleCommand’ does not name a type
virtual void SimpleCmd(const SimpleCommand& cmd, rrr::i32* res, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:988:76: error: ‘SimpleCommand’ was not declared in this scope
virtual void TapirFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, rrr::i32* res, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:988:76: note: suggested alternative: ‘SimpleCmd’
virtual void TapirFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, rrr::i32* res, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:988:89: error: template argument 1 is invalid
virtual void TapirFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, rrr::i32* res, rrr::DeferredReply* defer) = 0;
^
../src/deptran/rcc_rpc.h:988:89: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:990:68: error: ‘MarshallDeputy’ does not name a type
virtual void CarouselReadAndPrepare(const rrr::i64& tid, const MarshallDeputy& cmd, const bool_t& leader, rrr::i32* res, TxnOutput* output, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:992:79: error: ‘SimpleCommand’ was not declared in this scope
virtual void CarouselFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, rrr::i32* res, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:992:79: note: suggested alternative: ‘SimpleCmd’
virtual void CarouselFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, rrr::i32* res, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:992:92: error: template argument 1 is invalid
virtual void CarouselFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, rrr::i32* res, rrr::DeferredReply* defer) = 0;
^
../src/deptran/rcc_rpc.h:992:92: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:994:48: error: ‘SimpleCommand’ was not declared in this scope
virtual void RccDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* md_graph, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:994:48: note: suggested alternative: ‘SimpleCmd’
virtual void RccDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* md_graph, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:994:61: error: template argument 1 is invalid
virtual void RccDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* md_graph, rrr::DeferredReply* defer) = 0;
^
../src/deptran/rcc_rpc.h:994:61: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:994:103: error: ‘MarshallDeputy’ has not been declared
virtual void RccDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* md_graph, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:995:53: error: ‘MarshallDeputy’ does not name a type
virtual void RccFinish(const cmdid_t& id, const MarshallDeputy& md_graph, std::map<uint32_t, std::map<int32_t, Value>>* outputs, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:996:92: error: ‘parent_set_t’ was not declared in this scope
virtual void RccInquire(const txnid_t& txn_id, const int32_t& rank, std::map<uint64_t, parent_set_t>*, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~
../src/deptran/rcc_rpc.h:996:92: note: suggested alternative: ‘fpregset_t’
virtual void RccInquire(const txnid_t& txn_id, const int32_t& rank, std::map<uint64_t, parent_set_t>*, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~
fpregset_t
../src/deptran/rcc_rpc.h:996:104: error: template argument 2 is invalid
virtual void RccInquire(const txnid_t& txn_id, const int32_t& rank, std::map<uint64_t, parent_set_t>*, rrr::DeferredReply* defer) = 0;
^
../src/deptran/rcc_rpc.h:996:104: error: template argument 4 is invalid
../src/deptran/rcc_rpc.h:997:38: error: ‘SimpleCommand’ does not name a type
virtual void RccDispatchRo(const SimpleCommand& cmd, std::map<rrr::i32, Value>* output, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1000:50: error: ‘SimpleCommand’ was not declared in this scope
virtual void JanusDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* ret_graph, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1000:50: note: suggested alternative: ‘SimpleCmd’
virtual void JanusDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* ret_graph, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:1000:63: error: template argument 1 is invalid
virtual void JanusDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* ret_graph, rrr::DeferredReply* defer) = 0;
^
../src/deptran/rcc_rpc.h:1000:63: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1000:105: error: ‘MarshallDeputy’ has not been declared
virtual void JanusDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* ret_graph, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1001:105: error: ‘parent_set_t’ does not name a type; did you mean ‘fpregset_t’?
virtual void RccCommit(const cmdid_t& id, const rank_t& rank, const int32_t& need_validation, const parent_set_t& parents, int32_t* res, TxnOutput* output, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~
fpregset_t
../src/deptran/rcc_rpc.h:1002:107: error: ‘MarshallDeputy’ does not name a type
virtual void JanusCommit(const cmdid_t& id, const rank_t& rank, const int32_t& need_validation, const MarshallDeputy& graph, int32_t* res, TxnOutput* output, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1004:76: error: ‘MarshallDeputy’ has not been declared
virtual void JanusInquire(const epoch_t& epoch, const txnid_t& txn_id, MarshallDeputy* ret_graph, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1005:92: error: ‘SimpleCommand’ was not declared in this scope
virtual void RccPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, parent_set_t* x, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1005:92: note: suggested alternative: ‘SimpleCmd’
virtual void RccPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, parent_set_t* x, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:1005:105: error: template argument 1 is invalid
virtual void RccPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, parent_set_t* x, rrr::DeferredReply* defer) = 0;
^
../src/deptran/rcc_rpc.h:1005:105: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1005:128: error: ‘parent_set_t’ has not been declared
virtual void RccPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, parent_set_t* x, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1006:94: error: ‘SimpleCommand’ was not declared in this scope
virtual void JanusPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const MarshallDeputy& graph, rrr::i32* res, MarshallDeputy* ret_graph, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1006:94: note: suggested alternative: ‘SimpleCmd’
virtual void JanusPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const MarshallDeputy& graph, rrr::i32* res, MarshallDeputy* ret_graph, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:1006:107: error: template argument 1 is invalid
virtual void JanusPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const MarshallDeputy& graph, rrr::i32* res, MarshallDeputy* ret_graph, rrr::DeferredReply* defer) = 0;
^
../src/deptran/rcc_rpc.h:1006:107: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1006:121: error: ‘MarshallDeputy’ does not name a type
virtual void JanusPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const MarshallDeputy& graph, rrr::i32* res, MarshallDeputy* ret_graph, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1006:159: error: ‘MarshallDeputy’ has not been declared
virtual void JanusPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const MarshallDeputy& graph, rrr::i32* res, MarshallDeputy* ret_graph, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1007:101: error: ‘SimpleCommand’ was not declared in this scope
virtual void JanusPreAcceptWoGraph(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, MarshallDeputy* ret_graph, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1007:101: note: suggested alternative: ‘SimpleCmd’
virtual void JanusPreAcceptWoGraph(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, MarshallDeputy* ret_graph, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:1007:114: error: template argument 1 is invalid
virtual void JanusPreAcceptWoGraph(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, MarshallDeputy* ret_graph, rrr::DeferredReply* defer) = 0;
^
../src/deptran/rcc_rpc.h:1007:114: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1007:137: error: ‘MarshallDeputy’ has not been declared
virtual void JanusPreAcceptWoGraph(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, MarshallDeputy* ret_graph, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1008:103: error: ‘parent_set_t’ does not name a type; did you mean ‘fpregset_t’?
virtual void RccAccept(const cmdid_t& txn_id, const rrr::i32& rank, const ballot_t& ballot, const parent_set_t& p, rrr::i32* res, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~
fpregset_t
../src/deptran/rcc_rpc.h:1009:105: error: ‘MarshallDeputy’ does not name a type
virtual void JanusAccept(const cmdid_t& txn_id, const rrr::i32& rank, const ballot_t& ballot, const MarshallDeputy& graph, rrr::i32* res, rrr::DeferredReply* defer) = 0;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__MsgMarshall__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1029:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* in_0 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1029:25: error: ‘in_0’ was not declared in this scope
MarshallDeputy* in_0 = new MarshallDeputy;
^~~~
../src/deptran/rcc_rpc.h:1029:25: note: suggested alternative: ‘id_t’
MarshallDeputy* in_0 = new MarshallDeputy;
^~~~
id_t
../src/deptran/rcc_rpc.h:1029:36: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* in_0 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1031:25: error: ‘out_0’ was not declared in this scope
MarshallDeputy* out_0 = new MarshallDeputy;
^~~~~
../src/deptran/rcc_rpc.h:1031:25: note: suggested alternative: ‘count_t’
MarshallDeputy* out_0 = new MarshallDeputy;
^~~~~
count_t
../src/deptran/rcc_rpc.h:1031:37: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* out_0 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__Dispatch__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1058:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* in_2 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1058:25: error: ‘in_2’ was not declared in this scope
MarshallDeputy* in_2 = new MarshallDeputy;
^~~~
../src/deptran/rcc_rpc.h:1058:25: note: suggested alternative: ‘in_1’
MarshallDeputy* in_2 = new MarshallDeputy;
^~~~
in_1
../src/deptran/rcc_rpc.h:1058:36: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* in_2 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__SimpleCmd__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1225:9: error: ‘SimpleCommand’ was not declared in this scope
SimpleCommand* in_0 = new SimpleCommand;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1225:9: note: suggested alternative: ‘SimpleCmd’
SimpleCommand* in_0 = new SimpleCommand;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:1225:24: error: ‘in_0’ was not declared in this scope
SimpleCommand* in_0 = new SimpleCommand;
^~~~
../src/deptran/rcc_rpc.h:1225:24: note: suggested alternative: ‘id_t’
SimpleCommand* in_0 = new SimpleCommand;
^~~~
id_t
../src/deptran/rcc_rpc.h:1225:35: error: ‘SimpleCommand’ does not name a type
SimpleCommand* in_0 = new SimpleCommand;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__TapirFastAccept__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1280:21: error: ‘SimpleCommand’ was not declared in this scope
std::vector<SimpleCommand>* in_1 = new std::vector<SimpleCommand>;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1280:21: note: suggested alternative: ‘SimpleCmd’
std::vector<SimpleCommand>* in_1 = new std::vector<SimpleCommand>;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:1280:34: error: template argument 1 is invalid
std::vector<SimpleCommand>* in_1 = new std::vector<SimpleCommand>;
^
../src/deptran/rcc_rpc.h:1280:34: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1280:73: error: type/value mismatch at argument 1 in template parameter list for ‘template<class _Tp, class _Alloc> class std::vector’
std::vector<SimpleCommand>* in_1 = new std::vector<SimpleCommand>;
^
../src/deptran/rcc_rpc.h:1280:73: note: expected a type, got ‘SimpleCommand’
../src/deptran/rcc_rpc.h:1280:73: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__CarouselReadAndPrepare__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1311:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* in_1 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1311:25: error: ‘in_1’ was not declared in this scope
MarshallDeputy* in_1 = new MarshallDeputy;
^~~~
../src/deptran/rcc_rpc.h:1311:25: note: suggested alternative: ‘in_0’
MarshallDeputy* in_1 = new MarshallDeputy;
^~~~
in_0
../src/deptran/rcc_rpc.h:1311:36: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* in_1 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__CarouselFastAccept__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1351:21: error: ‘SimpleCommand’ was not declared in this scope
std::vector<SimpleCommand>* in_1 = new std::vector<SimpleCommand>;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1351:21: note: suggested alternative: ‘SimpleCmd’
std::vector<SimpleCommand>* in_1 = new std::vector<SimpleCommand>;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:1351:34: error: template argument 1 is invalid
std::vector<SimpleCommand>* in_1 = new std::vector<SimpleCommand>;
^
../src/deptran/rcc_rpc.h:1351:34: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1351:73: error: type/value mismatch at argument 1 in template parameter list for ‘template<class _Tp, class _Alloc> class std::vector’
std::vector<SimpleCommand>* in_1 = new std::vector<SimpleCommand>;
^
../src/deptran/rcc_rpc.h:1351:73: note: expected a type, got ‘SimpleCommand’
../src/deptran/rcc_rpc.h:1351:73: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__RccDispatch__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1380:21: error: ‘SimpleCommand’ was not declared in this scope
std::vector<SimpleCommand>* in_0 = new std::vector<SimpleCommand>;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1380:21: note: suggested alternative: ‘SimpleCmd’
std::vector<SimpleCommand>* in_0 = new std::vector<SimpleCommand>;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:1380:34: error: template argument 1 is invalid
std::vector<SimpleCommand>* in_0 = new std::vector<SimpleCommand>;
^
../src/deptran/rcc_rpc.h:1380:34: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1380:73: error: type/value mismatch at argument 1 in template parameter list for ‘template<class _Tp, class _Alloc> class std::vector’
std::vector<SimpleCommand>* in_0 = new std::vector<SimpleCommand>;
^
../src/deptran/rcc_rpc.h:1380:73: note: expected a type, got ‘SimpleCommand’
../src/deptran/rcc_rpc.h:1380:73: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1384:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* out_2 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1384:25: error: ‘out_2’ was not declared in this scope
MarshallDeputy* out_2 = new MarshallDeputy;
^~~~~
../src/deptran/rcc_rpc.h:1384:25: note: suggested alternative: ‘out_1’
MarshallDeputy* out_2 = new MarshallDeputy;
^~~~~
out_1
../src/deptran/rcc_rpc.h:1384:37: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* out_2 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__RccFinish__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1402:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* in_1 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1402:25: error: ‘in_1’ was not declared in this scope
MarshallDeputy* in_1 = new MarshallDeputy;
^~~~
../src/deptran/rcc_rpc.h:1402:25: note: suggested alternative: ‘in_0’
MarshallDeputy* in_1 = new MarshallDeputy;
^~~~
in_0
../src/deptran/rcc_rpc.h:1402:36: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* in_1 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__RccInquire__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1421:28: error: ‘parent_set_t’ was not declared in this scope
std::map<uint64_t, parent_set_t>* out_0 = new std::map<uint64_t, parent_set_t>;
^~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1421:28: note: suggested alternative: ‘fpregset_t’
std::map<uint64_t, parent_set_t>* out_0 = new std::map<uint64_t, parent_set_t>;
^~~~~~~~~~~~
fpregset_t
../src/deptran/rcc_rpc.h:1421:40: error: template argument 2 is invalid
std::map<uint64_t, parent_set_t>* out_0 = new std::map<uint64_t, parent_set_t>;
^
../src/deptran/rcc_rpc.h:1421:40: error: template argument 4 is invalid
../src/deptran/rcc_rpc.h:1421:86: error: type/value mismatch at argument 2 in template parameter list for ‘template<class _Key, class _Tp, class _Compare, class _Alloc> class std::map’
std::map<uint64_t, parent_set_t>* out_0 = new std::map<uint64_t, parent_set_t>;
^
../src/deptran/rcc_rpc.h:1421:86: note: expected a type, got ‘parent_set_t’
../src/deptran/rcc_rpc.h:1421:86: error: template argument 4 is invalid
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__RccDispatchRo__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1434:9: error: ‘SimpleCommand’ was not declared in this scope
SimpleCommand* in_0 = new SimpleCommand;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1434:9: note: suggested alternative: ‘SimpleCmd’
SimpleCommand* in_0 = new SimpleCommand;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:1434:24: error: ‘in_0’ was not declared in this scope
SimpleCommand* in_0 = new SimpleCommand;
^~~~
../src/deptran/rcc_rpc.h:1434:24: note: suggested alternative: ‘id_t’
SimpleCommand* in_0 = new SimpleCommand;
^~~~
id_t
../src/deptran/rcc_rpc.h:1434:35: error: ‘SimpleCommand’ does not name a type
SimpleCommand* in_0 = new SimpleCommand;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__JanusDispatch__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1482:21: error: ‘SimpleCommand’ was not declared in this scope
std::vector<SimpleCommand>* in_0 = new std::vector<SimpleCommand>;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1482:21: note: suggested alternative: ‘SimpleCmd’
std::vector<SimpleCommand>* in_0 = new std::vector<SimpleCommand>;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:1482:34: error: template argument 1 is invalid
std::vector<SimpleCommand>* in_0 = new std::vector<SimpleCommand>;
^
../src/deptran/rcc_rpc.h:1482:34: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1482:73: error: type/value mismatch at argument 1 in template parameter list for ‘template<class _Tp, class _Alloc> class std::vector’
std::vector<SimpleCommand>* in_0 = new std::vector<SimpleCommand>;
^
../src/deptran/rcc_rpc.h:1482:73: note: expected a type, got ‘SimpleCommand’
../src/deptran/rcc_rpc.h:1482:73: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1486:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* out_2 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1486:25: error: ‘out_2’ was not declared in this scope
MarshallDeputy* out_2 = new MarshallDeputy;
^~~~~
../src/deptran/rcc_rpc.h:1486:25: note: suggested alternative: ‘out_1’
MarshallDeputy* out_2 = new MarshallDeputy;
^~~~~
out_1
../src/deptran/rcc_rpc.h:1486:37: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* out_2 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__RccCommit__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1508:9: error: ‘parent_set_t’ was not declared in this scope
parent_set_t* in_3 = new parent_set_t;
^~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1508:9: note: suggested alternative: ‘fpregset_t’
parent_set_t* in_3 = new parent_set_t;
^~~~~~~~~~~~
fpregset_t
../src/deptran/rcc_rpc.h:1508:23: error: ‘in_3’ was not declared in this scope
parent_set_t* in_3 = new parent_set_t;
^~~~
../src/deptran/rcc_rpc.h:1508:23: note: suggested alternative: ‘in_2’
parent_set_t* in_3 = new parent_set_t;
^~~~
in_2
../src/deptran/rcc_rpc.h:1508:34: error: ‘parent_set_t’ does not name a type; did you mean ‘fpregset_t’?
parent_set_t* in_3 = new parent_set_t;
^~~~~~~~~~~~
fpregset_t
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__JanusCommit__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1534:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1534:25: error: ‘in_3’ was not declared in this scope
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~
../src/deptran/rcc_rpc.h:1534:25: note: suggested alternative: ‘in_2’
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~
in_2
../src/deptran/rcc_rpc.h:1534:36: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__JanusInquire__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1581:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* out_0 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1581:25: error: ‘out_0’ was not declared in this scope
MarshallDeputy* out_0 = new MarshallDeputy;
^~~~~
../src/deptran/rcc_rpc.h:1581:25: note: suggested alternative: ‘count_t’
MarshallDeputy* out_0 = new MarshallDeputy;
^~~~~
count_t
../src/deptran/rcc_rpc.h:1581:37: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* out_0 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__RccPreAccept__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1598:21: error: ‘SimpleCommand’ was not declared in this scope
std::vector<SimpleCommand>* in_2 = new std::vector<SimpleCommand>;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1598:21: note: suggested alternative: ‘SimpleCmd’
std::vector<SimpleCommand>* in_2 = new std::vector<SimpleCommand>;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:1598:34: error: template argument 1 is invalid
std::vector<SimpleCommand>* in_2 = new std::vector<SimpleCommand>;
^
../src/deptran/rcc_rpc.h:1598:34: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1598:73: error: type/value mismatch at argument 1 in template parameter list for ‘template<class _Tp, class _Alloc> class std::vector’
std::vector<SimpleCommand>* in_2 = new std::vector<SimpleCommand>;
^
../src/deptran/rcc_rpc.h:1598:73: note: expected a type, got ‘SimpleCommand’
../src/deptran/rcc_rpc.h:1598:73: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1601:9: error: ‘parent_set_t’ was not declared in this scope
parent_set_t* out_1 = new parent_set_t;
^~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1601:9: note: suggested alternative: ‘fpregset_t’
parent_set_t* out_1 = new parent_set_t;
^~~~~~~~~~~~
fpregset_t
../src/deptran/rcc_rpc.h:1601:23: error: ‘out_1’ was not declared in this scope
parent_set_t* out_1 = new parent_set_t;
^~~~~
../src/deptran/rcc_rpc.h:1601:23: note: suggested alternative: ‘out_0’
parent_set_t* out_1 = new parent_set_t;
^~~~~
out_0
../src/deptran/rcc_rpc.h:1601:35: error: ‘parent_set_t’ does not name a type; did you mean ‘fpregset_t’?
parent_set_t* out_1 = new parent_set_t;
^~~~~~~~~~~~
fpregset_t
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__JanusPreAccept__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1621:21: error: ‘SimpleCommand’ was not declared in this scope
std::vector<SimpleCommand>* in_2 = new std::vector<SimpleCommand>;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1621:21: note: suggested alternative: ‘SimpleCmd’
std::vector<SimpleCommand>* in_2 = new std::vector<SimpleCommand>;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:1621:34: error: template argument 1 is invalid
std::vector<SimpleCommand>* in_2 = new std::vector<SimpleCommand>;
^
../src/deptran/rcc_rpc.h:1621:34: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1621:73: error: type/value mismatch at argument 1 in template parameter list for ‘template<class _Tp, class _Alloc> class std::vector’
std::vector<SimpleCommand>* in_2 = new std::vector<SimpleCommand>;
^
../src/deptran/rcc_rpc.h:1621:73: note: expected a type, got ‘SimpleCommand’
../src/deptran/rcc_rpc.h:1621:73: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1623:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1623:25: error: ‘in_3’ was not declared in this scope
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~
../src/deptran/rcc_rpc.h:1623:25: note: suggested alternative: ‘in_2’
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~
in_2
../src/deptran/rcc_rpc.h:1623:36: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1626:25: error: ‘out_1’ was not declared in this scope
MarshallDeputy* out_1 = new MarshallDeputy;
^~~~~
../src/deptran/rcc_rpc.h:1626:25: note: suggested alternative: ‘out_0’
MarshallDeputy* out_1 = new MarshallDeputy;
^~~~~
out_0
../src/deptran/rcc_rpc.h:1626:37: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* out_1 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__JanusPreAcceptWoGraph__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1647:21: error: ‘SimpleCommand’ was not declared in this scope
std::vector<SimpleCommand>* in_2 = new std::vector<SimpleCommand>;
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1647:21: note: suggested alternative: ‘SimpleCmd’
std::vector<SimpleCommand>* in_2 = new std::vector<SimpleCommand>;
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:1647:34: error: template argument 1 is invalid
std::vector<SimpleCommand>* in_2 = new std::vector<SimpleCommand>;
^
../src/deptran/rcc_rpc.h:1647:34: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1647:73: error: type/value mismatch at argument 1 in template parameter list for ‘template<class _Tp, class _Alloc> class std::vector’
std::vector<SimpleCommand>* in_2 = new std::vector<SimpleCommand>;
^
../src/deptran/rcc_rpc.h:1647:73: note: expected a type, got ‘SimpleCommand’
../src/deptran/rcc_rpc.h:1647:73: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:1650:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* out_1 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1650:25: error: ‘out_1’ was not declared in this scope
MarshallDeputy* out_1 = new MarshallDeputy;
^~~~~
../src/deptran/rcc_rpc.h:1650:25: note: suggested alternative: ‘out_0’
MarshallDeputy* out_1 = new MarshallDeputy;
^~~~~
out_0
../src/deptran/rcc_rpc.h:1650:37: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* out_1 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__RccAccept__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1672:9: error: ‘parent_set_t’ was not declared in this scope
parent_set_t* in_3 = new parent_set_t;
^~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1672:9: note: suggested alternative: ‘fpregset_t’
parent_set_t* in_3 = new parent_set_t;
^~~~~~~~~~~~
fpregset_t
../src/deptran/rcc_rpc.h:1672:23: error: ‘in_3’ was not declared in this scope
parent_set_t* in_3 = new parent_set_t;
^~~~
../src/deptran/rcc_rpc.h:1672:23: note: suggested alternative: ‘in_2’
parent_set_t* in_3 = new parent_set_t;
^~~~
in_2
../src/deptran/rcc_rpc.h:1672:34: error: ‘parent_set_t’ does not name a type; did you mean ‘fpregset_t’?
parent_set_t* in_3 = new parent_set_t;
^~~~~~~~~~~~
fpregset_t
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClassicService::__JanusAccept__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:1695:9: error: ‘MarshallDeputy’ was not declared in this scope
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1695:25: error: ‘in_3’ was not declared in this scope
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~
../src/deptran/rcc_rpc.h:1695:25: note: suggested alternative: ‘in_2’
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~
in_2
../src/deptran/rcc_rpc.h:1695:36: error: ‘MarshallDeputy’ does not name a type
MarshallDeputy* in_3 = new MarshallDeputy;
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h: At global scope:
../src/deptran/rcc_rpc.h:1792:42: error: ‘MarshallDeputy’ does not name a type
rrr::Future* async_MsgMarshall(const MarshallDeputy& arg, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1800:32: error: ‘MarshallDeputy’ does not name a type
rrr::i32 MsgMarshall(const MarshallDeputy& arg, MarshallDeputy* ret) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1800:53: error: ‘MarshallDeputy’ has not been declared
rrr::i32 MsgMarshall(const MarshallDeputy& arg, MarshallDeputy* ret) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1829:81: error: ‘MarshallDeputy’ does not name a type
rrr::Future* async_Dispatch(const rrr::i64& tid, const DepId& dep_id, const MarshallDeputy& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:1839:71: error: ‘MarshallDeputy’ does not name a type
rrr::i32 Dispatch(const rrr::i64& tid, const DepId& dep_id, const MarshallDeputy& cmd, rrr::i32* res, TxnOutput* output, uint64_t* coro_id) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2022:40: error: ‘SimpleCommand’ does not name a type
rrr::Future* async_SimpleCmd(const SimpleCommand& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2030:30: error: ‘SimpleCommand’ does not name a type
rrr::i32 SimpleCmd(const SimpleCommand& cmd, rrr::i32* res) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2095:82: error: ‘SimpleCommand’ was not declared in this scope
rrr::Future* async_TapirFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2095:82: note: suggested alternative: ‘SimpleCmd’
rrr::Future* async_TapirFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:2095:95: error: template argument 1 is invalid
rrr::Future* async_TapirFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^
../src/deptran/rcc_rpc.h:2095:95: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:2104:72: error: ‘SimpleCommand’ was not declared in this scope
rrr::i32 TapirFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, rrr::i32* res) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2104:72: note: suggested alternative: ‘SimpleCmd’
rrr::i32 TapirFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, rrr::i32* res) {
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:2104:85: error: template argument 1 is invalid
rrr::i32 TapirFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, rrr::i32* res) {
^
../src/deptran/rcc_rpc.h:2104:85: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:2134:74: error: ‘MarshallDeputy’ does not name a type
rrr::Future* async_CarouselReadAndPrepare(const rrr::i64& tid, const MarshallDeputy& cmd, const bool_t& leader, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2144:64: error: ‘MarshallDeputy’ does not name a type
rrr::i32 CarouselReadAndPrepare(const rrr::i64& tid, const MarshallDeputy& cmd, const bool_t& leader, rrr::i32* res, TxnOutput* output) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2176:85: error: ‘SimpleCommand’ was not declared in this scope
rrr::Future* async_CarouselFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2176:85: note: suggested alternative: ‘SimpleCmd’
rrr::Future* async_CarouselFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:2176:98: error: template argument 1 is invalid
rrr::Future* async_CarouselFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^
../src/deptran/rcc_rpc.h:2176:98: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:2185:75: error: ‘SimpleCommand’ was not declared in this scope
rrr::i32 CarouselFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, rrr::i32* res) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2185:75: note: suggested alternative: ‘SimpleCmd’
rrr::i32 CarouselFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, rrr::i32* res) {
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:2185:88: error: template argument 1 is invalid
rrr::i32 CarouselFastAccept(const uint64_t& cmd_id, const std::vector<SimpleCommand>& txn_cmds, rrr::i32* res) {
^
../src/deptran/rcc_rpc.h:2185:88: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:2215:54: error: ‘SimpleCommand’ was not declared in this scope
rrr::Future* async_RccDispatch(const std::vector<SimpleCommand>& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2215:54: note: suggested alternative: ‘SimpleCmd’
rrr::Future* async_RccDispatch(const std::vector<SimpleCommand>& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:2215:67: error: template argument 1 is invalid
rrr::Future* async_RccDispatch(const std::vector<SimpleCommand>& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^
../src/deptran/rcc_rpc.h:2215:67: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:2223:44: error: ‘SimpleCommand’ was not declared in this scope
rrr::i32 RccDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* md_graph) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2223:44: note: suggested alternative: ‘SimpleCmd’
rrr::i32 RccDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* md_graph) {
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:2223:57: error: template argument 1 is invalid
rrr::i32 RccDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* md_graph) {
^
../src/deptran/rcc_rpc.h:2223:57: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:2223:99: error: ‘MarshallDeputy’ has not been declared
rrr::i32 RccDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* md_graph) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2237:59: error: ‘MarshallDeputy’ does not name a type
rrr::Future* async_RccFinish(const cmdid_t& id, const MarshallDeputy& md_graph, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2246:49: error: ‘MarshallDeputy’ does not name a type
rrr::i32 RccFinish(const cmdid_t& id, const MarshallDeputy& md_graph, std::map<uint32_t, std::map<int32_t, Value>>* outputs) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2267:88: error: ‘parent_set_t’ was not declared in this scope
rrr::i32 RccInquire(const txnid_t& txn_id, const int32_t& rank, std::map<uint64_t, parent_set_t>* out_0) {
^~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2267:88: note: suggested alternative: ‘fpregset_t’
rrr::i32 RccInquire(const txnid_t& txn_id, const int32_t& rank, std::map<uint64_t, parent_set_t>* out_0) {
^~~~~~~~~~~~
fpregset_t
../src/deptran/rcc_rpc.h:2267:100: error: template argument 2 is invalid
rrr::i32 RccInquire(const txnid_t& txn_id, const int32_t& rank, std::map<uint64_t, parent_set_t>* out_0) {
^
../src/deptran/rcc_rpc.h:2267:100: error: template argument 4 is invalid
../src/deptran/rcc_rpc.h:2279:44: error: ‘SimpleCommand’ does not name a type
rrr::Future* async_RccDispatchRo(const SimpleCommand& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2287:34: error: ‘SimpleCommand’ does not name a type
rrr::i32 RccDispatchRo(const SimpleCommand& cmd, std::map<rrr::i32, Value>* output) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2339:56: error: ‘SimpleCommand’ was not declared in this scope
rrr::Future* async_JanusDispatch(const std::vector<SimpleCommand>& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2339:56: note: suggested alternative: ‘SimpleCmd’
rrr::Future* async_JanusDispatch(const std::vector<SimpleCommand>& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:2339:69: error: template argument 1 is invalid
rrr::Future* async_JanusDispatch(const std::vector<SimpleCommand>& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^
../src/deptran/rcc_rpc.h:2339:69: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:2347:46: error: ‘SimpleCommand’ was not declared in this scope
rrr::i32 JanusDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* ret_graph) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2347:46: note: suggested alternative: ‘SimpleCmd’
rrr::i32 JanusDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* ret_graph) {
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:2347:59: error: template argument 1 is invalid
rrr::i32 JanusDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* ret_graph) {
^
../src/deptran/rcc_rpc.h:2347:59: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:2347:101: error: ‘MarshallDeputy’ has not been declared
rrr::i32 JanusDispatch(const std::vector<SimpleCommand>& cmd, rrr::i32* res, TxnOutput* output, MarshallDeputy* ret_graph) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2361:111: error: ‘parent_set_t’ does not name a type; did you mean ‘fpregset_t’?
rrr::Future* async_RccCommit(const cmdid_t& id, const rank_t& rank, const int32_t& need_validation, const parent_set_t& parents, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~
fpregset_t
../src/deptran/rcc_rpc.h:2372:101: error: ‘parent_set_t’ does not name a type; did you mean ‘fpregset_t’?
rrr::i32 RccCommit(const cmdid_t& id, const rank_t& rank, const int32_t& need_validation, const parent_set_t& parents, int32_t* res, TxnOutput* output) {
^~~~~~~~~~~~
fpregset_t
../src/deptran/rcc_rpc.h:2385:113: error: ‘MarshallDeputy’ does not name a type
rrr::Future* async_JanusCommit(const cmdid_t& id, const rank_t& rank, const int32_t& need_validation, const MarshallDeputy& graph, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2396:103: error: ‘MarshallDeputy’ does not name a type
rrr::i32 JanusCommit(const cmdid_t& id, const rank_t& rank, const int32_t& need_validation, const MarshallDeputy& graph, int32_t* res, TxnOutput* output) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2441:72: error: ‘MarshallDeputy’ has not been declared
rrr::i32 JanusInquire(const epoch_t& epoch, const txnid_t& txn_id, MarshallDeputy* ret_graph) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2453:98: error: ‘SimpleCommand’ was not declared in this scope
rrr::Future* async_RccPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2453:98: note: suggested alternative: ‘SimpleCmd’
rrr::Future* async_RccPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:2453:111: error: template argument 1 is invalid
rrr::Future* async_RccPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^
../src/deptran/rcc_rpc.h:2453:111: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:2463:88: error: ‘SimpleCommand’ was not declared in this scope
rrr::i32 RccPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, parent_set_t* x) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2463:88: note: suggested alternative: ‘SimpleCmd’
rrr::i32 RccPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, parent_set_t* x) {
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:2463:101: error: template argument 1 is invalid
rrr::i32 RccPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, parent_set_t* x) {
^
../src/deptran/rcc_rpc.h:2463:101: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:2463:124: error: ‘parent_set_t’ has not been declared
rrr::i32 RccPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, parent_set_t* x) {
^~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2476:100: error: ‘SimpleCommand’ was not declared in this scope
rrr::Future* async_JanusPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const MarshallDeputy& graph, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2476:100: note: suggested alternative: ‘SimpleCmd’
rrr::Future* async_JanusPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const MarshallDeputy& graph, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:2476:113: error: template argument 1 is invalid
rrr::Future* async_JanusPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const MarshallDeputy& graph, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^
../src/deptran/rcc_rpc.h:2476:113: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:2476:127: error: ‘MarshallDeputy’ does not name a type
rrr::Future* async_JanusPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const MarshallDeputy& graph, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2487:90: error: ‘SimpleCommand’ was not declared in this scope
rrr::i32 JanusPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const MarshallDeputy& graph, rrr::i32* res, MarshallDeputy* ret_graph) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2487:90: note: suggested alternative: ‘SimpleCmd’
rrr::i32 JanusPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const MarshallDeputy& graph, rrr::i32* res, MarshallDeputy* ret_graph) {
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:2487:103: error: template argument 1 is invalid
rrr::i32 JanusPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const MarshallDeputy& graph, rrr::i32* res, MarshallDeputy* ret_graph) {
^
../src/deptran/rcc_rpc.h:2487:103: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:2487:117: error: ‘MarshallDeputy’ does not name a type
rrr::i32 JanusPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const MarshallDeputy& graph, rrr::i32* res, MarshallDeputy* ret_graph) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2487:155: error: ‘MarshallDeputy’ has not been declared
rrr::i32 JanusPreAccept(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const MarshallDeputy& graph, rrr::i32* res, MarshallDeputy* ret_graph) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2500:107: error: ‘SimpleCommand’ was not declared in this scope
rrr::Future* async_JanusPreAcceptWoGraph(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2500:107: note: suggested alternative: ‘SimpleCmd’
rrr::Future* async_JanusPreAcceptWoGraph(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:2500:120: error: template argument 1 is invalid
rrr::Future* async_JanusPreAcceptWoGraph(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^
../src/deptran/rcc_rpc.h:2500:120: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:2510:97: error: ‘SimpleCommand’ was not declared in this scope
rrr::i32 JanusPreAcceptWoGraph(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, MarshallDeputy* ret_graph) {
^~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2510:97: note: suggested alternative: ‘SimpleCmd’
rrr::i32 JanusPreAcceptWoGraph(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, MarshallDeputy* ret_graph) {
^~~~~~~~~~~~~
SimpleCmd
../src/deptran/rcc_rpc.h:2510:110: error: template argument 1 is invalid
rrr::i32 JanusPreAcceptWoGraph(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, MarshallDeputy* ret_graph) {
^
../src/deptran/rcc_rpc.h:2510:110: error: template argument 2 is invalid
../src/deptran/rcc_rpc.h:2510:133: error: ‘MarshallDeputy’ has not been declared
rrr::i32 JanusPreAcceptWoGraph(const cmdid_t& txn_id, const rank_t& rank, const std::vector<SimpleCommand>& cmd, rrr::i32* res, MarshallDeputy* ret_graph) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2523:109: error: ‘parent_set_t’ does not name a type; did you mean ‘fpregset_t’?
rrr::Future* async_RccAccept(const cmdid_t& txn_id, const rrr::i32& rank, const ballot_t& ballot, const parent_set_t& p, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~
fpregset_t
../src/deptran/rcc_rpc.h:2534:99: error: ‘parent_set_t’ does not name a type; did you mean ‘fpregset_t’?
rrr::i32 RccAccept(const cmdid_t& txn_id, const rrr::i32& rank, const ballot_t& ballot, const parent_set_t& p, rrr::i32* res) {
^~~~~~~~~~~~
fpregset_t
../src/deptran/rcc_rpc.h:2546:111: error: ‘MarshallDeputy’ does not name a type
rrr::Future* async_JanusAccept(const cmdid_t& txn_id, const rrr::i32& rank, const ballot_t& ballot, const MarshallDeputy& graph, const rrr::FutureAttr& __fu_attr__ = rrr::FutureAttr()) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2557:101: error: ‘MarshallDeputy’ does not name a type
rrr::i32 JanusAccept(const cmdid_t& txn_id, const rrr::i32& rank, const ballot_t& ballot, const MarshallDeputy& graph, rrr::i32* res) {
^~~~~~~~~~~~~~
../src/deptran/rcc_rpc.h:2840:60: error: ‘TxReply’ has not been declared
virtual void DispatchTxn(const TxDispatchRequest& req, TxReply* result, rrr::DeferredReply* defer) = 0;
^~~~~~~
../src/deptran/rcc_rpc.h: In member function ‘void janus::ClientControlService::__DispatchTxn__wrapper__(rrr::Request*, rrr::ServerConnection*)’:
../src/deptran/rcc_rpc.h:2916:9: error: ‘TxReply’ was not declared in this scope
TxReply* out_0 = new TxReply;
^~~~~~~
../src/deptran/rcc_rpc.h:2916:18: error: ‘out_0’ was not declared in this scope
TxReply* out_0 = new TxReply;
^~~~~
../src/deptran/rcc_rpc.h:2916:18: note: suggested alternative: ‘count_t’
TxReply* out_0 = new TxReply;
^~~~~
count_t
../src/deptran/rcc_rpc.h:2916:30: error: ‘TxReply’ does not name a type
TxReply* out_0 = new TxReply;
^~~~~~~
../src/deptran/rcc_rpc.h: At global scope:
../src/deptran/rcc_rpc.h:3055:56: error: ‘TxReply’ has not been declared
rrr::i32 DispatchTxn(const TxDispatchRequest& req, TxReply* result) {
^~~~~~~
In file included from ../src/deptran/service.cc:1:
../src/deptran/service.h:48:23: error: ‘MarshallDeputy’ does not name a type
const MarshallDeputy& cmd,
^~~~~~~~~~~~~~
../src/deptran/service.h:117:56: error: ‘MarshallDeputy’ does not name a type
void CarouselReadAndPrepare(const i64& cmd_id, const MarshallDeputy& cmd,
^~~~~~~~~~~~~~
../src/deptran/service.h:131:26: error: ‘MarshallDeputy’ does not name a type
void MsgMarshall(const MarshallDeputy& arg,
^~~~~~~~~~~~~~
../src/deptran/service.h:132:20: error: ‘MarshallDeputy’ has not been declared
MarshallDeputy* ret,
^~~~~~~~~~~~~~
../src/deptran/service.h:168:20: error: ‘MarshallDeputy’ has not been declared
MarshallDeputy* p_md_graph,
^~~~~~~~~~~~~~
../src/deptran/service.h:175:21: error: ‘parent_set_t’ has not been declared
parent_set_t* parents,
^~~~~~~~~~~~
../src/deptran/service.h:181:24: error: ‘parent_set_t’ does not name a type; did you mean ‘fpregset_t’?
const parent_set_t& parents,
^~~~~~~~~~~~
fpregset_t
../src/deptran/service.h:188:24: error: ‘parent_set_t’ does not name a type; did you mean ‘fpregset_t’?
const parent_set_t& parents,
^~~~~~~~~~~~
fpregset_t
../src/deptran/service.h:194:24: error: ‘MarshallDeputy’ does not name a type
const MarshallDeputy& md_graph,
^~~~~~~~~~~~~~
../src/deptran/service.h:200:31: error: ‘parent_set_t’ was not declared in this scope
map<txid_t, parent_set_t>*,
^~~~~~~~~~~~