package embox.kernel.sched.priority

@DefaultImpl(inherit)
abstract module priority { }

module inherit extends priority {
	source "inherit.h", "inherit.c"
}

module none extends priority {
	source "none.h"
}

