Changeset 128
- Timestamp:
- Jun 12, 2007, 7:22:43 AM (18 years ago)
- Location:
- GPL/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/alsa-kernel/core/hwdep.c
r118 r128 128 128 schedule(); 129 129 down(&hw->open_mutex); 130 #ifndef TARGET_OS2131 /* MKG quiet OW:132 see include/linux/signal.h133 #define signal_pending(p) 0134 Never returns true */135 130 if (signal_pending(current)) { 136 131 err = -ERESTARTSYS; 137 132 break; 138 133 } 139 #endif /* TARGET_OS2 */140 134 } 141 135 remove_wait_queue(&hw->open_wait, &wait); -
GPL/trunk/include/linux/sched.h
r34 r128 54 54 extern signed long schedule_timeout(signed long timeout); 55 55 56 #endif 56 static inline int signal_pending(struct task_struct *p) 57 { 58 #ifdef DEBUG 59 dprintf(("signal_pending always returns 0")); 60 #endif /* DEBUG */ 61 return 0; 62 } 63 64 #endif /* _LINUX_SCHED_H */ -
GPL/trunk/include/linux/signal.h
r32 r128 5 5 6 6 #include <asm/signal.h> 7 8 #define signal_pending(p) 09 7 10 8 #ifdef __KERNEL__ -
GPL/trunk/lib32/debug.c
r127 r128 549 549 { 550 550 int len; 551 #ifdef DEBUG 552 int i; 553 #endif /* DEBUG */ 551 554 552 555 len= _strnlen( DbgStr, 1024 ); … … 556 559 */ 557 560 #ifdef DEBUG 558 int i;559 561 for( i= 0; i < len; i++ ) 560 562 CharOut( DbgStr[i] );
Note:
See TracChangeset
for help on using the changeset viewer.