~kris/9p

9hist

510a483aa14e5f843cfba16ff96d613822152e01 — David du Colombier 24 years ago c87eeb1
Plan 9 from Bell Labs 2002-08-30
2 files changed, 2 insertions(+), 2 deletions(-)

M port/chan.c
M port/edf.h
M port/chan.c => port/chan.c +1 -1
@@ 112,7 112,7 @@ decref(Ref *r)
	x = --r->ref;
	unlock(r);
	if(x < 0)
		panic("decref");
		panic("decref, pc=0x%lux", getcallerpc(&r));

	return x;
}

M port/edf.h => port/edf.h +1 -1
@@ 38,7 38,7 @@ typedef enum Edfstate	Edfstate;
struct Edf {
	/* time intervals */
	Ticks	D;		/* Deadline */
	Ticks	Delta;		/* Inherited deadline */
	Ticks	Delta;	/* Inherited deadline */
	Ticks	T;		/* period */
	Ticks	C;		/* Cost */
	Ticks	S;		/* Slice: time remaining in this period */