Changeset 6adbe3c2 in mainline
- Timestamp:
- 2007-04-07T18:11:07Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 201abde
- Parents:
- 2a98e58
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/synch/spinlock.c
r2a98e58 r6adbe3c2 84 84 85 85 /* 86 * We need to be careful about printf lock and fb_lock.86 * We need to be careful about printf_lock and fb_lock. 87 87 * Both of them are used to report deadlocks via 88 88 * printf() and fb_putchar(). … … 94 94 * slow VESA framebuffer interaction (especially when 95 95 * run in a simulator) that caused problems with both 96 * printf lock and fb_lock.96 * printf_lock and fb_lock. 97 97 * 98 * Possible deadlocks on both printf lock and fb_lock98 * Possible deadlocks on both printf_lock and fb_lock 99 99 * are therefore not reported as they would cause an 100 100 * infinite recursion. 101 101 */ 102 if (sl == &printf lock)102 if (sl == &printf_lock) 103 103 continue; 104 104 #ifdef CONFIG_FB
Note:
See TracChangeset
for help on using the changeset viewer.