Utilities --------- To use these utilities go in the directory 'qres/utils' and type 'make'. Wrapper is a program that can be used to schedule a task with CBS scheduler; its syntax is 'wrapper Q T COMMAND', where Q is the budget of the server (in microsec), T is the period of the server (in microsec), and COMMAND is the name of the command to start (with its absoulte path). For example, to run the program 'top' with a budget of 200000 and a period of 600000 microsec, just type ./wrapper 200000 600000 /usr/bin/top Cbser is a program that transforms a task running on the Linux system in a CBS task; its syntax is 'cbser Q T PID', where Q is the budget of the server (in microsec), T is the period of the server (in microsec), and PID is the Process ID of the task (to know the pid of the task is possible to use the command 'top'). For example, if the program 'find' is running with the PID 2001, and you want to run it with a budget of 200000 and a period of 600000 microsec, just type ./cbser 200000 600000 2001