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
e2630dd6
Commit
e2630dd6
authored
Sep 20, 2004
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SPARC64]: Update compat code for sys_waitid changes.
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
7bae86e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
arch/sparc64/kernel/sys_sparc32.c
arch/sparc64/kernel/sys_sparc32.c
+12
-3
No files found.
arch/sparc64/kernel/sys_sparc32.c
View file @
e2630dd6
...
@@ -1737,21 +1737,30 @@ sys32_timer_create(u32 clock, struct sigevent32 __user *se32,
...
@@ -1737,21 +1737,30 @@ sys32_timer_create(u32 clock, struct sigevent32 __user *se32,
}
}
asmlinkage
long
compat_sys_waitid
(
u32
which
,
u32
pid
,
asmlinkage
long
compat_sys_waitid
(
u32
which
,
u32
pid
,
struct
siginfo32
__user
*
uinfo
,
u32
options
)
struct
siginfo32
__user
*
uinfo
,
u32
options
,
struct
compat_rusage
__user
*
uru
)
{
{
siginfo_t
info
;
siginfo_t
info
;
struct
rusage
ru
;
long
ret
;
long
ret
;
mm_segment_t
old_fs
=
get_fs
();
mm_segment_t
old_fs
=
get_fs
();
memset
(
&
info
,
0
,
sizeof
(
info
));
memset
(
&
info
,
0
,
sizeof
(
info
));
set_fs
(
KERNEL_DS
);
set_fs
(
KERNEL_DS
);
ret
=
sys_waitid
(
(
int
)
which
,
(
compat_pid_t
)
pid
,
ret
=
sys_waitid
(
which
,
pid
,
(
siginfo_t
__user
*
)
&
info
,
(
siginfo_t
__user
*
)
&
info
,
(
int
)
options
);
options
,
uru
?
&
ru
:
NULL
);
set_fs
(
old_fs
);
set_fs
(
old_fs
);
if
(
ret
<
0
||
info
.
si_signo
==
0
)
if
(
ret
<
0
||
info
.
si_signo
==
0
)
return
ret
;
return
ret
;
if
(
uru
)
{
ret
=
put_compat_rusage
(
&
ru
,
uru
);
if
(
ret
)
return
ret
;
}
BUG_ON
(
info
.
si_code
&
__SI_MASK
);
BUG_ON
(
info
.
si_code
&
__SI_MASK
);
info
.
si_code
|=
__SI_CHLD
;
info
.
si_code
|=
__SI_CHLD
;
return
copy_siginfo_to_user32
(
uinfo
,
&
info
);
return
copy_siginfo_to_user32
(
uinfo
,
&
info
);
...
...
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