Changeset 2d3ddad in mainline for kernel/generic/src/proc


Ignore:
Timestamp:
2010-06-08T21:08:44Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8f80c77
Parents:
c992538a
Message:

Add more *_locked() assertions.

Location:
kernel/generic/src/proc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/proc/scheduler.c

    rc992538a r2d3ddad  
    379379 * switch to a new thread.
    380380 *
    381  * Assume THREAD->lock is held.
    382  *
    383381 */
    384382void scheduler_separated_stack(void)
     
    388386        as_t *old_as = AS;
    389387       
     388        ASSERT(!THREAD || irq_spinlock_locked(&THREAD->lock));
    390389        ASSERT(CPU != NULL);
    391390       
  • kernel/generic/src/proc/thread.c

    rc992538a r2d3ddad  
    371371 *
    372372 * Detach thread from all queues, cpus etc. and destroy it.
    373  * Assume thread->lock is held!
    374373 *
    375374 * @param thread  Thread to be destroyed.
     
    380379void thread_destroy(thread_t *thread, bool irq_res)
    381380{
     381        ASSERT(irq_spinlock_locked(&thread->lock));
    382382        ASSERT((thread->state == Exiting) || (thread->state == Lingering));
    383383        ASSERT(thread->task);
Note: See TracChangeset for help on using the changeset viewer.