VirtualBox

Ignore:
Timestamp:
Aug 7, 2016 1:13:28 PM (8 years ago)
Author:
vboxsync
Message:

dtrace: warnings

Location:
trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/ctf_create.c

    r62829 r63129  
    513513
    514514        for (dtd = ctf_list_next(&fp->ctf_dtdefs); dtd != NULL; dtd = ntd) {
    515                 if (dtd->dtd_type <= fp->ctf_dtoldid)
     515                if (dtd->dtd_type <= (intptr_t /*vbox*/)fp->ctf_dtoldid)
    516516                        continue; /* skip types that have been committed */
    517517
     
    11651165        if (dst_type == CTF_ERR && name[0] != '\0') {
    11661166                for (dtd = ctf_list_prev(&dst_fp->ctf_dtdefs); dtd != NULL &&
    1167                     dtd->dtd_type > dst_fp->ctf_dtoldid;
     1167                    dtd->dtd_type > (intptr_t /*vbox*/)dst_fp->ctf_dtoldid;
    11681168                    dtd = ctf_list_prev(dtd)) {
    11691169                        if ((uint_t)CTF_INFO_KIND(dtd->dtd_data.ctt_info) == kind &&
  • trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/ctf_lookup.c

    r58990 r63129  
    234234
    235235        type = CTF_TYPE_TO_INDEX(type);
    236         if (type > 0 && type <= fp->ctf_typemax) {
     236        if (type > 0 && type <= (intptr_t/*vbox*/)fp->ctf_typemax) {
    237237                *fpp = fp; /* function returns ending CTF container */
    238238                return (LCTF_INDEX_TO_TYPEPTR(fp, type));
  • trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/ctf_open.c

    r53657 r63129  
    491491                         */
    492492                        if (CTF_TYPE_ISCHILD(tp->ctt_type) == child &&
    493                             CTF_TYPE_TO_INDEX(tp->ctt_type) <= fp->ctf_typemax)
     493                            CTF_TYPE_TO_INDEX(tp->ctt_type) <= (intptr_t/*vbox*/)fp->ctf_typemax)
    494494                                fp->ctf_ptrtab[
    495495                                    CTF_TYPE_TO_INDEX(tp->ctt_type)] = id;
     
    536536                            strcmp(ctf_strptr(fp, tp->ctt_name), "") == 0 &&
    537537                            CTF_TYPE_ISCHILD(tp->ctt_type) == child &&
    538                             CTF_TYPE_TO_INDEX(tp->ctt_type) <= fp->ctf_typemax)
     538                            CTF_TYPE_TO_INDEX(tp->ctt_type) <= (intptr_t /*vbox*/)fp->ctf_typemax)
    539539                                fp->ctf_ptrtab[
    540540                                    CTF_TYPE_TO_INDEX(tp->ctt_type)] = dst;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette