mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-22 23:04:43 +00:00
Merge branch 'akpm' (patches from Andrew)
Merge more updates from Andrew Morton: - the rest of MM - procfs updates - various misc things - more y2038 fixes - get_maintainer updates - lib/ updates - checkpatch updates - various epoll updates - autofs updates - hfsplus - some reiserfs work - fatfs updates - signal.c cleanups - ipc/ updates * emailed patches from Andrew Morton <akpm@linux-foundation.org>: (166 commits) ipc/util.c: update return value of ipc_getref from int to bool ipc/util.c: further variable name cleanups ipc: simplify ipc initialization ipc: get rid of ids->tables_initialized hack lib/rhashtable: guarantee initial hashtable allocation lib/rhashtable: simplify bucket_table_alloc() ipc: drop ipc_lock() ipc/util.c: correct comment in ipc_obtain_object_check ipc: rename ipcctl_pre_down_nolock() ipc/util.c: use ipc_rcu_putref() for failues in ipc_addid() ipc: reorganize initialization of kern_ipc_perm.seq ipc: compute kern_ipc_perm.id under the ipc lock init/Kconfig: remove EXPERT from CHECKPOINT_RESTORE fs/sysv/inode.c: use ktime_get_real_seconds() for superblock stamp adfs: use timespec64 for time conversion kernel/sysctl.c: fix typos in comments drivers/rapidio/devices/rio_mport_cdev.c: remove redundant pointer md fork: don't copy inconsistent signal handler state to child signal: make get_signal() return bool signal: make sigkill_pending() return bool ...
This commit is contained in:
commit
cd9b44f907
182 changed files with 3198 additions and 2276 deletions
|
@ -267,7 +267,7 @@ extern void set_current_blocked(sigset_t *);
|
|||
extern void __set_current_blocked(const sigset_t *);
|
||||
extern int show_unhandled_signals;
|
||||
|
||||
extern int get_signal(struct ksignal *ksig);
|
||||
extern bool get_signal(struct ksignal *ksig);
|
||||
extern void signal_setup_done(int failed, struct ksignal *ksig, int stepping);
|
||||
extern void exit_signals(struct task_struct *tsk);
|
||||
extern void kernel_sigaction(int, __sighandler_t);
|
||||
|
@ -289,7 +289,7 @@ static inline void disallow_signal(int sig)
|
|||
|
||||
extern struct kmem_cache *sighand_cachep;
|
||||
|
||||
int unhandled_signal(struct task_struct *tsk, int sig);
|
||||
extern bool unhandled_signal(struct task_struct *tsk, int sig);
|
||||
|
||||
/*
|
||||
* In POSIX a signal is sent either to a specific thread (Linux task)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue