|
|
@@ -31,8 +31,6 @@ class SchedSJF : public SchedBase {
|
|
|
};
|
|
|
|
|
|
std::map<int, Process> p_map; // Mapeo de los procesos
|
|
|
- typedef std::map<int,Process>::iterator it_type;
|
|
|
-
|
|
|
std::priority_queue<Process, std::vector<Process>, Process> pq; // Procesos en estado READY o RUNNING
|
|
|
};
|
|
|
|