Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
fcb96784
Commit
fcb96784
authored
Feb 11, 2003
by
Ivan Kokshaysky
Committed by
Linus Torvalds
Feb 11, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] alpha: Add missing sighand bits
parent
0cbea0df
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
arch/alpha/kernel/init_task.c
arch/alpha/kernel/init_task.c
+1
-0
arch/alpha/kernel/signal.c
arch/alpha/kernel/signal.c
+1
-1
No files found.
arch/alpha/kernel/init_task.c
View file @
fcb96784
...
...
@@ -9,6 +9,7 @@
static
struct
fs_struct
init_fs
=
INIT_FS
;
static
struct
files_struct
init_files
=
INIT_FILES
;
static
struct
signal_struct
init_signals
=
INIT_SIGNALS
(
init_signals
);
static
struct
sighand_struct
init_sighand
=
INIT_SIGHAND
(
init_sighand
);
struct
mm_struct
init_mm
=
INIT_MM
(
init_mm
);
struct
task_struct
init_task
=
INIT_TASK
(
init_task
);
...
...
arch/alpha/kernel/signal.c
View file @
fcb96784
...
...
@@ -623,7 +623,7 @@ do_signal(sigset_t *oldset, struct pt_regs * regs, struct switch_stack * sw,
if
(
signr
>
0
)
{
/* Whee! Actually deliver the signal. */
struct
k_sigaction
*
ka
=
&
current
->
sig
->
action
[
signr
-
1
];
struct
k_sigaction
*
ka
=
&
current
->
sig
hand
->
action
[
signr
-
1
];
if
(
r0
)
syscall_restart
(
r0
,
r19
,
regs
,
ka
);
handle_signal
(
signr
,
ka
,
&
info
,
oldset
,
regs
,
sw
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment