mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 22:43:11 +02:00
25 lines
504 B
Java
25 lines
504 B
Java
public class Page
|
|
{
|
|
public int id;
|
|
public int physical;
|
|
public byte R;
|
|
public byte M;
|
|
public int inMemTime;
|
|
public int lastTouchTime;
|
|
public long high;
|
|
public long low;
|
|
|
|
public Page( int id, int physical, byte R, byte M, int inMemTime, int lastTouchTime, long high, long low )
|
|
{
|
|
this.id = id;
|
|
this.physical = physical;
|
|
this.R = R;
|
|
this.M = M;
|
|
this.inMemTime = inMemTime;
|
|
this.lastTouchTime = lastTouchTime;
|
|
this.high = high;
|
|
this.low = low;
|
|
}
|
|
|
|
}
|