-
Notifications
You must be signed in to change notification settings - Fork 4
/
fcfs.html
144 lines (132 loc) · 5.78 KB
/
fcfs.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Algoritmo de planificación FCFS</title>
<link rel="stylesheet" href="css/vendor/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="css/vendor/sweetalert.min.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/paint.css">
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Menu</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Inicio</a></li>
<li class="active"><a href="fcfs.html">FCFS</a></li>
<li><a href="sjf.html">SJF - No Expulsivo</a></li>
<li><a href="prioridad.html">Prioridad - Expulsivo</a></li>
<li><a href="round-robin.html">Round Robin</a></li>
</ul>
</div>
</div>
</nav>
<header class="container">
<h1>First-Come, First-Served (FCFS)</h1>
</header>
<div class="col-md-3 col-md-offset-6 text-left" id="info">
<h5>Tiempo transcurrido: <span id="tiempo_actual">0</span></h5>
<h5>Proceso en ejecución: <span id="proceso_ejecucion">Proceso 0</span></h5>
<h5>Rafaga: <span id="rafaga_proceso">8</span></h5>
<h5>Tiempo restante: <span id="tiempo_restante">0</span> </h5>
</div>
<main role="main" class="container">
<div class="row">
<div class="ready-container col-lg-8">
<h2>Listos</h2>
<button type="button" class="btn btn-danger pause-btn" id="toggle-play"><span class="glyphicon glyphicon-pause" aria-hidden="true"></span> Pausar ejecución</button>
<div class="jumbotron">
<div class="table-container">
<table id="tabla_procesos" class="table table-hover">
<thead>
<tr>
<th style="width: 90px;">Proceso</th>
<th>T. Llegada</th>
<th>T. Rafaga</th>
<th>T. Comienzo</th>
<th>T. Finalización</th>
<th>T. Retorno</th>
<th>T. Espera</th>
<th></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<table class="header-fixed">
<thead>
<tr>
<th style="width: 90px;">Proceso</th>
<th>T. Llegada</th>
<th>T. Rafaga</th>
<th>T. Comienzo</th>
<th>T. Finalización</th>
<th>T. Retorno</th>
<th>T. Espera</th>
<th style="width: 10%;"></th>
</tr>
</thead>
</table>
</div>
<button type="button" class="btn btn-primary btn-add">Agregar Proceso</button>
</div>
<div class="locked-container col-lg-4">
<h2>Bloqueados</h2>
<div class="jumbotron">
<div class="table-container">
<table id="tabla_bloqueados" class="table table-hover">
<thead>
<tr>
<th>Proceso</th>
<th>Bloqueo</th>
<th>Rafaga</th>
<th></th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<table class="header-fixed">
<thead>
<tr>
<th>Proceso</th>
<th>Bloqueo</th>
<th>Rafaga</th>
<th style="width: 20%;"></th>
</tr>
</thead>
</table>
</div>
</div>
</div>
<div class="chart-container">
<svg class="svg"></svg>
</div>
</main>
<footer class="footer">
<div class="container">
<h4>Sistemas Operativos</h4>
<h4>Algoritmos de Planificación</h4>
<h4>Cristian Rodriguez</h4>
<h4>Kevin Gutiérrez</h4>
</div>
</footer>
<script src="js/vendor/d3.min.js"></script>
<script src="js/vendor/jquery-1.12.3.min.js"></script>
<script src="js/vendor/bootstrap.min.js"></script>
<script src="js/vendor/sweetalert.min.js"></script>
<script src="js/paint.js"></script>
<script src="js/fcfs/main.js"></script>
</body>
</html>