Ignore:
Timestamp:
Nov 2, 2017, 5:59:12 PM (7 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
59a0bde
Parents:
513daec
Message:

Used fast_int in more data structure and started using tuple assign

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/invoke.h

    r513daec rc1a9c86  
    6666        struct coStack_t {
    6767                // size of stack
    68                 unsigned int size;
     68                size_t size;
    6969
    7070                // pointer to stack
     
    8585                // whether or not the user allocated the stack
    8686                bool userStack;
    87 
    8887        };
    8988
     
    118117
    119118                // number of acceptable functions
    120                 short size;
     119                __lock_size_t size;
    121120        };
    122121
     
    149148
    150149                // number of currently held monitors
    151                 short                  size;
     150                __lock_size_t size;
    152151
    153152                // last function that acquired monitors
    154                 fptr_t                 func;
     153                fptr_t func;
    155154        };
    156155
     
    168167                // monitors currently held by this thread
    169168                struct __monitor_group_t monitors;
    170 
    171169
    172170                // Link lists fields
Note: See TracChangeset for help on using the changeset viewer.