sched_rsjf.cpp 396 B

12345678910111213141516171819202122232425
  1. #include "sched_rsjf.h"
  2. using namespace std;
  3. SchedRSJF::SchedRSJF(vector<int> argn) {
  4. // Recibe la cantidad de cores y sus cpu_quantum por parámetro
  5. /* llenar */
  6. }
  7. SchedRSJF::~SchedRSJF() {
  8. /* llenar */
  9. }
  10. void SchedRSJF::load(int pid) {
  11. /* llenar */
  12. }
  13. void SchedRSJF::unblock(int pid) {
  14. /* llenar */
  15. }
  16. int SchedRSJF::tick(int core, const enum Motivo m) {
  17. /* llenar */
  18. return 0;
  19. }