Changeset 614 for GPL/branches/uniaud32-linux-3.2.102/include/linux
- Timestamp:
- May 16, 2020, 10:38:27 AM (5 years ago)
- Location:
- GPL/branches/uniaud32-linux-3.2.102/include/linux
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud32-linux-3.2.102/include/linux/kernel.h
r612 r614 67 67 printk(KERN_INFO fmt,##arg) 68 68 69 #define pr_warn(fmt, arg ) \69 #define pr_warn(fmt, arg, ...) \ 70 70 printk(KERN_WARNING fmt, ##arg) 71 71 -
GPL/branches/uniaud32-linux-3.2.102/include/linux/string.h
r612 r614 12 12 13 13 char *kstrdup(const char *s, unsigned int gfp_flags); 14 void *memdup_user(const void __user *src, size_t len); 14 15 #define strnlen strnlen_s 16 _WCRTLINK extern size_t strnlen_s( const char *__s, size_t __maxsize ); 15 17 #endif 16 18 -
GPL/branches/uniaud32-linux-3.2.102/include/linux/workqueue.h
r612 r614 59 59 #define INIT_DELAYED_WORK(_work, _func) INIT_WORK(&(_work)->work, _func) 60 60 #define work_pending(work) test_bit(0, &(work)->pending) 61 int schedule_work(struct work_struct *works); 61 62 #define delayed_work_pending(w) work_pending(&(w)->work) 62 63 #define schedule_delayed_work(work, delay) queue_delayed_work(NULL, (work), (delay))
Note:
See TracChangeset
for help on using the changeset viewer.