-
Notifications
You must be signed in to change notification settings - Fork 3
/
TAGS
3028 lines (2856 loc) · 68 KB
/
TAGS
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
clib/ap_dummy.c,25
ISIS_fork_execve(23,827
clib/cl_bcast.c,559
#define BASIC_BCAST(73,2879
BASIC_BCAST(101,4665
BASIC_BCAST(103,4724
BASIC_BCAST(105,4784
BCAST(309,10260
#define BCAST_L(87,3772
BCAST_L(107,4844
BCAST_L(109,4899
BCAST_L(111,4955
BCAST_L(113,5011
abortreply(569,17661
abortreply_l(576,17736
#define bc_alloc(46,1372
bc_cancel(294,9872
#define bc_free(56,1980
bc_getevent(275,9532
bc_poll(259,9188
bc_wait(231,8471
do_bcast(126,5332
do_reply(605,18340
do_reply_l(649,19434
eid_sender(287,9795
flush(534,16831
forward(723,21752
nullreply(550,17164
reply(595,18216
reply_l(639,19306
clib/cl_bcast.h,0
clib/cl_bypass.c,1399
static void ab_flushorder(768,21302
static void ab_setorder(781,21577
#define bc_alloc(36,1123
bc_countdown(414,11664
bc_dump(446,12401
bc_free(39,1177
by_dump(1718,46422
by_dump(1831,49222
by_flush(393,11305
by_flush(1839,49269
by_flushfirst(1288,35502
by_flushfirst(1843,49292
by_makeactive(862,24003
void bypass_aborder(792,21911
bypass_aborder(1862,49512
bypass_checkview(1234,34067
bypass_checkview(1801,48923
bypass_del_pgroup(1142,31645
bypass_del_pgroup(1850,49375
bypass_flush(1548,42353
bypass_flush(1818,49100
bypass_flushgroup(1324,36261
bypass_gcollect(841,23429
bypass_inactivate(1011,27904
bypass_inactivate(1867,49557
bypass_inactive(1117,30809
bypass_inactive(1808,49009
void bypass_init(67,2104
bypass_init(1780,48645
bypass_precheck(1185,32814
bypass_precheck(1795,48856
bypass_probe(1540,42248
bypass_recv(478,13319
bypass_recv(1824,49144
bypass_send(162,4620
bypass_send(1784,48675
bypass_sendterminate(1069,29341
bypass_sendterminate(1858,49475
bypass_unblock(1526,41970
bypass_unblock(1813,49055
collect_replies(1596,43775
do_check_pbuf(885,24616
done_flush(133,3921
isis_querydead(1693,45927
isis_transport(98,3085
make_active(901,24993
make_inactive(1030,28308
ms_countdown(467,13104
pbuf_dirty(113,3538
pbuf_dirty(1835,49244
pg_ismemb(399,11348
start_flush(120,3628
transport_lookup(88,2910
transport_lookup(1854,49428
clib/cl_bypass.h,94
#define MAY_REPLY(79,2333
typedef struct by_info by_info;17,683
#define byi_size(41,1207
clib/cl_cmd.h,24
#define getargs(19,689
clib/cl_coord.c,290
cc_panic(231,6945
cc_refuse(417,12115
cc_result(202,6155
cc_terminate(348,10415
cc_terminate_l(358,10565
cc_terminate_msg(370,10756
cc_watching(318,9412
cohort(308,9216
coord_cohort(40,1197
coord_cohort_l(51,1444
coord_init(24,835
coordinator(256,7594
do_ccterminate(387,11260
clib/cl_coord.h,0
clib/cl_dump.c,281
atoaddr(220,6343
callername 468,13366
cl_dump(43,1313
dump_cond(428,12115
dump_sid(421,12005
dump_sview(435,12199
dump_task(329,9004
dump_tasks(317,8713
isis_dump(34,1149
isis_logging(300,8402
paddr(135,4072
paddrs(122,3878
peid(203,5952
pmsg(277,7725
psid(260,7417
clib/cl_dump.h,0
clib/cl_failed.c,20
isis_failed(17,683
clib/cl_groups.c,245
add_gname(132,3904
add_group(152,4289
gi_alloc(22,767
gi_free(60,2004
group_unmap(176,4962
#define gv_allocate(196,5430
#define gv_deallocate(197,5485
isis_gv_alloc(200,5555
isis_gv_free(210,5684
map_gaddr(118,3593
map_gname(100,3209
clib/cl_groupview.h,0
clib/cl_hashtab.c,293
hash_tab_add(164,4587
hash_tab_delete(182,4866
hash_tab_destroy(88,2656
hash_tab_entries(62,1976
hash_tab_lookup(222,5860
hash_tab_replace(173,4725
hash_tab_search(246,6359
hash_tab_stats(276,7101
hash_tab_update(115,3253
typedef struct ht_link ht_link;17,559
make_hash_tab(43,1295
clib/cl_hashtab.h,130
typedef struct hash_tab hash_tab;2,80
void hash_tab_entries 10,386
void *hash_tab_search 18,796
hash_tab *make_hash_tab(6,130
clib/cl_inter.c,1348
#define DEC(87,3215
#define INC(86,3181
INRANGE(91,3313
#define SEQN(85,3143
check_nacks(936,28001
dump_interclient(1447,42848
force_lazy(1997,58923
fragman(507,14675
get_addr_by_site(150,4920
ic_dump(1579,47522
ic_newmsg(693,20495
intercl_accept(849,24830
intercl_delete(411,11897
intercl_deliver(1002,29926
intercl_dequeue(1811,53679
intercl_died(1274,37940
intercl_do_input(818,24259
intercl_drain(559,16266
intercl_drain_any_input(807,23914
intercl_drain_one_input(830,24445
intercl_flushacks(1256,37550
intercl_gotmsg(1711,50937
intercl_init(104,3550
intercl_isalive(195,6161
intercl_ismother(290,8915
intercl_lookup(180,5838
intercl_newview(1379,40887
intercl_output(702,20734
intercl_quiet(1128,34024
intercl_sweep(1159,34719
intercl_trysend(303,9204
intercl_trytosend(596,17271
intercl_unblock(1831,54137
intercl_wantflush(1661,49737
intercl_xmit(737,21854
#define io_alloc(130,4408
io_free(133,4461
ioq_dump(1466,43278
isis_fragment(421,12090
isis_rcvmsg(1890,55874
isis_receipt(1694,50646
isis_sendmsg(1975,58285
lazy_flush(1142,34297
#define mdalloc(81,2999
#define mdfree(82,3055
msg_tank_create(1610,48500
msg_tank_dequeue(1631,49071
msg_tank_dump(1649,49478
msg_tank_set_max(1621,48825
net_send(331,9979
#define sendmsg(30,1016
#define set_tank_status(69,2347
udp_rpc(1929,56968
clib/cl_inter.h,43
typedef struct msg_tank msg_tank;163,7402
clib/cl_isis.c,2873
static int Bcmp(671,21951
Bvec(663,21850
MSG_ENQUEUE(2098,56543
_ADDRESS(2839,76427
_PRO(2763,74611
_cmp(2861,76754
_isnull(2854,76669
_pg_rank(2634,70940
_pg_rank_all(2653,71410
act_begin(1819,49150
act_block(1971,53344
act_end(1832,49454
act_ev(1875,50518
act_restart(2017,54715
act_scan(1858,50024
act_start(1839,49537
addr_isequal(3119,82860
addr_ismine(3126,82946
aptr_isnull(3112,82769
cc_gotres(1884,50635
check_cl_watch_queue(599,19831
cl_del_pgroup(2518,68147
cl_do_del_pgroup(2526,68319
cl_getrname(2233,59568
cl_local_delivery(2280,60655
cl_new_view(2340,62490
cl_rcv_reply(2734,73739
cl_register(1460,40048
cl_rname(2218,59286
cl_setscope(2395,63902
cl_watch_cancel(568,18971
cl_watch_for(553,18576
#define clw_alloc(543,18419
clw_free(546,18481
collect_reply(2327,62160
void do_cl_dump(196,7294
dump_act(1891,50736
dump_cl_watch_queue(579,19209
find_act(168,6814
fork_sighandlers(1012,28740
gop_lookup(2251,59939
isis(1479,40629
isis_accept_events(1320,36441
isis_accept_timeout(191,7249
isis_decon_wait(1601,43884
isis_disconnect(520,17943
isis_do_select(700,22322
isis_dosend(1558,42942
isis_entry(2153,57590
isis_fork_execve(3250,86000
isis_fork_execve(3294,86938
isis_gotmsg(1716,46326
isis_gotsig(694,22267
isis_has_crashed(2071,55866
isis_init(467,16714
isis_init_l(212,7728
isis_input_drain(1579,43514
isis_invoke(2268,60402
isis_logentry(2172,58218
isis_mainloop(1047,29656
isis_ondrain(1357,37226
void isis_overflow(183,7130
isis_perror(2944,78702
isis_pg_copy(2676,72116
isis_probe(494,17415
isis_pseudo_io(994,28476
isis_pseudo_io_cancel(1004,28627
isis_read(1615,44171
isis_runtasks(1373,37519
static void isis_sdispatch(686,22167
isis_select(863,25887
isis_select_from_lisp(3202,84745
isis_send(1541,42521
isis_send_hello(484,17254
vfunc *isis_setfilter(2056,55586
isis_setmax(638,21390
isis_sleep(2958,78999
isis_sleep_ms(2970,79233
isis_start_done(509,17741
isis_sys_accept(1633,44556
isis_task(2201,58940
isis_timeout(3010,80129
isis_timeout_cancel(3055,81417
isis_timeout_reschedule(3019,80307
isis_wait(854,25687
isis_wait_cancel(798,24535
isis_work_to_do(1346,37040
#define iw_alloc(124,5523
typedef struct iw_desc iw_desc;95,4749
#define iw_free(125,5577
lisp_exit(2824,76122
lisp_select(3141,83219
make_address(3098,82476
mother_add_fields(473,16839
msg_rcv(2115,56887
msg_ready(2131,57210
panic(2777,74878
pentry(2183,58493
pg_getlocalview(2588,69819
pg_getview(2606,70214
pg_local_lookup(2575,69563
pgroups_dump(2414,64509
pr_dump(2888,77620
pr_makedump(2920,78205
pr_rescan(2901,77867
pr_shutdown(2910,78024
protos_despool(1682,45602
protos_gotmsg(1695,45890
protos_rpc(1519,41827
run_isis(1071,30117
run_tasks(1063,30031
save_address(3075,81802
set_entry(2933,78518
set_isis_time(2991,79757
t_printable_name(2143,57410
clib/cl_join.c,770
allow_xfers_xd(737,21006
cc_pick_oldest(460,13702
do_xfer_out(701,20181
#define is_ifunc(76,2284
#define is_ifunc(78,2393
join_block(450,13572
join_init(45,1288
log_coldstart(84,2483
log_ignoreold(89,2545
pg_addmemb(860,24415
pg_client(884,25181
pg_client_action(913,25902
pg_client_req(902,25632
pg_client_verifier(775,21977
pg_create(828,23306
pg_dojoin(95,2617
pg_dup(785,22189
pg_join(63,2007
pg_join_action(524,15295
pg_join_inhibit(429,13102
pg_join_req(485,14308
pg_join_verifier(766,21823
pg_subgroup(798,22487
} x_where;30,926
xf_where(374,11559
xfer_flush(718,20593
xfer_out(685,19894
xfer_rcv_small(410,12724
xfer_rcv_unpack(382,11737
xfer_refuse(678,19803
xfer_send(622,18179
xfer_to_checkpoint(592,17353
} xinfo;520,15235
clib/cl_pgroup.c,414
leaving_check(120,3649
pg_addclient(199,5579
pg_delclient(227,6425
pg_delete(90,2766
pg_leave(158,4430
pg_list(79,2509
pg_lookup(37,1151
pg_monitor(300,8106
pg_monitor_act(349,9584
pg_monitor_cancel(396,10823
pg_monitor_dump(455,12435
pg_new_view(431,11659
pg_pwatch_invoke(415,11240
pg_signal(252,7113
pg_unmonitor(385,10643
#define pw_alloc(285,7871
pw_free(288,7935
refresh_gaddr_cache(21,830
clib/cl_plist.c,118
pl_add(128,3262
pl_create(46,1281
pl_delete(168,4213
pl_makegroup(118,3004
pl_monitor(28,889
pl_remove(152,3865
clib/cl_plist.h,53
#define pl_getview(25,848
#define pl_rank(26,901
clib/cl_print.c,19
isis_print(18,669
clib/cl_queues.c,225
pg_add(169,3652
pg_alloc(155,3347
pg_find(184,3973
qu_add(48,1278
qu_add_cb(74,1754
qu_add_pg(61,1512
qu_add_sid(86,2001
qu_alloc(24,822
qu_alloc_pg(36,1052
qu_find(138,3003
qu_freeall(120,2713
qu_resort(100,2297
clib/cl_queues.h,1262
#define pg_add_ioq(255,12727
#define pg_add_mp(253,12585
#define pg_add_pgroup(250,12361
#define pg_add_pw(254,12656
#define pg_add_qu(251,12432
#define pg_add_wp(252,12514
#define qalloc(131,4898
#define qu_add_bc(245,12000
#define qu_add_clw(247,12144
#define qu_add_cond(233,11139
#define qu_add_eid(242,11785
#define qu_add_et(241,11714
#define qu_add_gip(243,11856
#define qu_add_gp(238,11497
#define qu_add_gw(239,11570
#define qu_add_ioq(246,12071
#define qu_add_md(235,11282
#define qu_add_mp(234,11211
#define qu_add_nd(240,11641
#define qu_add_proc(236,11353
#define qu_add_qu(232,11057
#define qu_add_svm(244,11929
#define qu_add_tp(237,11424
#define qu_alloc1(142,5408
#define qu_alloc3(154,6154
#define qu_alloc_int(248,12215
#define qu_alloc_qu(231,10986
#define qu_alloc_tp(249,12288
#define qu_append(181,7867
#define qu_free(190,8293
#define qu_free(209,9566
#define qu_head(140,5329
#define qu_null(230,10914
#define qu_remove(133,4954
#define qu_tnull(168,7048
#define wsid_add_wp(256,12798
clib/cl_setjmp.c,0
clib/cl_spool1.c,39
sp_init(27,834
sp_rcv_replay(37,1041
clib/cl_sundummy.c,31
notify_set_itimer_func(20,809
clib/cl_sunlwp_fix.c,98
_cv_destroy(58,1367
_cv_notify(51,1295
_cv_wait(44,1227
_mon_enter(30,1077
_mon_exit(37,1153
clib/cl_sview.c,266
site_getview(27,931
site_monitor_dump(276,7809
#define sv_alloc(73,1985
sv_doecall(156,3683
sv_dovcall(138,3210
sv_free(76,2048
sv_init(49,1497
sv_monitor(86,2191
sv_monitor_cancel(94,2314
sv_new_sview(169,4049
sv_watch(101,2402
sv_watch_cancel(124,2977
clib/cl_sview.h,0
clib/cl_task.c,905
#define T_scheck(282,7439
#define T_scheck(289,7820
_ISISCALL1(134,3926
_ISISCALL1(144,4042
call_allegro(113,3408
do_task_dequeue(202,5930
#define esize(71,2513
invoke(568,15832
isis_accept_events_loop(346,9034
isis_entry_stacksize(248,6761
isis_fork(309,8202
isis_fork_urgent(293,7860
isis_init_lisp_funs 106,3295
# define isis_longjmp(62,2293
# define isis_setjmp(61,2258
spanic(273,7203
# define st_alloc(76,2637
# define st_free(77,2696
t_final(84,2790
t_init(158,4199
t_on_sys_stack(328,8588
t_scheck(263,7030
t_set_stacksize(225,6331
t_sig(665,18765
t_sig_all(693,19407
t_sig_urgent(702,19529
t_wait(724,20050
t_wait_l(732,20143
t_yield(757,20798
#define task_enqueue(184,4928
task_swtch(361,9327
thread_isis_cleanup(925,25995
thread_isis_enter(778,21266
thread_isis_enter(945,26384
thread_isis_exit(901,25188
thread_isis_exit(951,26450
clib/cl_task.h,2654
#define ISISCALL0(168,6165
#define ISISCALL0(420,15908
#define ISISCALL1(169,6247
#define ISISCALL1(422,16028
#define ISISCALL2(170,6332
#define ISISCALL2(424,16149
#define ISISCALL3(171,6424
#define ISISCALL3(426,16273
#define ISISCALL4(172,6522
#define ISISCALL4(428,16400
# define ISIS_ENTER(520,21952
# define ISIS_ENTER(543,23215
# define ISIS_ENTER_L(521,22012
# define ISIS_EXIT(528,22496
# define ISIS_EXIT(545,23264
#define ISIS_MONITOR_ENTER(514,21659
#define ISIS_MONITOR_EXIT(515,21778
# define ISIS_RETURN(532,22753
#define MUTEX_ALLOC(187,6841
#define MUTEX_ALLOC(244,8952
#define MUTEX_ALLOC(273,9998
#define MUTEX_ALLOC(320,11733
#define MUTEX_ALLOC(379,14130
#define MUTEX_LOCK(188,6890
#define MUTEX_LOCK(245,8999
#define MUTEX_LOCK(274,10048
#define MUTEX_UNLOCK(189,6936
#define MUTEX_UNLOCK(246,9044
#define MUTEX_UNLOCK(276,10184
#define MUTEX_UNLOCK(322,11816
#define MUTEX_UNLOCK(381,14201
#define SELECT(162,6006
#define SELECT(346,13006
#define SELECT(405,15312
#define THREAD_ALLOC(195,7263
#define THREAD_ALLOC(255,9462
#define THREAD_ALLOC(284,10578
#define THREAD_ALLOC(325,11907
#define THREAD_ALLOC(384,14282
# define THREAD_ENTER_ISIS(539,23145
#define THREAD_FORK(193,7162
#define THREAD_FORK(252,9353
#define THREAD_FORK(281,10407
#define THREAD_FORK(338,12695
#define THREAD_FORK(397,15019
#define THREAD_FREE(198,7696
#define THREAD_FREE(258,9658
#define THREAD_FREE(286,10716
#define THREAD_FREE(326,11976
#define THREAD_FREE(385,14354
# define THREAD_LEAVE_ISIS(538,23088
#define THREAD_SELF(192,7111
#define THREAD_SELF(251,9274
#define THREAD_SELF(280,10352
#define THREAD_SELF(334,12466
#define THREAD_SELF(393,14817
#define THREAD_SIGNAL(197,7578
#define THREAD_SIGNAL(257,9597
#define THREAD_SIGNAL(290,10980
#define THREAD_SIGNAL(328,12134
#define THREAD_SIGNAL(387,14486
#define THREAD_WAIT(196,7373
#define THREAD_WAIT(256,9538
#define THREAD_WAIT(287,10780
#define THREAD_WAIT(327,12055
#define THREAD_WAIT(386,14420
#define THREAD_YIELD(190,6984
#define THREAD_YIELD(247,9088
#define THREAD_YIELD(277,10236
#define THREAD_YIELD(329,12215
#define THREAD_YIELD(388,14554
} clisp_funs;314,11575
#define cv_destroy(220,8358
#define cv_notify(219,8318
#define cv_wait(218,8282
# define db_print(87,2385
# define db_print(89,2449
#define mon_enter(216,8197
#define mon_exit(217,8240
# define t_fork(495,20483
# define t_fork_msg(497,20634
# define t_fork_urgent(496,20555
# define t_fork_urgent_msg(498,20701
# define t_waiting(500,20776
#define task_dequeue(512,21587
clib/cl_token.c,353
do_send_token(321,9264
dump_tokens(130,3925
static void ignore(316,9208
map_token(62,2117
send_token(231,6610
#define t_alloc(40,1403
t_failed(332,9436
#define t_free(41,1454
t_holder(304,8967
t_newholder(343,9683
t_pass(212,6201
t_request(165,5033
tk_init(49,1666
tk_rcv(105,3266
tk_send(88,2779
token_pass(265,7741
token_req(194,5730
clib/cl_token.h,0
clib/cl_typedefs.h,1886
58,1498
104,2671
106,2679
typedef struct bc_args bc_args;85,2298
typedef struct bc_node bc_node;79,2110
typedef struct bitvec bitvec;77,2048
typedef struct cl_watch cl_watch;83,2236
typedef struct qnode *condition;91,2459
# define 56,1413
# define 99,2611
# define 102,2648
typedef struct etree etree;66,1712
typedef struct event_id event_id;68,1768
typedef struct fraghdr fraghdr;73,1934
typedef struct ginfo ginfo;70,1838
typedef struct gl_desc gl_desc;78,2078
typedef struct gnode gnode;67,1740
typedef struct groupview groupview;69,1802
typedef struct iclpkt iclpkt;75,1990
55,1390
101,2635
typedef int ifunc(93,2520
typedef unsigned int 96,2569
typedef struct interclient interclient;71,1866
typedef struct intersite intersite;80,2142
typedef struct ioq ioq;74,1966
typedef struct iovec iovec;76,2020
typedef struct mdesc mdesc;72,1906
typedef struct pwatch pwatch;81,2178
typedef struct qnode qnode;61,1556
typedef struct sockaddr_in saddr;90,2425
typedef short site_id;94,2544
struct 26,953
struct 27,967
struct 28,980
struct 29,1002
struct 30,1017
struct 31,1031
struct 32,1045
struct 33,1059
struct 34,1076
struct 35,1094
struct 36,1108
struct 37,1128
struct 38,1142
struct 39,1158
struct 40,1170
struct 41,1185
struct 42,1199
struct 43,1214
struct 44,1230
struct 45,1248
struct 46,1263
struct 47,1277
struct 48,1291
struct 49,1307
struct 50,1324
struct 51,1339
struct 52,1354
struct 53,1368
typedef struct sview sview;65,1684
typedef struct svmon svmon;84,2270
typedef struct sys_groupview sys_groupview;63,1610
typedef struct task task;62,1584
typedef struct token token;88,2390
typedef struct verify verify;64,1654
typedef void vfunc(25,927
typedef struct wnode wnode;82,2208
typedef union address x_id;92,2492
typedef struct x_info x_info;87,2360
typedef struct x_part x_part;86,2330
60,1530
clib/cl_watch.c,504
cl_pmonitor(473,13279
cl_proc_failed(485,13576
do_cl_proc_failed(492,13711
do_pmonitor(253,7043
pg_detect_failure(146,4330
void pg_detect_pfailure(123,3816
pg_detected_failure(217,6166
pg_failed_first(229,6366
pg_watch(72,2316
pg_watch_cancel(329,9029
pg_watching(186,5391
proc_monitor_dump(513,14352
proc_watch(265,7280
proc_watch_cancel(359,9970
pwatch_call(291,7988
#define w_alloc(35,1070
w_free(38,1127
w_init(54,1528
w_new_sl(310,8540
w_new_view(395,10890
watch_call(374,10300
clib/fisis.h,45
#define sleep(23,692
#define t_wait(24,738
clib/flib.c,484
abcast_(27,888
abortreply_(55,1336
address_(197,3236
bcast_(41,1112
bclr_(183,3115
bis_(175,3035
bit_(167,2956
btst_(190,3172
cbcast_(62,1399
fbcast_(92,1999
forward_(83,1860
gbcast_(106,2223
#define is_ifunc(77,1716
#define is_ifunc(79,1821
void newspost_(254,4110
nulladdress_(210,3538
nullreply_(120,2447
paddr_(127,2523
paddrs_(134,2590
pclients_(223,3684
peid_(141,2659
pmembers_(216,3601
pmsg_(148,2721
reply_(155,2780
spool_(231,3768
spoolm_(243,3936
clib/flib1.c,4077
abcastl_(27,848
addrcmp_(55,1329
addrentry_(90,1721
addrincarn_(104,1869
addrisequal_(76,1560
addrismine_(62,1410
addrisnull_(69,1485
addrprocess_(83,1642
addrsite_(97,1796
alistlen_(111,1946
bcastl_(41,1089
bccancel_(118,2027
bcgetevent_(125,2102
bcpoll_(133,2219
bcwait_(140,2290
cbcastl_(147,2361
ccrefuse_(187,3051
ccterminate_(175,2849
ccterminatel_(161,2603
coordcohort_(200,3326
eidsender_(212,3587
fbcastl_(220,3696
gbcastl_(234,3937
gvclient_(1456,21963
gvdeparted_(1471,22176
gvflag_(1412,21378
gvgaddr_(1419,21461
gvincarn_(1405,21291
gvjoined_(1464,22083
gvmember_(1448,21843
gvname_(1426,21553
gvnclient_(1441,21754
gvnmemb_(1434,21669
gvviewid_(1398,21204
#define is_ifunc(194,3183
#define is_ifunc(196,3288
isisacceptevents_(248,4179
isisdefinetype_(255,4264
isisdir_(1367,20907
isisdisconnect_(264,4469
isisentry_(270,4528
isisentrystacksize_(282,4727
isiserrno_(1361,20853
isisexcept_(306,5085
isisexceptsig_(359,5923
isisinit_(289,4839
isisinput_(296,4933
isisinputsig_(341,5639
isislogentry_(468,7675
isislogging_(368,6067
isismainloop_(375,6142
isisnreplies_(1380,21037
isisnsent_(1374,20984
isisoutput_(331,5478
isisoutputsig_(350,5780
isisperror_(383,6275
isisrexec_(390,6344
isissignal_(400,6621
isissignalsig_(410,6785
isissleep_(419,6925
isissleepms_(426,6993
isissocket_(1386,21096
isisstartdone_(433,7070
isisstate_(1392,21151
isistask_(439,7128
isistimeout_(448,7255
isistimeoutreschedule_(458,7441
isiswait_(316,5238
isiswaitcancel_(324,5407
logcheckpoint_(476,7788
logflush_(483,7876
loghasckpt_(490,7959
logrecovered_(497,8042
logwrite_(504,8133
msgdelete_(512,8242
msgdests_(620,10037
msgfread_(534,8490
msgfwrite_(541,8570
msggen_(549,8672
msgget_(569,9074
msggetfld_(585,9392
msggetforwarder_(641,10292
msggetlen_(606,9889
msggettype_(648,10386
msgincrefcount_(656,10514
msgisforwarded_(613,9958
msgmakelazy_(663,10595
msgnewmsg_(671,10704
msgput_(677,10765
msgputfld_(693,11072
msgread_(519,8312
msgreplyto_(627,10120
msgrewind_(710,11420
msgsender_(634,10207
msgwrite_(526,8390
myaddress_(1340,20619
myhost_(1346,20679
mypid_(1334,20567
mysid_(1328,20518
mysincarn_(1322,20461
mysno_(1316,20412
newsapost_(717,11497
newscancel_(727,11650
newsclear_(734,11730
newsclearall_(742,11839
newssubscribe_(750,11954
pgclient_(757,12087
pgclientverifier_(765,12223
pgdelete_(774,12367
pggetlocalview_(781,12450
pggetview_(788,12550
pgjoin_(795,12640
pgjoininhibit_(841,13354
pgleave_(848,13434
pglookup_(855,13508
pgmonitor_(862,13591
pgmonitorcancel_(876,13848
pgrank_(883,13938
pgrankall_(890,14035
pgsignal_(897,14139
pgsubgroup_(905,14251
pgwatch_(915,14487
pgwatchcancel_(930,14787
procwatch_(937,14870
procwatchcancel_(951,15127
replyl_(958,15215
rmgrcreate_(970,15394
rmgrgetinfo_(977,15480
rmgrjoin_(985,15607
rmgrlasttofail_(992,15689
rmgrregister_(1000,15870
rmgrrestart_(1007,15950
rmgrstartlog_(1014,16042
rmgrstoplog_(1022,16151
rmgrunregister_(1030,16258
rmgrupdate_(1036,16323
sitegetview_(1043,16467
sitenames_(1353,20755
spoolanddiscard_(1503,22661
spoolcancel_(1524,22946
spooldiscard_(1491,22474
spoolinquire_(1515,22843
spoolplaythrough_(1542,23149
spoolreplay_(1478,22274
spoolsetckptpointer_(1568,23602
spoolsetreplaypointer_(1555,23373
spoolwait_(1533,23048
svfailed_(1072,16783
svincarn_(1064,16687
svmonitor_(1086,16949
svmonitorcancel_(1099,17172
svrecovered_(1079,16863
svslist_(1056,16598
svviewid_(1049,16531
svwatch_(1106,17262
svwatchcancel_(1121,17537
tfork_(1169,18197
tforkurgent_(1179,18359
tholder_(1128,17623
tonsysstack_(1137,17757
tpass_(1146,17895
trequest_(1154,17998
tscheck_(1163,18152
tsig_(1189,18525
tsigall_(1197,18613
tsigurgent_(1205,18708
twait_(1219,18863
twaitl_(1226,18934
tyield_(1213,18811
xabort_(1234,19028
xbegin_(1240,19077
xcommit_(1246,19126
xferflush_(829,13268
xferout_(809,12878
xferrefuse_(835,13310
xgetid_(1253,19208
xidcmp_(1260,19282
xoutcomes_(1267,19360
xoutcomesflush_(1278,19605
xterm_(1286,19738
clib/flib2.c,4285
abcast_l_(27,874
addr_cmp_(55,1357
addr_entry_(90,1754
addr_incarn_(104,1904
addr_isequal_(76,1591
addr_ismine_(62,1439
addr_isnull_(69,1515
addr_process_(83,1674
addr_site_(97,1830
alist_len_(111,1982
bc_cancel_(118,2064
bc_getevent_(125,2140
bc_poll_(133,2258
bc_wait_(140,2330
bcast_l_(41,1116
cbcast_l_(147,2402
cc_refuse_(187,3096
cc_terminate_(175,2893
cc_terminate_l_(161,2645
coord_cohort_(200,3372
eid_sender_(212,3634
fbcast_l_(220,3744
gbcast_l_(234,3986
gv_client_(1456,22178
gv_departed_(1471,22393
gv_flag_(1412,21587
gv_gaddr_(1419,21671
gv_incarn_(1405,21499
gv_joined_(1464,22299
gv_member_(1448,22057
gv_name_(1426,21764
gv_nclient_(1441,21967
gv_nmemb_(1434,21881
gv_viewid_(1398,21411
#define is_ifunc(194,3229
#define is_ifunc(196,3334
isis_accept_events_(248,4229
isis_define_type_(255,4316
isis_dir_(1367,21109
isis_disconnect_(264,4523
isis_entry_(270,4583