Changeset cc106e4 in mainline for kernel/generic/src


Ignore:
Timestamp:
2012-11-07T18:44:33Z (13 years ago)
Author:
Adam Hraska <adam.hraska+hos@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fc89e32
Parents:
2708f6a
Message:

Fixed build for sparc64/ultra, sparc64/niagara, ppc32, mips32/GXemul.

Location:
kernel/generic/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/smp/smp_call.c

    r2708f6a rcc106e4  
    131131                /*
    132132                 * If a platform supports SMP it must implement arch_smp_call_ipi().
    133                  * It should issue an IPI an cpu_id and invoke smp_call_ipi_recv()
     133                 * It should issue an IPI on cpu_id and invoke smp_call_ipi_recv()
    134134                 * on cpu_id in turn.
    135135                 *
  • kernel/generic/src/synch/condvar.c

    r2708f6a rcc106e4  
    120120 * @return See comment for waitq_sleep_timeout().
    121121 */
    122 int _condvar_wait_timeout_spinlock(condvar_t *cv, spinlock_t *lock,
     122int _condvar_wait_timeout_spinlock_impl(condvar_t *cv, spinlock_t *lock,
    123123        uint32_t usec, int flags)
    124124{
  • kernel/generic/src/synch/rcu.c

    r2708f6a rcc106e4  
    861861                       
    862862                        /* Wait for the GP to complete. */
    863                         int ret = _condvar_wait_timeout_spinlock(&rcu.gp_ended,
    864                                 &rcu.gp_lock, SYNCH_NO_TIMEOUT, SYNCH_FLAGS_INTERRUPTIBLE);
     863                        int ret = _condvar_wait_timeout_spinlock(&rcu.gp_ended, &rcu.gp_lock,
     864                                SYNCH_NO_TIMEOUT, SYNCH_FLAGS_INTERRUPTIBLE);
    865865                       
    866866                        if (ret == ESYNCH_INTERRUPTED) {
Note: See TracChangeset for help on using the changeset viewer.