Ignore:
Timestamp:
Nov 3, 2017, 5:59:32 PM (6 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:
121ac13
Parents:
c1a9c86
Message:

Converted more shorts to int_fast16_T

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/monitor

    rc1a9c86 r59a0bde  
    4141struct monitor_guard_t {
    4242        monitor_desc ** m;
    43         int count;
     43        __lock_size_t  count;
    4444        monitor_desc ** prev_mntrs;
    4545        __lock_size_t   prev_count;
     
    4747};
    4848
    49 void ?{}( monitor_guard_t & this, monitor_desc ** m, int count, void (*func)() );
     49void ?{}( monitor_guard_t & this, monitor_desc ** m, __lock_size_t count, void (*func)() );
    5050void ^?{}( monitor_guard_t & this );
    5151
     
    105105};
    106106
    107 void ?{}(__condition_node_t & this, thread_desc * waiting_thread, unsigned short count, uintptr_t user_info );
     107void ?{}(__condition_node_t & this, thread_desc * waiting_thread, __lock_size_t count, uintptr_t user_info );
    108108void ?{}(__condition_criterion_t & this );
    109109void ?{}(__condition_criterion_t & this, monitor_desc * target, __condition_node_t * owner );
Note: See TracChangeset for help on using the changeset viewer.