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
e39f1f42
Commit
e39f1f42
authored
Dec 28, 2002
by
Jeff Dike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Converted a few more initializers I missed on the first pass.
parent
34b69bd4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
13 deletions
+13
-13
arch/um/kernel/tt/gdb.c
arch/um/kernel/tt/gdb.c
+5
-5
arch/um/kernel/tt/ptproxy/proxy.c
arch/um/kernel/tt/ptproxy/proxy.c
+8
-8
No files found.
arch/um/kernel/tt/gdb.c
View file @
e39f1f42
...
...
@@ -62,11 +62,11 @@ static void gdb_announce(char *dev_name, int dev)
}
static
struct
chan_opts
opts
=
{
announce
:
gdb_announce
,
xterm_title
:
"UML kernel debugger"
,
raw
:
0
,
tramp_stack
:
0
,
in_kernel
:
0
,
.
announce
=
gdb_announce
,
.
xterm_title
=
"UML kernel debugger"
,
.
raw
=
0
,
.
tramp_stack
=
0
,
.
in_kernel
=
0
,
};
/* Accessed by the tracing thread, which automatically serializes access */
...
...
arch/um/kernel/tt/ptproxy/proxy.c
View file @
e39f1f42
...
...
@@ -129,14 +129,14 @@ static int parent_syscall(debugger_state *debugger, int pid);
int
init_parent_proxy
(
int
pid
)
{
parent
=
((
debugger_state
)
{
pid
:
pid
,
wait_options
:
0
,
wait_status_ptr
:
NULL
,
waiting
:
0
,
real_wait
:
0
,
expecting_child
:
0
,
handle_trace
:
parent_syscall
,
debugee
:
NULL
}
);
parent
=
((
debugger_state
)
{
.
pid
=
pid
,
.
wait_options
=
0
,
.
wait_status_ptr
=
NULL
,
.
waiting
=
0
,
.
real_wait
=
0
,
.
expecting_child
=
0
,
.
handle_trace
=
parent_syscall
,
.
debugee
=
NULL
}
);
return
(
0
);
}
...
...
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