~jsvoboda/helenos/sysel

« back to all changes in this revision

Viewing changes to uspace/app/sbi/src/ancr.c

  • Committer: Jiri Svoboda
  • Date: 2010-05-08 08:10:44 UTC
  • Revision ID: jiri@wiwaxia-20100508081044-5hvcjwu15rsfvgnv
Update SBI to rev. 244.

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
 
81
81
        while (node != NULL) {
82
82
                modm = list_node_data(node, stree_modm_t *);
83
 
                assert(modm->mc == mc_csi); /* XXX */
84
 
                ancr_csi_dfs(prog, modm->u.csi);
 
83
 
 
84
                switch (modm->mc) {
 
85
                case mc_csi:
 
86
                        ancr_csi_dfs(prog, modm->u.csi);
 
87
                        break;
 
88
                case mc_enum:
 
89
                        break;
 
90
                }
85
91
 
86
92
                node = list_next(&prog->module->members, node);
87
93
        }