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
e0924827
Commit
e0924827
authored
17 years ago
by
rsc
Browse files
Options
Downloads
Patches
Plain Diff
add kill
parent
e695b849
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
Makefile
+8
-4
8 additions, 4 deletions
Makefile
kill.c
+17
-0
17 additions, 0 deletions
kill.c
with
25 additions
and
4 deletions
Makefile
+
8
−
4
View file @
e0924827
...
...
@@ -84,9 +84,9 @@ _init : init.o $(ULIB)
$(
OBJDUMP
)
-S
_init
>
init.asm
$(
OBJDUMP
)
-t
_init |
awk
'/SYMBOL TABLE/ { go=1; next } go {print $$1, $$NF}'
>
init.sym
_
sh
:
sh
.o $(ULIB)
$(
LD
)
-N
-e
main
-Ttext
0
-o
_
sh sh
.o
$(
ULIB
)
$(
OBJDUMP
)
-S
_
sh
>
sh
.asm
_
kill
:
kill
.o $(ULIB)
$(
LD
)
-N
-e
main
-Ttext
0
-o
_
kill kill
.o
$(
ULIB
)
$(
OBJDUMP
)
-S
_
kill
>
kill
.asm
_ls
:
ls.o $(ULIB)
$(
LD
)
-N
-e
main
-Ttext
0
-o
_ls ls.o
$(
ULIB
)
...
...
@@ -100,6 +100,10 @@ _rm : rm.o $(ULIB)
$(
LD
)
-N
-e
main
-Ttext
0
-o
_rm rm.o
$(
ULIB
)
$(
OBJDUMP
)
-S
_rm
>
rm.asm
_sh
:
sh.o $(ULIB)
$(
LD
)
-N
-e
main
-Ttext
0
-o
_sh sh.o
$(
ULIB
)
$(
OBJDUMP
)
-S
_sh
>
sh.asm
_zombie
:
zombie.o $(ULIB)
$(
LD
)
-N
-e
main
-Ttext
0
-o
_zombie zombie.o
$(
ULIB
)
$(
OBJDUMP
)
-S
_zombie
>
zombie.asm
...
...
@@ -107,7 +111,7 @@ _zombie: zombie.o $(ULIB)
mkfs
:
mkfs.c fs.h
cc
-o
mkfs mkfs.c
UPROGS
=
usertests _echo _cat _init _
sh
_ls _mkdir _rm _zombie
UPROGS
=
usertests _echo _cat _init _
kill
_ls _mkdir _rm
_sh
_zombie
fs.img
:
mkfs README $(UPROGS)
./mkfs fs.img README
$(
UPROGS
)
...
...
This diff is collapsed.
Click to expand it.
kill.c
0 → 100644
+
17
−
0
View file @
e0924827
#include
"types.h"
#include
"stat.h"
#include
"user.h"
int
main
(
int
argc
,
char
**
argv
)
{
int
i
;
if
(
argc
<
1
){
printf
(
2
,
"usage: kill pid...
\n
"
);
exit
();
}
for
(
i
=
1
;
i
<
argc
;
i
++
)
kill
(
atoi
(
argv
[
i
]));
exit
();
}
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