Changeset 9181f1d
- Timestamp:
- Apr 20, 2018, 9:04:36 AM (7 years ago)
- 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, with_gc
- Children:
- e6d39fe
- Parents:
- 81bb114
- Location:
- src/libcfa
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/bits/locks.h
r81bb114 r9181f1d 69 69 } 70 70 71 72 #ifdef __CFA_DEBUG__ 73 void __cfaabi_dbg_record(__spinlock_t & this, const char * prev_name); 74 #else 75 #define __cfaabi_dbg_record(x, y) 76 #endif 77 71 78 // Lock the spinlock, return false if already acquired 72 79 static inline _Bool try_lock ( __spinlock_t & this __cfaabi_dbg_ctx_param2 ) { … … 74 81 if( result ) { 75 82 disable_interrupts(); 76 // __cfaabi_dbg_debug_do( 77 // this.prev_name = caller; 78 // this.prev_thrd = TL_GET( this_thread ); 79 // ) 83 __cfaabi_dbg_record( this, caller ); 80 84 } 81 85 return result; … … 105 109 } 106 110 disable_interrupts(); 107 // __cfaabi_dbg_debug_do( 108 // this.prev_name = caller; 109 // this.prev_thrd = TL_GET( this_thread ); 110 // ) 111 __cfaabi_dbg_record( this, caller ); 111 112 } 112 113 -
src/libcfa/concurrency/kernel.c
r81bb114 r9181f1d 725 725 thrd->dbg_next = NULL; 726 726 } 727 728 void __cfaabi_dbg_record(__spinlock_t & this, const char * prev_name) { 729 this.prev_name = prev_name; 730 this.prev_thrd = TL_GET( this_thread ); 731 } 727 732 ) 728 733 // Local Variables: //
Note: See TracChangeset
for help on using the changeset viewer.