Ignore:
Timestamp:
Jul 18, 2012, 4:59:19 PM (12 years ago)
Author:
karaoui
Message:

Adding BLOB type for vobj.
Don't forget to set as BLOB type the mapping_info vobj in the xml.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/memo/src/libelfpp/elfpp_section.cc

    r163 r173  
    2323#include <stdlib.h>
    2424#include <cstring>
     25#include <stdlib.h>
     26
    2527
    2628#include <dpp/foreach>
     
    8183
    8284    size_ = size;
     85  }
     86
     87  void section::set_content(void* a)
     88  {
     89    if(content_)
     90        free(content_);
     91    content_ = (uint8_t*) a;
    8392  }
    8493
Note: See TracChangeset for help on using the changeset viewer.