mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 17:43:12 +02:00
16 lines
389 B
Java
16 lines
389 B
Java
|
|
public class sProcess {
|
||
|
|
public int cputime;
|
||
|
|
public int ioblocking;
|
||
|
|
public int cpudone;
|
||
|
|
public int ionext;
|
||
|
|
public int numblocked;
|
||
|
|
|
||
|
|
public sProcess (int cputime, int ioblocking, int cpudone, int ionext, int numblocked) {
|
||
|
|
this.cputime = cputime;
|
||
|
|
this.ioblocking = ioblocking;
|
||
|
|
this.cpudone = cpudone;
|
||
|
|
this.ionext = ionext;
|
||
|
|
this.numblocked = numblocked;
|
||
|
|
}
|
||
|
|
}
|