Changeset 67d224a in rtems
- Timestamp:
- 12/08/95 21:06:15 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 2b5944cf
- Parents:
- 7826883
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/src/cond.c
r7826883 r67d224a 351 351 the_cond->Mutex = *mutex; 352 352 353 /* XXX .. enter critical section .. */ 353 354 _Thread_queue_Enqueue( &the_cond->Wait_queue, 0 ); 354 355 -
c/src/exec/rtems/src/region.c
r7826883 r67d224a 356 356 executing->Wait.return_argument = (unsigned32 *) segment; 357 357 358 the_region->Wait_queue.sync = TRUE;358 _Thread_queue_Enter_critical_section( &the_region->Wait_queue ); 359 359 360 360 _Thread_queue_Enqueue( &the_region->Wait_queue, timeout ); -
c/src/exec/score/src/coremsg.c
r7826883 r67d224a 285 285 } 286 286 287 the_message_queue->Wait_queue.sync = TRUE;287 _Thread_queue_Enter_critical_section( &the_message_queue->Wait_queue ); 288 288 executing->Wait.queue = &the_message_queue->Wait_queue; 289 289 executing->Wait.id = id; -
c/src/exec/score/src/coremutex.c
r7826883 r67d224a 140 140 } 141 141 142 the_mutex->Wait_queue.sync = TRUE;142 _Thread_queue_Enter_critical_section( &the_mutex->Wait_queue ); 143 143 executing->Wait.queue = &the_mutex->Wait_queue; 144 144 executing->Wait.id = id; -
c/src/exec/score/src/coresem.c
r7826883 r67d224a 147 147 } 148 148 149 the_semaphore->Wait_queue.sync = TRUE;149 _Thread_queue_Enter_critical_section( &the_semaphore->Wait_queue ); 150 150 executing->Wait.queue = &the_semaphore->Wait_queue; 151 151 executing->Wait.id = id; -
c/src/exec/score/src/mpci.c
r7826883 r67d224a 196 196 (*_MPCI_table->send_packet)( destination, the_packet ); 197 197 198 _ MPCI_Remote_blocked_threads.sync = TRUE;198 _Thread_queue_Enter_critical_section( &_MPCI_Remote_blocked_threads ); 199 199 200 200 /* -
cpukit/posix/src/cond.c
r7826883 r67d224a 351 351 the_cond->Mutex = *mutex; 352 352 353 /* XXX .. enter critical section .. */ 353 354 _Thread_queue_Enqueue( &the_cond->Wait_queue, 0 ); 354 355 -
cpukit/rtems/src/region.c
r7826883 r67d224a 356 356 executing->Wait.return_argument = (unsigned32 *) segment; 357 357 358 the_region->Wait_queue.sync = TRUE;358 _Thread_queue_Enter_critical_section( &the_region->Wait_queue ); 359 359 360 360 _Thread_queue_Enqueue( &the_region->Wait_queue, timeout ); -
cpukit/score/src/coremsg.c
r7826883 r67d224a 285 285 } 286 286 287 the_message_queue->Wait_queue.sync = TRUE;287 _Thread_queue_Enter_critical_section( &the_message_queue->Wait_queue ); 288 288 executing->Wait.queue = &the_message_queue->Wait_queue; 289 289 executing->Wait.id = id; -
cpukit/score/src/coremutex.c
r7826883 r67d224a 140 140 } 141 141 142 the_mutex->Wait_queue.sync = TRUE;142 _Thread_queue_Enter_critical_section( &the_mutex->Wait_queue ); 143 143 executing->Wait.queue = &the_mutex->Wait_queue; 144 144 executing->Wait.id = id; -
cpukit/score/src/coresem.c
r7826883 r67d224a 147 147 } 148 148 149 the_semaphore->Wait_queue.sync = TRUE;149 _Thread_queue_Enter_critical_section( &the_semaphore->Wait_queue ); 150 150 executing->Wait.queue = &the_semaphore->Wait_queue; 151 151 executing->Wait.id = id; -
cpukit/score/src/mpci.c
r7826883 r67d224a 196 196 (*_MPCI_table->send_packet)( destination, the_packet ); 197 197 198 _ MPCI_Remote_blocked_threads.sync = TRUE;198 _Thread_queue_Enter_critical_section( &_MPCI_Remote_blocked_threads ); 199 199 200 200 /*
Note: See TracChangeset
for help on using the changeset viewer.