Changeset 6adbe3c2 in mainline for kernel/generic/src/synch/spinlock.c


Ignore:
Timestamp:
2007-04-07T18:11:07Z (18 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
201abde
Parents:
2a98e58
Message:

reflect the renaming of printflock to printf_lock

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/synch/spinlock.c

    r2a98e58 r6adbe3c2  
    8484
    8585                /*
    86                  * We need to be careful about printflock and fb_lock.
     86                 * We need to be careful about printf_lock and fb_lock.
    8787                 * Both of them are used to report deadlocks via
    8888                 * printf() and fb_putchar().
     
    9494                 * slow VESA framebuffer interaction (especially when
    9595                 * run in a simulator) that caused problems with both
    96                  * printflock and fb_lock.
     96                 * printf_lock and fb_lock.
    9797                 *
    98                  * Possible deadlocks on both printflock and fb_lock
     98                 * Possible deadlocks on both printf_lock and fb_lock
    9999                 * are therefore not reported as they would cause an
    100100                 * infinite recursion.
    101101                 */
    102                 if (sl == &printflock)
     102                if (sl == &printf_lock)
    103103                        continue;
    104104#ifdef CONFIG_FB
Note: See TracChangeset for help on using the changeset viewer.