Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
CSEP551
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
a81e0213
Commit
a81e0213
authored
18 years ago
by
kaashoek
Browse files
Options
Downloads
Patches
Plain Diff
a few nits
parent
82537b71
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lapic.c
+0
-1
0 additions, 1 deletion
lapic.c
picirq.c
+0
-2
0 additions, 2 deletions
picirq.c
trap.c
+1
-1
1 addition, 1 deletion
trap.c
with
1 addition
and
4 deletions
lapic.c
+
0
−
1
View file @
a81e0213
...
...
@@ -114,7 +114,6 @@ lapic_timerinit(void)
void
lapic_timerintr
(
void
)
{
// cprintf("cpu%d: timer interrupt!\n", cpu());
lapic_write
(
LAPIC_EOI
,
0
);
}
...
...
This diff is collapsed.
Click to expand it.
picirq.c
+
0
−
2
View file @
a81e0213
/* See COPYRIGHT for copyright information. */
#include
"types.h"
#include
"x86.h"
#include
"traps.h"
...
...
This diff is collapsed.
Click to expand it.
trap.c
+
1
−
1
View file @
a81e0213
...
...
@@ -21,7 +21,7 @@ tvinit(void)
for
(
i
=
0
;
i
<
256
;
i
++
){
SETGATE
(
idt
[
i
],
1
,
SEG_KCODE
<<
3
,
vectors
[
i
],
0
);
}
SETGATE
(
idt
[
T_SYSCALL
],
1
,
SEG_KCODE
<<
3
,
vectors
[
48
],
3
);
SETGATE
(
idt
[
T_SYSCALL
],
1
,
SEG_KCODE
<<
3
,
vectors
[
T_SYSCALL
],
3
);
}
void
...
...
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