Ignore:
Timestamp:
Nov 3, 2014, 10:58:31 AM (10 years ago)
Author:
alain
Message:

Removing the use_tty, use_nic, use_tim, use_cma, etc.) in the mapping.
These static constructs are replaced by new system calls in the stdio library.

File:
1 edited

Legend:

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

    r363 r439  
    714714    }
    715715
    716     /////////// get use_tty  attribute (optionnal : 0 if missing)
    717     value = getIntValue(reader, "usetty", &ok);
    718 #if XML_PARSER_DEBUG
    719 printf("      usetty = %x\n", value);
    720 #endif
    721     task[task_index]->use_tty = (ok)? value : 0;
    722 
    723     /////////// get use_nic  attribute (optionnal : 0 if missing)
    724     value = getIntValue(reader, "usenic", &ok);
    725 #if XML_PARSER_DEBUG
    726 printf("      usenic = %x\n", value);
    727 #endif
    728     task[task_index]->use_nic = (ok)? value : 0;
    729 
    730     /////////// get use_tim attribute (optionnal : 0 if missing)
    731     value = getIntValue(reader, "usetim", &ok);
    732 #if XML_PARSER_DEBUG
    733 printf("      usetim = %x\n", value);
    734 #endif
    735     task[task_index]->use_tim = (ok)? value : 0;
    736 
    737     /////////// get use_hba  attribute (optionnal : 0 if missing)
    738     value = getIntValue(reader, "usehba", &ok);
    739 #if XML_PARSER_DEBUG
    740 printf("      usehba = %x\n", value);
    741 #endif
    742     task[task_index]->use_hba = (ok)? value : 0;
    743 
    744     /////////// get usecma  attribute (optionnal : 0 if missing)
    745     value = getIntValue(reader, "usecma", &ok);
    746 #if XML_PARSER_DEBUG
    747 printf("      usecma = %x\n", value);
    748 #endif
    749     task[task_index]->use_cma = (ok)? value : 0;
    750 
    751716    task_index++;
    752717    task_loc_index++;
Note: See TracChangeset for help on using the changeset viewer.