Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Pintos_forked_resit
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor 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
s2-alsaloumi
Pintos_forked_resit
Compare revisions
master to ad659bbf8590de407ca1e9bf6e4aedb868eeff4d
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
s2-alsaloumi/pintos_forked_resit
Select target project
No results found
ad659bbf8590de407ca1e9bf6e4aedb868eeff4d
Select Git revision
Branches
master
1 result
Swap
Target
h-attak/pintos_student
Select target project
y2-rhymansaib/pintos_student
1 result
master
Select Git revision
Branches
master
1 result
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
src/utils/pintos
+4
-4
4 additions, 4 deletions
src/utils/pintos
src/utils/pintos-gdb
+1
-1
1 addition, 1 deletion
src/utils/pintos-gdb
src/utils/pintos-mkdisk
+0
-0
0 additions, 0 deletions
src/utils/pintos-mkdisk
src/vm/.gitkeep
+0
-0
0 additions, 0 deletions
src/vm/.gitkeep
with
5 additions
and
5 deletions
src/utils/pintos
100755 → 100644
View file @
ad659bbf
...
...
@@ -256,7 +256,7 @@ sub set_disk {
sub
find_disks
{
# Find kernel, if we don't already have one.
if
(
!
exists
$parts
{
KERNEL
})
{
my
$name
=
find_file
('
kernel.bin
');
my
$name
=
find_file
('
/home/dev/uwe_os/pintos_student/src/threads/build/
kernel.bin
');
die
"
Cannot find kernel
\n
"
if
!
defined
$name
;
do_set_part
('
KERNEL
',
'
file
',
$name
);
}
...
...
@@ -929,15 +929,15 @@ sub exec_setitimer {
exit (1);
}
sub SIGVTALRM {
#
sub SIGVTALRM {
use Config;
my
$i
= 0;
foreach my
$name
(split(' ',
$Config
{sig_name})) {
return
$i
if
$name
eq 'VTALRM';
$i
++;
}
return 0;
}
#
return 0;
#
}
# find_in_path (
$program
)
#
...
...
This diff is collapsed.
Click to expand it.
src/utils/pintos-gdb
100755 → 100644
View file @
ad659bbf
#! /bin/sh
# Path to GDB macros file. Customize for your site.
GDBMACROS
=
/
usr/class/cs140/pintos/pintos
/src/misc/gdb-macros
GDBMACROS
=
/
home/dev/uwe_os/pintos_student
/src/misc/gdb-macros
# Choose correct GDB.
if
command
-v
i386-elf-gdb
>
/dev/null 2>&1
;
then
...
...
This diff is collapsed.
Click to expand it.
src/utils/pintos-mkdisk
100755 → 100644
View file @
ad659bbf
File mode changed from 100755 to 100644
This diff is collapsed.
Click to expand it.
src/vm/.gitkeep
0 → 100644
View file @
ad659bbf
This diff is collapsed.
Click to expand it.
Prev
1
…
3
4
5
6
7
Next