Changeset 24cde55 for src/libcfa/concurrency
- Timestamp:
- Feb 23, 2017, 4:31:20 PM (9 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, resolv-new, with_gc
- Children:
- 43c89a7, 6ce9f7c7
- Parents:
- ca1a547 (diff), ead8c7e (diff)
 Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
 Use the(diff)links above to see all the changes relative to each parent.
- Location:
- src/libcfa/concurrency
- Files:
- 
      - 2 added
- 3 edited
 
 
Legend:
- Unmodified
- Added
- Removed
- 
      src/libcfa/concurrency/kernel.crca1a547 r24cde55 456 456 457 457 void append( simple_thread_list * this, thread * t ) { 458 assert( t->next == NULL);458 assert(this->tail != NULL); 459 459 *this->tail = t; 460 460 this->tail = &t->next; … … 470 470 head->next = NULL; 471 471 } 472 473 472 return head; 474 473 } 
- 
      src/libcfa/concurrency/threadsrca1a547 r24cde55 9 9 // 10 10 // Author : Thierry Delisle 11 // Created On : Tue Jan 17 12:27:26 201 611 // Created On : Tue Jan 17 12:27:26 2017 12 12 // Last Modified By : Thierry Delisle 13 13 // Last Modified On : -- 
- 
      src/libcfa/concurrency/threads.crca1a547 r24cde55 9 9 // 10 10 // Author : Thierry Delisle 11 // Created On : Tue Jan 17 12:27:26 201 611 // Created On : Tue Jan 17 12:27:26 2017 12 12 // Last Modified By : Thierry Delisle 13 13 // Last Modified On : -- 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  