Changeset 186


Ignore:
Timestamp:
Jul 30, 2012, 4:12:24 PM (12 years ago)
Author:
karaoui
Message:

we can now have some comments on the xml file.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/xml/xml_parser.c

    r183 r186  
    501501        if      ( strcmp(tag,"port")    == 0 ) cpPortNode(reader);
    502502        else if ( strcmp(tag,"reg")   == 0 ) cpRegNode(reader);
    503         else if ( strcmp(tag,"#text")   == 0 ) { }
     503        else if ( strcmp(tag,"#text"  ) == 0 ) { }
     504        else if ( strcmp(tag,"#comment") == 0 );
    504505        else if ( strcmp(tag,"coproc")  == 0 )
    505506        {
     
    674675        if      ( strcmp(tag,"irq")    == 0 ) irqNode(reader);
    675676        else if ( strcmp(tag,"#text")   == 0 ) { }
     677        else if ( strcmp(tag,"#comment") == 0 );
    676678        else if ( strcmp(tag,"proc")  == 0 )
    677679        {
     
    12341236        else if ( strcmp(tag,"task")    == 0 ) taskNode(reader);
    12351237        else if ( strcmp(tag,"#text")   == 0 ) { }
     1238        else if ( strcmp(tag,"#comment") == 0 );
    12361239        else if ( strcmp(tag,"vspace")  == 0 )
    12371240        {
     
    14301433        else if ( strcmp(tag, "coproc")    == 0 ) coprocNode(reader);
    14311434        else if ( strcmp(tag, "#text")   == 0 ) { }
     1435        else if ( strcmp(tag,"#comment") == 0 );
    14321436        else if ( strcmp(tag, "cluster") == 0 )
    14331437        {
     
    14611465        if      ( strcmp(tag,"cluster") == 0 ) clusterNode(reader);
    14621466        else if ( strcmp(tag,"#text") == 0 ) { }
     1467        else if ( strcmp(tag,"#comment") == 0 );
    14631468        else if ( strcmp(tag,"clusterset") == 0 )
    14641469        {
     
    15081513        if      ( strcmp(tag,"vseg") == 0    ) vsegNode(reader);
    15091514        else if ( strcmp(tag,"#text"  ) == 0 ) { }
     1515        else if ( strcmp(tag,"#comment") == 0 );
    15101516        else if ( strcmp(tag,"globalset") == 0  )
    15111517        {
     
    15501556        if      ( strcmp(tag,"vspace") == 0    ) vspaceNode(reader);
    15511557        else if ( strcmp(tag,"#text"  ) == 0 ) { }
     1558        else if ( strcmp(tag,"#comment") == 0 );
    15521559        else if ( strcmp(tag,"vspaceset") == 0  )
    15531560        {
     
    17061713        else if ( strcmp(tag,"vspaceset")    == 0 ) vspaceSetNode(reader);
    17071714        else if ( strcmp(tag,"#text")        == 0 ) { }
     1715        else if ( strcmp(tag,"#comment") == 0 );
    17081716        else if ( strcmp(tag,"mapping_info") == 0 )
    17091717        {
     
    19051913            }
    19061914            else
     1915            if ( strcmp(tag,"#comment") == 0 );// a way to skips comment
     1916            else
    19071917            {
    19081918                printf("[XML ERROR] Wrong file type: \"%s\"\n", argv[1]);
Note: See TracChangeset for help on using the changeset viewer.