Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CSEP551
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Krishna Vinnakota
CSEP551
Commits
05a7bbe0
Commit
05a7bbe0
authored
18 years ago
by
rsc
Browse files
Options
Downloads
Patches
Plain Diff
comment fixes
parent
94d7e259
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
mp.c
+2
-1
2 additions, 1 deletion
mp.c
syscall.c
+1
-1
1 addition, 1 deletion
syscall.c
with
3 additions
and
2 deletions
mp.c
+
2
−
1
View file @
05a7bbe0
...
...
@@ -196,7 +196,8 @@ mp_bcpu(void)
extern
void
mpmain
(
void
);
#define APBOOTCODE 0x7000 // XXX hack
// Write bootstrap code to unused memory at 0x7000.
#define APBOOTCODE 0x7000
void
mp_startthem
(
void
)
...
...
This diff is collapsed.
Click to expand it.
syscall.c
+
1
−
1
View file @
05a7bbe0
...
...
@@ -168,7 +168,7 @@ syscall(void)
break
;
default:
cprintf
(
"unknown sys call %d
\n
"
,
num
);
//
XXX fault
//
Maybe kill the process?
break
;
}
cp
->
tf
->
eax
=
ret
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment