diff --git a/EOPSY/lab1/A b/EOPSY/lab1/A new file mode 100644 index 00000000..e69de29b diff --git a/EOPSY/lab1/LOWERCASEFOLDERMAIN/LOWERFILESUB b/EOPSY/lab1/LOWERCASEFOLDERMAIN/LOWERFILESUB new file mode 100644 index 00000000..e69de29b diff --git a/EOPSY/lab1/LOWERCASEFOLDERMAIN/LOWERFOLDERSUB/LOWERFILESUBSUB b/EOPSY/lab1/LOWERCASEFOLDERMAIN/LOWERFOLDERSUB/LOWERFILESUBSUB new file mode 100644 index 00000000..e69de29b diff --git a/EOPSY/lab1/README.md b/EOPSY/lab1/README.md new file mode 100644 index 00000000..e69de29b diff --git a/EOPSY/lab1/RECURSEFILE b/EOPSY/lab1/RECURSEFILE new file mode 100644 index 00000000..e69de29b diff --git a/EOPSY/lab1/UPPERFOLDERMAIN/UPPERFILESUB b/EOPSY/lab1/UPPERFOLDERMAIN/UPPERFILESUB new file mode 100644 index 00000000..e69de29b diff --git a/EOPSY/lab1/UPPERFOLDERMAIN/UPPERFOLDERSUB/UPPERFILESUBSUB b/EOPSY/lab1/UPPERFOLDERMAIN/UPPERFOLDERSUB/UPPERFILESUBSUB new file mode 100644 index 00000000..e69de29b diff --git a/EOPSY/lab1/b b/EOPSY/lab1/b new file mode 100644 index 00000000..e69de29b diff --git a/EOPSY/lab1/modify.sh b/EOPSY/lab1/modify.sh new file mode 100755 index 00000000..49e18e34 --- /dev/null +++ b/EOPSY/lab1/modify.sh @@ -0,0 +1,220 @@ +#!/bin/bash +# command options and arguments interpreter example +# simple version + +# the name of the script without a path + +name=`basename $0` + +help() +{ + echo "-l -> lowerize file/folder name" + echo "-u -> uppercase file/folder name" + echo "-r [-l|u] -> lowerize or uppercase file/folder name recursively" + echo " -> call sed command operating on file/folder name" + echo "-r -> call sed command operating on file/folder recursively" + echo "-h -> display this message" +} + + + + +uppercase() +{ + if test "$1" = $name + then + error_msg "you cannot modify name of this script!" + exit 3 + fi + + + if test -z "$1" + then + error_msg "missing filename for -u" + exit 1 + fi + if test -f "$1" + then + if test -d "$1" + then + error_msg "$1 is neither a file nor folder" + exit 3 + fi + fi + + mv "$1" $(echo "$1" | sed -r -e 's/.*/\U&/'); + + + +} + +lowercase() +{ + if test "$1" = $name + then + error_msg "you cannot modify name of this script!" + exit 3 + fi + if test -z "$1" + then + error_msg "missing filename for -l" + exit 1 + fi + if test -f "$1" + then + if test -d "$1" + then + error_msg "$1 is neither a file nor the folder" + exit 2 + fi + fi + mv "$1" $(echo "$1" | sed -r -e 's/.*/\L&/'); +} + +sneed() +{ + if test "$2" = $name + then + error_msg "you cannot modify name of this script!" + exit 3 + fi + if test -z "$1" + then + error_msg "missing sed pattern" + exit 1 + fi + if test -z "$2" + then + error_msg "missing sed filename" + exit 2 + fi + if test -f "$2" + then + if test -d "$2" + then + error_msg "$2 is neither a file nor folder" + exit 3 + fi + fi + + mv "$2" $(echo "$2" | sed $1) +} + +recursionSneed() +{ + if test -z "$1" + then + error_msg "missing sed pattern" + exit 1 + fi + + if test -z "$2" + then + error_msg "missing sed filename" + exit 2 + fi + + if test -f "$2" + then + if test -d "$2" + then + error_msg "$2 is neither a file or folder" + exit 3 + fi + fi + filename="$2" + sneed "$1" "$filename" + filename="$(echo "$filename" | sed $1)" + echo $filename + for item in "$filename"/* + do + if test -d "$item" + then + recursionSneed "$1" "$item" + fi + if test -f "$item" + then + sneed "$1" "$item" + fi + done +} + +recursionLowercase() +{ + lowercase "$1" + set "$(echo "$1" | sed -r -e 's/.*/\L&/')" + for item in "$1"/* + do + if test -d "$item" + then + recursionLowercase "$item" + fi + if test -f "$item" + then + lowercase "$item" + fi + done +} + +recursionUppercase() +{ + uppercase "$1" + set "$(echo "$1" | sed -r -e 's/.*/\U&/')" + for item in "$1"/* + do + if test -d "$item" + then + recursionUppercase "$item" + fi + if test -f "$item" + then + uppercase "$item" + fi + done + +} + +recursion() +{ + if test -z "$1" + then + error_msg "missing argument for -r" + exit 1 + fi + + case "$1" in + -l|--lowercase) recursionLowercase "$2";; + -u|--uppercase) recursionUppercase "$2";; + *) recursionSneed "$1" "$2";; + esac +} + + + +# function for printing error messages to diagnostic output +error_msg() +{ + echo "$name: error: $1" 1>&2 +} + + + +# if no arguments given +if test -z "$1" +then + help +fi + + +# do with command line arguments +case "$1" in + -h|--help) help;; + -l|--lowercase) lowercase "$2";; + -r|--recursion) recursion "$2" "$3" ;; + -u|--upercase) uppercase "$2";; + *) sneed "$1" "$2" ;; +esac + + + + diff --git a/EOPSY/lab1/modify_examples.sh b/EOPSY/lab1/modify_examples.sh new file mode 100755 index 00000000..877a1641 --- /dev/null +++ b/EOPSY/lab1/modify_examples.sh @@ -0,0 +1,88 @@ +#!/bin/bash + +touch a +touch B +touch SED +mkdir foldera +mkdir FOLDERB +mkdir FOLDERSED +mkdir upperfoldermain +cd upperfoldermain +touch upperfilesub +mkdir upperfoldersub +cd upperfoldersub +touch upperfilesubsub +cd .. +cd .. + + +mkdir LOWERCASEFOLDERMAIN +cd LOWERCASEFOLDERMAIN +touch LOWERFILESUB +mkdir LOWERFOLDERSUB +cd LOWERFOLDERSUB +touch LOWERFILESUBSUB +cd .. +cd .. + +mkdir SEDLOWERCASEFOLDERMAIN +cd SEDLOWERCASEFOLDERMAIN +touch SEDLOWERFILESUB +mkdir SEDLOWERFOLDERSUB +cd SEDLOWERFOLDERSUB +touch SEDLOWERFILESUBSUB +cd .. +cd .. + +touch recursefile +touch RECURSELOWERFILE +touch SEDRECURSEFILE + + + +echo "Typical scenarios" +echo "Uppercasing file with filename a" +bash ./modify.sh -u a +echo "Lowercasing file with filename B" +bash ./modify.sh -l B +echo "Using sed pattern for lowercasing of file with filename SED" +bash ./modify.sh "-r -e s/.*/\L&/" SED +echo "Uppercasing folder with name foldera non recursively" +bash ./modify.sh -u foldera +echo "Lowercasing folder with name FOLDERB non recursively" +bash ./modify.sh -l FOLDERB +echo "Using sed pattern for lowercasing of folder with name FOLDERSED non recursively" +bash ./modify.sh "-l -e s/.*/\L&/" FOLDERSED +echo "Uppercasing folder recursively" +echo "Main folder name: upperfoldermain" +echo "folder contains: folder named upperfoldersub , file named upperfilesub" +echo "subfolder upperfoldersub contains file named upperfilesubsub" +bash ./modify.sh -r -u upperfoldermain +echo "Lowercasing folder recursively" +echo "Main folder name: LOWERFOLDERMAIN" +echo "folder contains: folder named LOWERFOLDERSUB , file named LOWERFILESUB" +echo "subfolder LOWERFOLDERSUB contains file named LOWERFILESUBSUB" +bash ./modify.sh -r -l SEDLOWERCASEFOLDERMAIN +echo "using sed pattern for Lowercasing folder recursively" +echo "Main folder name: SEDLOWERFOLDERMAIN" +echo "folder contains: folder named SEDLOWERFOLDERSUB , file named SEDLOWERFILESUB" +echo "subfolder SEDLOWERFOLDERSUB contains file named SEDLOWERFILESUBSUB" +bash ./modify.sh -r "-r -e s/.*/\L&/" SEDLOWERFOLDERMAIN +echo "Uncommon scenarios" +echo "uppercasing recursively normal file recursefile" +bash ./modify.sh -r -u recursefile +echo "lowercasing recursively normal file RECURSELOWERFILE" +bash ./modify.sh -r -l RECURSELOWERFILE +echo "using sed pattern recursively for normal file to lowercase it SEDRECURSEFILE" +bash ./modify.sh -r "-r -e s/.*/\L&/" SEDRECURSEFILE +echo "Incorrect scenarios" +echo "not providing enough arguments" +bash ./modify.sh +echo "not providing file" +bash ./modify.sh -l +echo "not providing argument for recursion" +bash ./modify.sh -r filename +echo "provding filename/foldername for file/folder which does not exist" +bash ./modify.sh -l thisfiledoesnotexist + + diff --git a/EOPSY/lab1/recurselowerfile b/EOPSY/lab1/recurselowerfile new file mode 100644 index 00000000..e69de29b diff --git a/EOPSY/lab1/sed b/EOPSY/lab1/sed new file mode 100644 index 00000000..e69de29b diff --git a/EOPSY/lab1/sedlowercasefoldermain/sedlowerfilesub b/EOPSY/lab1/sedlowercasefoldermain/sedlowerfilesub new file mode 100644 index 00000000..e69de29b diff --git a/EOPSY/lab1/sedlowercasefoldermain/sedlowerfoldersub/sedlowerfilesubsub b/EOPSY/lab1/sedlowercasefoldermain/sedlowerfoldersub/sedlowerfilesubsub new file mode 100644 index 00000000..e69de29b diff --git a/EOPSY/lab1/sedrecursefile b/EOPSY/lab1/sedrecursefile new file mode 100644 index 00000000..e69de29b diff --git a/EOPSY/lab2/README.md b/EOPSY/lab2/README.md new file mode 100644 index 00000000..0b9e6c1a --- /dev/null +++ b/EOPSY/lab2/README.md @@ -0,0 +1,92 @@ +# eopsy_KRZYSZTOF_RUDNICKI_lab2 + + + +## Getting started + +To make it easy for you to get started with GitLab, here's a list of recommended next steps. + +Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)! + +## Add your files + +- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files +- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command: + +``` +cd existing_repo +git remote add origin https://gitlab-stud.elka.pw.edu.pl/krudnic3/eopsy_krzysztof_rudnicki_lab2.git +git branch -M main +git push -uf origin main +``` + +## Integrate with your tools + +- [ ] [Set up project integrations](https://gitlab-stud.elka.pw.edu.pl/krudnic3/eopsy_krzysztof_rudnicki_lab2/-/settings/integrations) + +## Collaborate with your team + +- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/) +- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html) +- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically) +- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/) +- [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html) + +## Test and Deploy + +Use the built-in continuous integration in GitLab. + +- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html) +- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/) +- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html) +- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/) +- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html) + +*** + +# Editing this README + +When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!). Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template. + +## Suggestions for a good README +Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information. + +## Name +Choose a self-explaining name for your project. + +## Description +Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors. + +## Badges +On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge. + +## Visuals +Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method. + +## Installation +Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection. + +## Usage +Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README. + +## Support +Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc. + +## Roadmap +If you have ideas for releases in the future, it is a good idea to list them in the README. + +## Contributing +State if you are open to contributions and what your requirements are for accepting them. + +For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self. + +You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser. + +## Authors and acknowledgment +Show your appreciation to those who have contributed to the project. + +## License +For open source projects, say how it is licensed. + +## Project status +If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers. diff --git a/EOPSY/lab2/a.out b/EOPSY/lab2/a.out new file mode 100755 index 00000000..db9788ba Binary files /dev/null and b/EOPSY/lab2/a.out differ diff --git a/EOPSY/lab2/tsig b/EOPSY/lab2/tsig new file mode 100755 index 00000000..db9788ba Binary files /dev/null and b/EOPSY/lab2/tsig differ diff --git a/EOPSY/lab2/tsig.c b/EOPSY/lab2/tsig.c new file mode 100644 index 00000000..95c38077 --- /dev/null +++ b/EOPSY/lab2/tsig.c @@ -0,0 +1,210 @@ +#include // printf() +#include // fork() +#include // clock() +#include // malloc() +#include // sigaction(), SIGTERM +#include // wait() +#define WITH_SIGNALS +const int NUM_CHILD = 5; +int KEYBOARD_INTERRUPT_MARK = 0; + + +void ourOwnSigTermHandler() +{ + printf("Process: %d was terminated\n", getpid()); +} + +void childProcessAlgorithm() +{ + #ifdef WITH_SIGNALS + // 3.a in the child process + struct sigaction ignoreSignal; + ignoreSignal.sa_handler = SIG_IGN; + sigaction(SIGTERM, &ignoreSignal, NULL); // ignore handling of the + // keyboard interrupt signal + struct sigaction sigTermHandler; + sigTermHandler.sa_handler = ourOwnSigTermHandler; + // set own handler of the sigterm signal, which will only + // print a message of the termination of this process + sigaction(SIGTERM, &sigTermHandler, NULL); + #endif + printf("Process identifier of parent process: %d \n", getppid()); + // print process identifier of the parent process + sleep(10); // sleep for 10 seconds + printf("Execution for child: %d complete! \n", getpid()); + // print a message about execution completion + exit(0); // !exit from process! +} + + +void sendSIGTERMsignal(pid_t *children) +{ + for(int i = 0; i < NUM_CHILD; i++) // go through each child + { + kill(children[i], SIGTERM); // and send sigterm signal using kill + } +} + +void createChildProcesses(pid_t *children) +{ + kill(-2, SIGTERM); + for(int i = 0; i < NUM_CHILD; i++) // Create NUM_CHILD child processes + { + children[i] = fork(); // use the fork() function + #ifdef WITH_SIGNALS + // 3.c check the mark which may be set by the keyboard interrupt + // handler + if(KEYBOARD_INTERRUPT_MARK) + { + printf("interrupt of the creation process"); + // print a message about interrupt of the creation + // process + printf(" during creation of children["); + printf("%d] = %d\n", i, children[i]); + sendSIGTERMsignal(children); + // signal all just created processes with the sigterm + return; + } + #endif + if(children[i] == 0) childProcessAlgorithm(); // child algorithm + else + { + printf("fork for child[%d] failed! \n", i); + kill(-2, SIGTERM); // -2 means that sigterm will be + // sent to every process in the process group + // whose id is -2 + } + sleep(1); // insert one second delays between fork calls + } +} + +int childProcessCorrect(const pid_t child) +{ + return child >= 0; // -1 would mean that we could not create the child +} + +int correctChildProcesses(const pid_t *children) +{ + for(int i = 0; i < NUM_CHILD; i++) // go through each child + { + if(!childProcessCorrect(children[i])) // check if it was created correctly + { + printf("children[%d] = %d", i, children[i]); + // print approrpriate message that child was not created + // correctly + printf(", Was NOT declared correctly!\n"); + return 0; + } + } + return 1; +} + + +void printCreationOfAllChildProcesses(const pid_t *children) +{ + // print a message about creation of all child processes + for(int i = 0; i < NUM_CHILD; i++) + { + printf("Process children[%d] = %d created \n", i, children[i]); + } +} + +void terminateChildren(pid_t *children) +{ + int childTerminations = 0; + for(int i = 0; i < NUM_CHILD; i++) + { + pid_t waitValue = wait(NULL); // call wait in loop + if(waitValue != -1) + { + childTerminations++; + // 2.4 count child processes terminations + printf("Number of child processes terminations:"); + printf(" %d \n", childTerminations); + }else + { + printf("Termination of the child %d", getpid()); + printf(" went wrong!\n"); + } + } + // 2.4 print a message that there are no more child processes + printf("There are no more child processes \n"); + printf("Number of received child processes exit codes:"); + printf(" %d \n", childTerminations); + // 2.4 priinta message with the number of just received child processes + // exit codes +} + +int noSignalsVersion() +{ + pid_t *children = malloc(sizeof(pid_t) * NUM_CHILD); + // allocate space for all children + + createChildProcesses(children); // create NUM_CHILD child processes + if(!correctChildProcesses(children)) + { + sendSIGTERMsignal(children); // if not send sigterm signals + return 1; + } + printCreationOfAllChildProcesses(children); + terminateChildren(children); + return 0; +} + + +void ourOwnKeyboardInterrupt() +{ + printf("Received keyboard interrupt \n"); + KEYBOARD_INTERRUPT_MARK = 1; +} + +int signalsVersion() +{ + struct sigaction ignoreSignals; + ignoreSignals.sa_handler = SIG_IGN; + for(int i = 0; i < _NSIG; i++) // 3.a Go through every single possible signal + { + sigaction(i, &ignoreSignals, NULL); // 3.a and ignore it + } + + ignoreSignals.sa_handler = SIG_DFL; // Restore to default handler + sigaction(SIGCHLD, &ignoreSignals, NULL); // 3.a the sigchld signal + struct sigaction ownKeyboardInterrupt; // 3.b used to set our own + // keyboard interrupt + ownKeyboardInterrupt.sa_handler = ourOwnKeyboardInterrupt; + // 3.c this function just prints info about receiving keyboard + // interrupt and sets keyboard interrupt occurance global variable + sigaction(SIGINT, &ownKeyboardInterrupt, NULL); + // 3.c set it so that interruption by default uses ownKeyboardInterrupt + pid_t *children = malloc(sizeof(pid_t) * NUM_CHILD); + // allocate memory for children + createChildProcesses(children); + if(!correctChildProcesses(children)) + { + sendSIGTERMsignal(children); + return 1; + } + printCreationOfAllChildProcesses(children); + terminateChildren(children); + struct sigaction restoreSignals; + ignoreSignals.sa_handler = SIG_DFL; + for(int i = 0; i < _NSIG; i++) + { + // old service handlers of all signals should be restored + sigaction(i, &restoreSignals, NULL); + } + return 0; +} + +int main() +{ + #ifndef WITH_SIGNALS + printf("Entering NO signals version! \n"); + return noSignalsVersion(); + #endif + #ifdef WITH_SIGNALS + printf("Entering signals version! \n"); + signalsVersion(); + return 0; + #endif +} diff --git a/EOPSY/lab3/EOPSY_LAB_3_KRZYSZTOF_RUDNICKI.pdf b/EOPSY/lab3/EOPSY_LAB_3_KRZYSZTOF_RUDNICKI.pdf new file mode 100644 index 00000000..a290e82c Binary files /dev/null and b/EOPSY/lab3/EOPSY_LAB_3_KRZYSZTOF_RUDNICKI.pdf differ diff --git a/EOPSY/lab3/report/FCFS.png b/EOPSY/lab3/report/FCFS.png new file mode 100644 index 00000000..8b4d6c1e Binary files /dev/null and b/EOPSY/lab3/report/FCFS.png differ diff --git a/EOPSY/lab3/report/README.tjk b/EOPSY/lab3/report/README.tjk new file mode 100644 index 00000000..cd3397ad --- /dev/null +++ b/EOPSY/lab3/report/README.tjk @@ -0,0 +1,199 @@ + + + WORKPLACE ORGANIZATION: +mkdir ../work +cd ../work +cp ../ftp/* . +gzip -d sched.tgz +tar -xvf sched.tar +rm sched.tar + + + READING: +less/vi README.tjk +netscape/lynx install_unix.html +netscape/lynx user_guide.html + + + COMPILE: +javac -nowarn *.java + + + RUN: +java Scheduling scheduling.conf + + + FILES: +input file name: scheduling.conf +output file name: Summary-Processes +log file name: Summary-Processes + + +--[ YOUR TASK ]------------------------------------------------------- + +Create a configuration file in which all processes run an average +of 2000 milliseconds with a standard deviation of zero, and which +are blocked for input or output every 500 milliseconds. Run the +simulation for 10000 milliseconds with 2 processes. Examine the +two output files. Try again for 5 processes. Try again for 10 +processes. Explain what's happening. + +---------------------------------------------------------------------- + +The Configuration File + + The configuration file (scheduling.conf) is used to specify various + parameters for the simulation, including: + * the number of processes, + * the mean runtime for a process, + * the standard deviation in runtime for a process, + * for each process, how long the process runs before it blocks for + input or output, and + * how long the simulation should run. + + Configuration File Options + + There are a number of options which can be specified in the + configuration file. These are summarized in the table below. + + Keyword Values Description + numprocess n The number of processes to create for the simulation. + meandev n The average length of time in milliseconds that a process + should execute before terminating. + standdev n The number of standard deviations from the average length + of time a process should execute before terminating. + process n The amount of time in milliseconds that the process should + execute before blocking for input or output. There should be a + separate process directive for each process specified by the + numprocess directive. + runtime n The maximum amount of time the simulation should run in + milliseconds. + +---------------------------------------------------------------------- + + Sample Configuration File + + The "scheduling.conf" configuration file looks like this: + +// # of Process +numprocess 3 + +// mean deivation +meandev 1100 + +// standard deviation +standdev 510 + +// process # I/O blocking +process 100 +process 500 +process 30 + +// duration of the simulation in milliseconds +runtime 5000 + + +---------------------------------------------------------------------- + +The Summary-Results File + + The Summary-Results file contains a summary report describing the + simulation and includes one line of summary information for each + process. The fields and columns in the report are described in the + following table. + + Field Description + Scheduling Type: The type of the scheduling algorithm used. The value + displayed is "hard coded" in the SchedulingAlgorithm.java file. + Scheduling Name: The name of the scheduling algorithm used. The value + displayed is "hard coded" in the SchedulingAlgorithm.java file. + Simulation Run Time: The number of milliseconds that the simulation + ran. This may be less than or equal to the total amount of time + specified by the "runtime" configuration parameter. + Mean: The average amount of runtime for the processes as specified by + the "meandev" configuration parameter. + Standard Deviation: The standard deviation from the average amount of + runtime for the processes as specified by the "standdev" configuration + parameter. + Process # The process number assigned to the process by the simulator. + The process number is between 0 and n-1, where n is the number + specified by the "numprocess" configuration parameter. + CPU Time The randomly generated total runtime for the process in + milliseconds. This is determined by the "meandev" and "standdev" + parameters in the configuration file. + IO Blocking The amount of time the process runs before it blocks for + input or output. This is specified for each process by a "process" + directive in the configuration file. + CPU Completed The amount of runtime in milliseconds completed for the + process. Note that this may be less than the CPU Time for the process + if the simulator runs out of time as specified by the "runtime" + configuration parameter. + CPU Blocked The number of times the process blocked for input or + output during the simulation. + + Sample Summary-Results File + + The output "Summary-Results" file looks something like this: + +Scheduling Type: Batch (Nonpreemptive) +Scheduling Name: First-Come First-Served +Simulation Run Time: 2750 +Mean: 1100 +Standard Deviation: 510 +Process # CPU Time IO Blocking CPU Completed CPU Blocked +0 1372 (ms) 100 (ms) 1372 (ms) 13 times +1 689 (ms) 500 (ms) 689 (ms) 1 times +2 689 (ms) 30 (ms) 689 (ms) 22 times + +---------------------------------------------------------------------- + +The Summary-Processes File + + The Summary-Processes file contains a log of the actions taken by the + scheduling algorithm as it considers each process in the scheduling + queue. + + Each line in the log file is of the following form: + +Process: process-number process-status... (cpu-time block-time accumulated-time + accumulated-time) + + The fields in the line are described in the table below. + + Field Description + process-number The process number assigned to the process by the + simulator. This is a number between 0 and n-1, where n is the value + specified for the "numprocess" configuration parameter. + process-status The status of the process at this point in time. If + "registered" then the process is under consideration by the scheduling + algorithm. If "I/O blocked", then the scheduling algorithm has noticed + that the process is blocked for input or output. If "completed", then + the scheduling algorithm has noticed that the process has met or + exceeded its allocated execution time. + cpu-time The total amount of run time allowed for this process. This + number is randomly generated for the process based on the "meandev" + and "standdev" values specified in the configuration file. + block-time The amount of time in milliseconds to execute before + blocking process. This number is specified for the process by the + "process" directive in the configuration file. + accumulated-time The total amount of time process has executed in + milliseconds. (This number appears twice in the log file; one should + be removed). + + Sample Summary-Processes File + + The output "Summary-Processes" file looks something like this: + +Process: 0 registered... (1372 100 0 0) +Process: 0 I/O blocked... (1372 100 100 100) +Process: 1 registered... (689 500 0 0) +Process: 1 I/O blocked... (689 500 500 500) +Process: 0 registered... (1372 100 100 100) +Process: 0 I/O blocked... (1372 100 200 200) +Process: 1 registered... (689 500 500 500) +Process: 1 completed... (689 500 689 689) +Process: 0 registered... (1372 100 200 200) +Process: 0 I/O blocked... (1372 100 300 300) +Process: 2 registered... (689 30 0 0) +Process: 2 I/O blocked... (689 30 30 30) + diff --git a/EOPSY/lab3/report/processesfive b/EOPSY/lab3/report/processesfive new file mode 100644 index 00000000..b5b52876 --- /dev/null +++ b/EOPSY/lab3/report/processesfive @@ -0,0 +1,39 @@ +Process: 0 registered... (2000 500 0 0) +Process: 0 I/O blocked... (2000 500 500 500) +Process: 1 registered... (2000 500 0 0) +Process: 1 I/O blocked... (2000 500 500 500) +Process: 0 registered... (2000 500 500 500) +Process: 0 I/O blocked... (2000 500 1000 1000) +Process: 1 registered... (2000 500 500 500) +Process: 1 I/O blocked... (2000 500 1000 1000) +Process: 0 registered... (2000 500 1000 1000) +Process: 0 I/O blocked... (2000 500 1500 1500) +Process: 1 registered... (2000 500 1000 1000) +Process: 1 I/O blocked... (2000 500 1500 1500) +Process: 0 registered... (2000 500 1500 1500) +Process: 0 completed... (2000 500 2000 2000) +Process: 1 registered... (2000 500 1500 1500) +Process: 1 completed... (2000 500 2000 2000) +Process: 2 registered... (2000 500 0 0) +Process: 2 I/O blocked... (2000 500 500 500) +Process: 3 registered... (2000 500 0 0) +Process: 3 I/O blocked... (2000 500 500 500) +Process: 2 registered... (2000 500 500 500) +Process: 2 I/O blocked... (2000 500 1000 1000) +Process: 3 registered... (2000 500 500 500) +Process: 3 I/O blocked... (2000 500 1000 1000) +Process: 2 registered... (2000 500 1000 1000) +Process: 2 I/O blocked... (2000 500 1500 1500) +Process: 3 registered... (2000 500 1000 1000) +Process: 3 I/O blocked... (2000 500 1500 1500) +Process: 2 registered... (2000 500 1500 1500) +Process: 2 completed... (2000 500 2000 2000) +Process: 3 registered... (2000 500 1500 1500) +Process: 3 completed... (2000 500 2000 2000) +Process: 4 registered... (2000 500 0 0) +Process: 4 I/O blocked... (2000 500 500 500) +Process: 4 registered... (2000 500 500 500) +Process: 4 I/O blocked... (2000 500 1000 1000) +Process: 4 registered... (2000 500 1000 1000) +Process: 4 I/O blocked... (2000 500 1500 1500) +Process: 4 registered... (2000 500 1500 1500) diff --git a/EOPSY/lab3/report/processesten b/EOPSY/lab3/report/processesten new file mode 100644 index 00000000..3f090156 --- /dev/null +++ b/EOPSY/lab3/report/processesten @@ -0,0 +1,39 @@ +Process: 0 registered... (2000 500 0 0) +Process: 0 I/O blocked... (2000 500 500 500) +Process: 1 registered... (2000 500 0 0) +Process: 1 I/O blocked... (2000 500 500 500) +Process: 0 registered... (2000 500 500 500) +Process: 0 I/O blocked... (2000 500 1000 1000) +Process: 1 registered... (2000 500 500 500) +Process: 1 I/O blocked... (2000 500 1000 1000) +Process: 0 registered... (2000 500 1000 1000) +Process: 0 I/O blocked... (2000 500 1500 1500) +Process: 1 registered... (2000 500 1000 1000) +Process: 1 I/O blocked... (2000 500 1500 1500) +Process: 0 registered... (2000 500 1500 1500) +Process: 0 completed... (2000 500 2000 2000) +Process: 1 registered... (2000 500 1500 1500) +Process: 1 completed... (2000 500 2000 2000) +Process: 2 registered... (2000 500 0 0) +Process: 2 I/O blocked... (2000 500 500 500) +Process: 3 registered... (2000 500 0 0) +Process: 3 I/O blocked... (2000 500 500 500) +Process: 2 registered... (2000 500 500 500) +Process: 2 I/O blocked... (2000 500 1000 1000) +Process: 3 registered... (2000 500 500 500) +Process: 3 I/O blocked... (2000 500 1000 1000) +Process: 2 registered... (2000 500 1000 1000) +Process: 2 I/O blocked... (2000 500 1500 1500) +Process: 3 registered... (2000 500 1000 1000) +Process: 3 I/O blocked... (2000 500 1500 1500) +Process: 2 registered... (2000 500 1500 1500) +Process: 2 completed... (2000 500 2000 2000) +Process: 3 registered... (2000 500 1500 1500) +Process: 3 completed... (2000 500 2000 2000) +Process: 4 registered... (2000 500 0 0) +Process: 4 I/O blocked... (2000 500 500 500) +Process: 5 registered... (2000 500 0 0) +Process: 5 I/O blocked... (2000 500 500 500) +Process: 4 registered... (2000 500 500 500) +Process: 4 I/O blocked... (2000 500 1000 1000) +Process: 5 registered... (2000 500 500 500) diff --git a/EOPSY/lab3/report/processestwo b/EOPSY/lab3/report/processestwo new file mode 100644 index 00000000..ba298264 --- /dev/null +++ b/EOPSY/lab3/report/processestwo @@ -0,0 +1,16 @@ +Process: 0 registered... (2000 500 0 0) +Process: 0 I/O blocked... (2000 500 500 500) +Process: 1 registered... (2000 500 0 0) +Process: 1 I/O blocked... (2000 500 500 500) +Process: 0 registered... (2000 500 500 500) +Process: 0 I/O blocked... (2000 500 1000 1000) +Process: 1 registered... (2000 500 500 500) +Process: 1 I/O blocked... (2000 500 1000 1000) +Process: 0 registered... (2000 500 1000 1000) +Process: 0 I/O blocked... (2000 500 1500 1500) +Process: 1 registered... (2000 500 1000 1000) +Process: 1 I/O blocked... (2000 500 1500 1500) +Process: 0 registered... (2000 500 1500 1500) +Process: 0 completed... (2000 500 2000 2000) +Process: 1 registered... (2000 500 1500 1500) +Process: 1 completed... (2000 500 2000 2000) diff --git a/EOPSY/lab3/report/procestates.png b/EOPSY/lab3/report/procestates.png new file mode 100644 index 00000000..91f2d576 Binary files /dev/null and b/EOPSY/lab3/report/procestates.png differ diff --git a/EOPSY/lab3/report/report.aux b/EOPSY/lab3/report/report.aux new file mode 100644 index 00000000..9122ee46 --- /dev/null +++ b/EOPSY/lab3/report/report.aux @@ -0,0 +1,52 @@ +\relax +\providecommand\hyper@newdestlabel[2]{} +\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} +\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined +\global\let\oldcontentsline\contentsline +\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} +\global\let\oldnewlabel\newlabel +\gdef\newlabel#1#2{\newlabelxx{#1}#2} +\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} +\AtEndDocument{\ifx\hyper@anchor\@undefined +\let\contentsline\oldcontentsline +\let\newlabel\oldnewlabel +\fi} +\fi} +\global\let\hyper@last\relax +\gdef\HyperFirstAtBeginDocument#1{#1} +\providecommand\HyField@AuxAddToFields[1]{} +\providecommand\HyField@AuxAddToCoFields[2]{} +\citation{lab3 Manual} +\citation{lab3 Manual} +\citation{First come first serve} +\@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{1}{section.1}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{First come first serve}{1}{section*.1}\protected@file@percent } +\citation{Other scheduling algorithms} +\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces First come first serve example graphic from \href {https://www.geeksforgeeks.org/program-for-fcfs-cpu-scheduling-set-1/}{[Geeks for Geeks]}}}{2}{figure.1}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{Other algorithms}{2}{section*.2}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {2}Explanation of types of values in summary results and summary process}{2}{section.2}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Summary Results}{2}{subsection.2.1}\protected@file@percent } +\citation{lab3 Manual} +\citation{lab3 Manual} +\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Summary Processes}{3}{subsection.2.2}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {3}Scheduling conf settings}{3}{section.3}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {4}Two processes}{4}{section.4}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {4.1}Summary Results file}{4}{subsection.4.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {4.2}Summary Processes file}{4}{subsection.4.2}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {4.3}Comments}{4}{subsection.4.3}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {5}Five processes}{5}{section.5}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {5.1}Summary Results file}{6}{subsection.5.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {5.2}Summary Processes file}{6}{subsection.5.2}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {5.3}Comments}{7}{subsection.5.3}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {6}Ten processes}{7}{section.6}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {6.1}Summary Results file}{7}{subsection.6.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {6.2}Summary Processes file}{8}{subsection.6.2}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {6.3}Comments}{9}{subsection.6.3}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {7}Getting process to be blocked 4 times}{9}{section.7}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {7.1}Summary Results file}{9}{subsection.7.1}\protected@file@percent } +\citation{First come first serve} +\@writefile{toc}{\contentsline {section}{\numberline {8}Finishing comments}{10}{section.8}\protected@file@percent } +\bibcite{lab3 Manual}{1} +\bibcite{First come first serve}{2} +\bibcite{Other scheduling algorithms}{3} +\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces \href {https://commons.wikimedia.org/wiki/File:Process_states.svg}{[Process states and how they switch from wikimedia]}}}{11}{figure.2}\protected@file@percent } diff --git a/EOPSY/lab3/report/report.fdb_latexmk b/EOPSY/lab3/report/report.fdb_latexmk new file mode 100644 index 00000000..4e3bb327 --- /dev/null +++ b/EOPSY/lab3/report/report.fdb_latexmk @@ -0,0 +1,81 @@ +# Fdb version 3 +["pdflatex"] 1651354217 "report.tex" "report.pdf" "report" 1651354217 + "/etc/texmf/web2c/texmf.cnf" 1649511474 475 c0e671620eb5563b2130f56340a5fde8 "" + "/usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map" 1577235249 3524 cb3e574dea2d1052e39280babc910dc8 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/jknappen/ec/tcrm1000.tfm" 1136768653 1536 e07581a4bb3136ece9eeb4c3ffab8233 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmbx10.tfm" 1136768653 1328 c834bbb027764024c09d3d2bf908b5f0 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm" 1136768653 1324 c910af8c371558dc20f2d7822f66fe64 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm" 1136768653 1524 4414a8315f39513458b80dfc63bff03a "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm" 1136768653 1512 f21f83efb36853c0b70002322c1ab3ad "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi8.tfm" 1136768653 1520 eccf95517727cb11801f4f1aee3a21b4 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr12.tfm" 1136768653 1288 655e228510b4c2a1abe905c368440826 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr17.tfm" 1136768653 1292 296a67155bdbfc32aa9c636f21e91433 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr6.tfm" 1136768653 1300 b62933e007d01cfd073f79b963c01526 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr8.tfm" 1136768653 1292 21c1c5bfeaebccffdb478fd231a0997d "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm" 1136768653 1124 6c73e740cf17375f03eec0ee63599741 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm" 1136768653 1116 933a60c408fc0a863a92debe84b2d294 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy8.tfm" 1136768653 1120 8b7d695260f3cff42e636090a8002094 "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb" 1248133631 34811 78b52f49e893bcba91bd7581cdc144c0 "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb" 1248133631 32080 340ef9bf63678554ee606688e7b5339d "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb" 1248133631 35752 024fb6c41858982481f6968b5fc26508 "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb" 1248133631 32722 d7379af29a190c3f453aba36302ff5a9 "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb" 1248133631 32362 179c33bbf43f19adbb3825bb4e36e57a "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb" 1248133631 32569 5e5ddc8df908dea60932f3c484a54c0d "" + "/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii" 1461363279 71627 94eb9990bed73c364d7f53f960cc8c5b "" + "/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty" 1575674566 24708 5584a51a7101caf7e6bbf1fc27d8f7b1 "" + "/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty" 1576625341 40635 c40361e206be584d448876bba8a64a3b "" + "/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty" 1576016050 33961 6b5c75130e435b2bfdb9f480a09a39f9 "" + "/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty" 1576625273 7734 b98cbb34c81f667027c1e3ebdbfce34b "" + "/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty" 1576625223 8371 9d55b8bd010bc717624922fb3477d92e "" + "/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty" 1573336935 6902 30fdaf7dc5636b8e3afa306210c45cae "" + "/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty" 1575499628 8356 7bbb2c2373aa810be568c29e333da8ed "" + "/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty" 1576625065 31769 002a487f55041f8e805cfbf6385ffd97 "" + "/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty" 1576878844 5412 d5a2436094cd7be85769db90f29250a6 "" + "/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty" 1576624944 13807 952b0226d4efca026f0e19dd266dcc22 "" + "/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty" 1576624883 18552 1e1cc7b75da0dfaacce7cdcb27d306bf "" + "/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty" 1576015897 19007 15924f7228aca6c6d184b115f4baa231 "" + "/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty" 1576624663 7008 f92eaa0a3872ed622bbf538217cd2ab7 "" + "/usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty" 1576191570 19336 ce7ae9438967282886b3b036cfad1e4d "" + "/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty" 1576625391 3935 57aa3c3e203a5c2effb4d2bd2efbc323 "" + "/usr/share/texlive/texmf-dist/tex/latex/base/article.cls" 1580683321 20023 e427dd9e17e239bf926ef3aab67fe35e "" + "/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo" 1580683321 8446 9874cccac5fee462272c582807dbbf56 "" + "/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty" 1579991033 13886 d1306dcf79a944f6988e688c1785f9ce "" + "/usr/share/texlive/texmf-dist/tex/latex/float/float.sty" 1137110151 6749 16d2656a1984957e674b149555f1ea1d "" + "/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg" 1465944070 1224 978390e9c2234eab29404bc21b268d1e "" + "/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def" 1515537368 17334 520b9b85ad8a2a48eda3f643e27a5179 "" + "/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty" 1580683321 16932 04729abe63b66ec59ea56edcd722b058 "" + "/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty" 1580683321 9067 1b996612394a52e1efe89c8bfe8a5892 "" + "/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty" 1580683321 2590 e3b24ff953e5b58d924f163d25380312 "" + "/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty" 1580683321 3976 d7fa7d81d2870d509d25b17d0245e735 "" + "/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty" 1580250785 17914 4c28a13fc3d975e6e81c9bea1d697276 "" + "/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def" 1579642962 50630 3d9728faf8630190cf601ce2cbe470d9 "" + "/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty" 1579642962 238752 60dd338d71b6a4ab2192131f73dc908b "" + "/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty" 1579642962 13244 0070bcab7b5a88187847128d22faf4d8 "" + "/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def" 1579642962 14134 32b36577d311ddb6522413c7581ee968 "" + "/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty" 1575152344 22520 c4c2dab203104295e1e618be7e5c0f5b "" + "/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def" 1580854751 25404 9d60f463a00d154207ec0048dee27cf0 "" + "/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1279039959 678 4792914a8f45be57bb98413425e4c7af "" + "/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty" 1575499565 5766 13a9e8766c47f30327caf893ece86ac8 "" + "/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg" 1568236792 1830 bbaba8afaf42cc048ec4d4ff73467521 "" + "/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty" 1568236792 80511 830f3f1d3ab7448dd84233e9c2f6462c "" + "/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty" 1568236792 77022 32914f01b528131c47be2a1040d3856d "" + "/usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty" 1574631863 19963 36fd8e818f9f0f32e2db8413d4970122 "" + "/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty" 1576624809 9878 9e94e8fa600d95f9c7731bb21dfb67a4 "" + "/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty" 1575674187 9715 b051d5b493d9fe5f4bc251462d039e5f "" + "/usr/share/texlive/texmf-dist/tex/latex/url/url.sty" 1388531844 12796 8edb7d69a20b857904dd0ea757c14ec9 "" + "/usr/share/texlive/texmf-dist/web2c/texmf.cnf" 1581979058 38841 ce3692aa899bb693b90b87eaa5d4d84e "" + "/usr/share/texmf/fonts/enc/dvips/cm-super/cm-super-ts1.enc" 1565080000 2900 1537cc8184ad1792082cd229ecc269f4 "" + "/usr/share/texmf/fonts/type1/public/cm-super/sfrm1000.pfb" 1565080000 138258 6525c253f16cededa14c7fd0da7f67b2 "" + "/usr/share/texmf/web2c/texmf.cnf" 1581979058 38841 ce3692aa899bb693b90b87eaa5d4d84e "" + "/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1649511498 4770781 1ed1abab22da9c3e2cc82e4db562318b "" + "/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1649511522 8256308 efb305160d4d659dcd0c4df67bdfa340 "" + "FCFS.png" 1651350092 42317 5ebe07a101aaf2d148e57b506da358f0 "" + "procestates.png" 1651352865 110475 1f55e2f2da8c9783d96601760f995869 "" + "report.aux" 1651354217 4117 9b802ad34f90fabb850c26a4e32d8f46 "pdflatex" + "report.out" 1651354217 1281 b983e77f93d96fee254255605b0880b6 "pdflatex" + "report.tex" 1651354210 15461 4394df717bf9562e573a0b86e0de939f "" + (generated) + "report.pdf" + "report.aux" + "report.log" + "report.out" diff --git a/EOPSY/lab3/report/report.fls b/EOPSY/lab3/report/report.fls new file mode 100644 index 00000000..491c4a7a --- /dev/null +++ b/EOPSY/lab3/report/report.fls @@ -0,0 +1,136 @@ +PWD /home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/EOPSY/eopsy_rudnicki_lab/lab3/report +INPUT /etc/texmf/web2c/texmf.cnf +INPUT /usr/share/texmf/web2c/texmf.cnf +INPUT /usr/share/texlive/texmf-dist/web2c/texmf.cnf +INPUT /var/lib/texmf/web2c/pdftex/pdflatex.fmt +INPUT report.tex +OUTPUT report.log +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo +INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg +INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def +INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def +INPUT /usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def +INPUT /usr/share/texlive/texmf-dist/tex/latex/float/float.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/float/float.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def +INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def +INPUT report.aux +INPUT report.aux +OUTPUT report.aux +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty +INPUT report.out +INPUT report.out +INPUT report.out +INPUT report.out +OUTPUT report.pdf +INPUT ./report.out +INPUT ./report.out +OUTPUT report.out +INPUT /usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +INPUT /usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +INPUT /usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +INPUT /usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr17.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr12.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr8.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr6.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi8.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy8.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr12.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmbx10.tfm +INPUT FCFS.png +INPUT ./FCFS.png +INPUT ./FCFS.png +INPUT /var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/jknappen/ec/tcrm1000.tfm +INPUT procestates.png +INPUT ./procestates.png +INPUT ./procestates.png +INPUT report.aux +INPUT ./report.out +INPUT ./report.out +INPUT /usr/share/texmf/fonts/enc/dvips/cm-super/cm-super-ts1.enc +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb +INPUT /usr/share/texmf/fonts/type1/public/cm-super/sfrm1000.pfb diff --git a/EOPSY/lab3/report/report.log b/EOPSY/lab3/report/report.log new file mode 100644 index 00000000..06340e87 --- /dev/null +++ b/EOPSY/lab3/report/report.log @@ -0,0 +1,291 @@ +This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian) (preloaded format=pdflatex 2022.4.9) 30 APR 2022 23:30 +entering extended mode + restricted \write18 enabled. + file:line:error style messages enabled. + %&-line parsing enabled. +**report.tex +(./report.tex +LaTeX2e <2020-02-02> patch level 2 +L3 programming layer <2020-02-14> (/usr/share/texlive/texmf-dist/tex/latex/base/article.cls +Document Class: article 2019/12/20 v1.4l Standard LaTeX document class +(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo +File: size10.clo 2019/12/20 v1.4l Standard LaTeX file (size option) +) +\c@part=\count167 +\c@section=\count168 +\c@subsection=\count169 +\c@subsubsection=\count170 +\c@paragraph=\count171 +\c@subparagraph=\count172 +\c@figure=\count173 +\c@table=\count174 +\abovecaptionskip=\skip47 +\belowcaptionskip=\skip48 +\bibindent=\dimen134 +) (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty +Package: keyval 2014/10/28 v1.15 key=value parser (DPC) +\KV@toks@=\toks14 +) +\lst@mode=\count175 +\lst@gtempboxa=\box45 +\lst@token=\toks15 +\lst@length=\count176 +\lst@currlwidth=\dimen135 +\lst@column=\count177 +\lst@pos=\count178 +\lst@lostspace=\dimen136 +\lst@width=\dimen137 +\lst@newlines=\count179 +\lst@lineno=\count180 +\lst@maxwidth=\dimen138 + (/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty +File: lstmisc.sty 2019/09/10 1.8c (Carsten Heinz) +\c@lstnumber=\count181 +\lst@skipnumbers=\count182 +\lst@framebox=\box46 +) (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg +File: listings.cfg 2019/09/10 1.8c listings configuration +)) +Package: listings 2019/09/10 1.8c (Carsten Heinz) + (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty +Package: hyperref 2020/01/14 v7.00d Hypertext links for LaTeX + (/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty +Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO) +) (/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +Package: iftex 2019/11/07 v1.0c TeX engine tests +) (/usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty +Package: pdftexcmds 2019/11/24 v0.31 Utility functions of pdfTeX for LuaTeX (HO) + (/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty +Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) +) +Package pdftexcmds Info: \pdf@primitive is available. +Package pdftexcmds Info: \pdf@ifprimitive is available. +Package pdftexcmds Info: \pdfdraftmode found. +) (/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty +Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO) +) (/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty +Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) +) (/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty +Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) +) (/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty +Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) +) (/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty +Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO) +) (/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty +Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) +) (/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty +Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO) +) +\@linkdim=\dimen139 +\Hy@linkcounter=\count183 +\Hy@pagecounter=\count184 + (/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def +File: pd1enc.def 2020/01/14 v7.00d Hyperref: PDFDocEncoding definition (HO) +Now handling font encoding PD1 ... +... no UTF-8 mapping file for font encoding PD1 +) (/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty +Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) +) (/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty +Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO) +) +\Hy@SavedSpaceFactor=\count185 +\pdfmajorversion=\count186 +Package hyperref Info: Hyper figures OFF on input line 4547. +Package hyperref Info: Link nesting OFF on input line 4552. +Package hyperref Info: Hyper index ON on input line 4555. +Package hyperref Info: Plain pages OFF on input line 4562. +Package hyperref Info: Backreferencing OFF on input line 4567. +Package hyperref Info: Implicit mode ON; LaTeX internals redefined. +Package hyperref Info: Bookmarks ON on input line 4800. +\c@Hy@tempcnt=\count187 + (/usr/share/texlive/texmf-dist/tex/latex/url/url.sty +\Urlmuskip=\muskip16 +Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. +) +LaTeX Info: Redefining \url on input line 5159. +\XeTeXLinkMargin=\dimen140 + (/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty +Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) + (/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty +Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO) +)) +\Fld@menulength=\count188 +\Field@Width=\dimen141 +\Fld@charsize=\dimen142 +Package hyperref Info: Hyper figures OFF on input line 6430. +Package hyperref Info: Link nesting OFF on input line 6435. +Package hyperref Info: Hyper index ON on input line 6438. +Package hyperref Info: backreferencing OFF on input line 6445. +Package hyperref Info: Link coloring OFF on input line 6450. +Package hyperref Info: Link coloring with OCG OFF on input line 6455. +Package hyperref Info: PDF/A mode OFF on input line 6460. +LaTeX Info: Redefining \ref on input line 6500. +LaTeX Info: Redefining \pageref on input line 6504. + (/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty +Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO) +) +\Hy@abspage=\count189 +\c@Item=\count190 +\c@Hfootnote=\count191 +) +Package hyperref Info: Driver (autodetected): hpdftex. + (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def +File: hpdftex.def 2020/01/14 v7.00d Hyperref driver for pdfTeX + (/usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty +Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO) +Package atveryend Info: \enddocument detected (standard20110627). +) +\Fld@listcount=\count192 +\c@bookmark@seq@number=\count193 + (/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty +Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO) + (/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty +Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) +) +Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 286. +) +\Hy@SectionHShift=\skip49 +) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty +Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR) + (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty +Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR) + +(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty +Package: trig 2016/01/03 v1.10 sin cos tan (DPC) +) (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration +) +Package graphics Info: Driver file: pdftex.def on input line 105. + (/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def +File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex +)) +\Gin@req@height=\dimen143 +\Gin@req@width=\dimen144 +) (/usr/share/texlive/texmf-dist/tex/latex/float/float.sty +Package: float 2001/11/08 v1.3d Float enhancements (AL) +\c@float@type=\count194 +\float@exts=\toks16 +\float@box=\box47 +\@float@everytoks=\toks17 +\@floatcapt=\box48 +) (/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def +File: l3backend-pdfmode.def 2020-02-03 L3 backend support: PDF mode +\l__kernel_color_stack_int=\count195 +\l__pdf_internal_box=\box49 +) (./report.aux) +\openout1 = `report.aux'. + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 6. +LaTeX Font Info: ... okay on input line 6. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 6. +LaTeX Font Info: ... okay on input line 6. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 6. +LaTeX Font Info: ... okay on input line 6. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 6. +LaTeX Font Info: ... okay on input line 6. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 6. +LaTeX Font Info: ... okay on input line 6. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 6. +LaTeX Font Info: ... okay on input line 6. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 6. +LaTeX Font Info: ... okay on input line 6. +LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 6. +LaTeX Font Info: ... okay on input line 6. +\c@lstlisting=\count196 +\AtBeginShipoutBox=\box50 +Package hyperref Info: Link coloring OFF on input line 6. + (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty +Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section + (/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty +Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) +) (/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty +Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) +) +\c@section@level=\count197 +) +LaTeX Info: Redefining \ref on input line 6. +LaTeX Info: Redefining \pageref on input line 6. +LaTeX Info: Redefining \nameref on input line 6. + (./report.out) (./report.out) +\@outlinefile=\write3 +\openout3 = `report.out'. + + (/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +\scratchcounter=\count198 +\scratchdimen=\dimen145 +\scratchbox=\box51 +\nofMPsegments=\count199 +\nofMParguments=\count266 +\everyMPshowfont=\toks18 +\MPscratchCnt=\count267 +\MPscratchDim=\dimen146 +\MPnumerator=\count268 +\makeMPintoPDFobject=\count269 +\everyMPtoPDFconversion=\toks19 +) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf +Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 485. + (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live +)) +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <12> on input line 11. +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <8> on input line 11. +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <6> on input line 11. +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line 22. +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line 22. + +File: FCFS.png Graphic file (type png) + +Package pdftex.def Info: FCFS.png used on input line 31. +(pdftex.def) Requested size: 345.0pt x 227.94916pt. + [1 + +{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2pdfTeX warning (ext4): destination with the same identifier (name{figure.1}) has been already used, duplicate ignored + +\AtBegShi@Output ...ipout \box \AtBeginShipoutBox + \fi \fi +l.54 \item P + rocess \# - Process number <./FCFS.png>] [3] [4] [5] [6] [7] [8] [9] + +File: procestates.png Graphic file (type png) + +Package pdftex.def Info: procestates.png used on input line 388. +(pdftex.def) Requested size: 345.0pt x 344.99533pt. + [10] +Package atveryend Info: Empty hook `BeforeClearDocument' on input line 399. + [11pdfTeX warning (ext4): destination with the same identifier (name{figure.2}) has been already used, duplicate ignored + +\AtBegShi@Output ...ipout \box \AtBeginShipoutBox + \fi \fi +l.399 \end{document} + <./procestates.png>] +Package atveryend Info: Empty hook `AfterLastShipout' on input line 399. + (./report.aux) +Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 399. +Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 399. +Package rerunfilecheck Info: File `report.out' has not changed. +(rerunfilecheck) Checksum: B983E77F93D96FEE254255605B0880B6;1281. +Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 399. + ) +Here is how much of TeX's memory you used: + 7044 strings out of 481239 + 104717 string characters out of 5920378 + 391480 words of memory out of 5000000 + 22045 multiletter control sequences out of 15000+600000 + 536928 words of font info for 39 fonts, out of 8000000 for 9000 + 1141 hyphenation exceptions out of 8191 + 34i,6n,36p,285b,1721s stack positions out of 5000i,500n,10000p,200000b,80000s +{/usr/share/texmf/fonts/enc/dvips/cm-super/cm-super-ts1.enc} +Output written on report.pdf (11 pages, 231091 bytes). +PDF statistics: + 367 PDF objects out of 1000 (max. 8388607) + 341 compressed objects within 4 object streams + 181 named destinations out of 1000 (max. 500000) + 171 words of extra memory for PDF output out of 10000 (max. 10000000) + diff --git a/EOPSY/lab3/report/report.out b/EOPSY/lab3/report/report.out new file mode 100644 index 00000000..f5b8bcd1 --- /dev/null +++ b/EOPSY/lab3/report/report.out @@ -0,0 +1,20 @@ +\BOOKMARK [1][-]{section.1}{Introduction}{}% 1 +\BOOKMARK [1][-]{section.2}{Explanation of types of values in summary results and summary process}{}% 2 +\BOOKMARK [2][-]{subsection.2.1}{Summary Results}{section.2}% 3 +\BOOKMARK [2][-]{subsection.2.2}{Summary Processes}{section.2}% 4 +\BOOKMARK [1][-]{section.3}{Scheduling conf settings}{}% 5 +\BOOKMARK [1][-]{section.4}{Two processes}{}% 6 +\BOOKMARK [2][-]{subsection.4.1}{Summary Results file}{section.4}% 7 +\BOOKMARK [2][-]{subsection.4.2}{Summary Processes file}{section.4}% 8 +\BOOKMARK [2][-]{subsection.4.3}{Comments}{section.4}% 9 +\BOOKMARK [1][-]{section.5}{Five processes}{}% 10 +\BOOKMARK [2][-]{subsection.5.1}{Summary Results file}{section.5}% 11 +\BOOKMARK [2][-]{subsection.5.2}{Summary Processes file}{section.5}% 12 +\BOOKMARK [2][-]{subsection.5.3}{Comments}{section.5}% 13 +\BOOKMARK [1][-]{section.6}{Ten processes}{}% 14 +\BOOKMARK [2][-]{subsection.6.1}{Summary Results file}{section.6}% 15 +\BOOKMARK [2][-]{subsection.6.2}{Summary Processes file}{section.6}% 16 +\BOOKMARK [2][-]{subsection.6.3}{Comments}{section.6}% 17 +\BOOKMARK [1][-]{section.7}{Getting process to be blocked 4 times}{}% 18 +\BOOKMARK [2][-]{subsection.7.1}{Summary Results file}{section.7}% 19 +\BOOKMARK [1][-]{section.8}{Finishing comments}{}% 20 diff --git a/EOPSY/lab3/report/report.pdf b/EOPSY/lab3/report/report.pdf new file mode 100644 index 00000000..a290e82c Binary files /dev/null and b/EOPSY/lab3/report/report.pdf differ diff --git a/EOPSY/lab3/report/report.synctex.gz b/EOPSY/lab3/report/report.synctex.gz new file mode 100644 index 00000000..a26f9ca9 Binary files /dev/null and b/EOPSY/lab3/report/report.synctex.gz differ diff --git a/EOPSY/lab3/report/report.tex b/EOPSY/lab3/report/report.tex new file mode 100644 index 00000000..f6592e81 --- /dev/null +++ b/EOPSY/lab3/report/report.tex @@ -0,0 +1,399 @@ +\documentclass{article} +\usepackage{listings} +\usepackage{hyperref} +\usepackage{graphicx} +\usepackage{float} +\begin{document} +\title{EOPSY Lab 3 Report} +\author{Krzysztof Rudnicki, 307585} +\date{\today} +\maketitle +\section{Introduction} +ALL TEXT SURROUNDED BY [] LIKE \cite{lab3 Manual} SHOULD BE CLICKABLE AND LEAD +EITHER TO WEBPAGE OR PLACE IN THIS DOCUMENT \\ +The goal of the laboratory was to create three scenarios using config file and +then investigate how those scenarios played out. \\ +Scenario 1: 2 Processes \\ +Scenario 2: 5 Processes \\ +Scenario 3: 10 Processes \\ +We had to get to know how the schedulers work, how they switch. \cite{lab3 +Manual} +\paragraph{First come first serve} +We used First come first serve algorithm $\rightarrow$ This algorithm simply executes the process which +arrived first. The process that requests CPU as a first process gets the CPU +first. It is easy to implement and understand. We just use Queue data structure +and we pick processes from the head of the queue and new procesess are added at +the tail of the queue. \cite{First come first serve} +\begin{figure}[H] + \caption{First come first serve example graphic from + \href{https://www.geeksforgeeks.org/program-for-fcfs-cpu-scheduling-set-1/}{[Geeks for + Geeks]}} + \includegraphics[width=\textwidth]{FCFS} +\end{figure} +\paragraph{Other algorithms} \cite{Other scheduling algorithms} +\begin{enumerate} + \item Shortest-Job-Next - Executes first processes that will take least + time to finish + \item Priority Scheduling - Each process gets assigned a prority and we + execute them from the process with highest priority to the + process with lowest prority + \item Round Robin Scheduling - We give each process a constant time to + execute, after this time expires regardless whether process + finished or not we go to another process untill all of them are + finished +\end{enumerate} +\section{Explanation of types of values in summary results and summary +process} +\subsection{Summary Results} +\begin{itemize} + \item Scheduling Type - Type of scheduling algorithm used + \item Scheduling Name - Name of the scheduling algorithm + \item Simulation Run Time - How long simulation run + \item Mean - Average runtime for the processes + \item Standard Deviation - Deviation from mean + \item Process \# - Process number + \item CPU Time - Total runtime for the process + \item IO Blocking - How long process runs before it is blocked for + input or output + \item CPU Completed - How long runtime completed for the process + \item CPU Blocked - How often the process was blocked +\end{itemize} +\cite{lab3 Manual} +\subsection{Summary Processes} +\begin{itemize} + \item process-number - Process number assigned by simulator + \item process-status - Registered - process can be used by scheduling + algorithm, I/O blocked - process blocked for input or output, + Completed - process met or exceeded execution time + \item cpu-time - Total amount of runtime allowed for this process + \item block-time - amount of time before blocking process + \item accumulated-time - how long the process has already executed + (appears twice) +\end{itemize} +\cite{lab3 Manual} + +\section{Scheduling conf settings} +\begin{lstlisting} +// # of Process +numprocess 2 or 5 or 10 + +// mean deivation +meandev 2000 + +// standard deviation +standdev 0 + +// process # I/O blocking +process 500 +process 500 +(more if we set numprocess to 5 or 10) + +// duration of the simulation in milliseconds +runtime 10000 + +\end{lstlisting} + +\section{Two processes} +\subsection{Summary Results file} + + +\begin{lstlisting} +Scheduling Type: Batch (Nonpreemptive) +Scheduling Name: First-Come First-Served +Simulation Run Time: 4000 +Mean: 2000 +Standard Deviation: 0 +\end{lstlisting} + +\begin{center} +\begin{tabular}{| c | c | c | c | c |} +\hline +Process\# & CPU Time & IO Blocking & CPU Completed & CPU Blocked \\ +\hline +0& 2000 (ms)& 500 (ms)& 2000 (ms)& 3 times \\ +\hline +1& 2000 (ms)& 500 (ms)& 2000 (ms)& 3 times \\ +\hline +\end{tabular} +\end{center} + +\subsection{Summary Processes file} +\begin{lstlisting} +Process: 0 registered... (2000 500 0 0) +Process: 0 I/O blocked... (2000 500 500 500) +Process: 1 registered... (2000 500 0 0) +Process: 1 I/O blocked... (2000 500 500 500) +Process: 0 registered... (2000 500 500 500) +Process: 0 I/O blocked... (2000 500 1000 1000) +Process: 1 registered... (2000 500 500 500) +Process: 1 I/O blocked... (2000 500 1000 1000) +Process: 0 registered... (2000 500 1000 1000) +Process: 0 I/O blocked... (2000 500 1500 1500) +Process: 1 registered... (2000 500 1000 1000) +Process: 1 I/O blocked... (2000 500 1500 1500) +Process: 0 registered... (2000 500 1500 1500) +Process: 0 completed... (2000 500 2000 2000) +Process: 1 registered... (2000 500 1500 1500) +Process: 1 completed... (2000 500 2000 2000) +\end{lstlisting} +\subsection{Comments} +Scheduling type was Batch since I did not change it in SchedulingAlgorithm.java +file \\ +Scheduling Name was First-Come First-Served since this is what what we use as +described in README for this laboratory \\ +Simulation Run time is 4000 ms and NOT 10000 ms since the simulation finished +before it exceeded this max time \\ +Mean is 2000 since this is a value I set in conf value according to laboratory +task description, same with standard deviation equal to 0 and CPU Time equal to +2000 ms \\ +IO Blocking is equal to 500 ms, this is a value which we specified in +configuration file and since we did not exceeded the runtime parameter it stayed +equal to 500 ms \\ +CPU completed is equal to 2000 since this is deviation we set in configuration +settings and the runtime was not exceeded \\ +All processes blocked 3 times, analysing summary processes we can see that they +blocked at 500 ms, 1000 ms and 1500 ms and at 2000 seconds they completed + +\section{Five processes} +\newpage +\subsection{Summary Results file} +\begin{lstlisting} +Scheduling Type: Batch (Nonpreemptive) +Scheduling Name: First-Come First-Served +Simulation Run Time: 10000 +Mean: 2000 +Standard Deviation: 0 +\end{lstlisting} +\begin{center} +\begin{tabular}{| c | c | c | c | c |} +\hline +Process\# & CPU Time & IO Blocking & CPU Completed & CPU Blocked \\ +\hline +0& 2000 (ms)& 500 (ms)& 2000 (ms)& 3 times \\ +\hline +1& 2000 (ms)& 500 (ms)& 2000 (ms)& 3 times \\ +\hline +2& 2000 (ms)& 500 (ms)& 2000 (ms)& 3 times \\ +\hline +3& 2000 (ms)& 500 (ms)& 2000 (ms)& 3 times \\ +\hline +4& 2000 (ms)& 500 (ms)& 2000 (ms)& 3 times \\ +\hline +\end{tabular} +\end{center} + +\subsection{Summary Processes file} +\begin{lstlisting} +Process: 0 registered... (2000 500 0 0) +Process: 0 I/O blocked... (2000 500 500 500) +Process: 1 registered... (2000 500 0 0) +Process: 1 I/O blocked... (2000 500 500 500) +Process: 0 registered... (2000 500 500 500) +Process: 0 I/O blocked... (2000 500 1000 1000) +Process: 1 registered... (2000 500 500 500) +Process: 1 I/O blocked... (2000 500 1000 1000) +Process: 0 registered... (2000 500 1000 1000) +Process: 0 I/O blocked... (2000 500 1500 1500) +Process: 1 registered... (2000 500 1000 1000) +Process: 1 I/O blocked... (2000 500 1500 1500) +Process: 0 registered... (2000 500 1500 1500) +Process: 0 completed... (2000 500 2000 2000) +Process: 1 registered... (2000 500 1500 1500) +Process: 1 completed... (2000 500 2000 2000) +Process: 2 registered... (2000 500 0 0) +Process: 2 I/O blocked... (2000 500 500 500) +Process: 3 registered... (2000 500 0 0) +Process: 3 I/O blocked... (2000 500 500 500) +Process: 2 registered... (2000 500 500 500) +Process: 2 I/O blocked... (2000 500 1000 1000) +Process: 3 registered... (2000 500 500 500) +Process: 3 I/O blocked... (2000 500 1000 1000) +Process: 2 registered... (2000 500 1000 1000) +Process: 2 I/O blocked... (2000 500 1500 1500) +Process: 3 registered... (2000 500 1000 1000) +Process: 3 I/O blocked... (2000 500 1500 1500) +Process: 2 registered... (2000 500 1500 1500) +Process: 2 completed... (2000 500 2000 2000) +Process: 3 registered... (2000 500 1500 1500) +Process: 3 completed... (2000 500 2000 2000) +Process: 4 registered... (2000 500 0 0) +Process: 4 I/O blocked... (2000 500 500 500) +Process: 4 registered... (2000 500 500 500) +Process: 4 I/O blocked... (2000 500 1000 1000) +Process: 4 registered... (2000 500 1000 1000) +Process: 4 I/O blocked... (2000 500 1500 1500) +Process: 4 registered... (2000 500 1500 1500) +\end{lstlisting} +\subsection{Comments} +Scheduling type was Batch since I did not change it in SchedulingAlgorithm.java +file \\ +Scheduling Name was First-Come First-Served since this is what what we use as +described in README for this laboratory \\ +Simulation run time is 10000 ms since it run untill the limit I set in conf file +according to task description \\ +CPU blocking is set everywhere to 500 ms as in conf file \\ +Mean is 2000 since this is a value I set in conf value according to laboratory +task description, same with standard deviation equal to 0 and CPU Time equal to +2000 ms \\ +CPU completed is equal to expected 2000 ms, this makes sense since we had run +time equal to 10000 ms and 5 procesess so each of them could take exactly the +amonunt of time we set them to take. + + +\section{Ten processes} +\subsection{Summary Results file} +\begin{lstlisting} +Scheduling Type: Batch (Nonpreemptive) +Scheduling Name: First-Come First-Served +Simulation Run Time: 10000 +Mean: 2000 +Standard Deviation: 0 +\end{lstlisting} +\begin{center} +\begin{tabular}{| c | c | c | c | c |} +\hline +Process\# & CPU Time & IO Blocking & CPU Completed & CPU Blocked \\ +\hline +0 &2000 (ms) &500 (ms)& 2000 (ms)& 3 times \\ +\hline +1 &2000 (ms) &500 (ms)& 2000 (ms)& 3 times \\ +\hline +2 &2000 (ms) &500 (ms)& 2000 (ms)& 3 times \\ +\hline +3 &2000 (ms) &500 (ms)& 2000 (ms)& 3 times \\ +\hline +4 &2000 (ms) &500 (ms)& 1000 (ms)& 2 times \\ +\hline +5 &2000 (ms) &500 (ms)& 1000 (ms)& 1 times \\ +\hline +6 &2000 (ms) &500 (ms)& 0 (ms)& 0 times \\ +\hline +7 &2000 (ms) &500 (ms)& 0 (ms)& 0 times \\ +\hline +8 &2000 (ms) &500 (ms)& 0 (ms)& 0 times \\ +\hline +9 &2000 (ms) &500 (ms)& 0 (ms)& 0 times \\ +\hline +\end{tabular} +\end{center} +\subsection{Summary Processes file} +\begin{lstlisting} +Process: 0 registered... (2000 500 0 0) +Process: 0 I/O blocked... (2000 500 500 500) +Process: 1 registered... (2000 500 0 0) +Process: 1 I/O blocked... (2000 500 500 500) +Process: 0 registered... (2000 500 500 500) +Process: 0 I/O blocked... (2000 500 1000 1000) +Process: 1 registered... (2000 500 500 500) +Process: 1 I/O blocked... (2000 500 1000 1000) +Process: 0 registered... (2000 500 1000 1000) +Process: 0 I/O blocked... (2000 500 1500 1500) +Process: 1 registered... (2000 500 1000 1000) +Process: 1 I/O blocked... (2000 500 1500 1500) +Process: 0 registered... (2000 500 1500 1500) +Process: 0 completed... (2000 500 2000 2000) +Process: 1 registered... (2000 500 1500 1500) +Process: 1 completed... (2000 500 2000 2000) +Process: 2 registered... (2000 500 0 0) +Process: 2 I/O blocked... (2000 500 500 500) +Process: 3 registered... (2000 500 0 0) +Process: 3 I/O blocked... (2000 500 500 500) +Process: 2 registered... (2000 500 500 500) +Process: 2 I/O blocked... (2000 500 1000 1000) +Process: 3 registered... (2000 500 500 500) +Process: 3 I/O blocked... (2000 500 1000 1000) +Process: 2 registered... (2000 500 1000 1000) +Process: 2 I/O blocked... (2000 500 1500 1500) +Process: 3 registered... (2000 500 1000 1000) +Process: 3 I/O blocked... (2000 500 1500 1500) +Process: 2 registered... (2000 500 1500 1500) +Process: 2 completed... (2000 500 2000 2000) +Process: 3 registered... (2000 500 1500 1500) +Process: 3 completed... (2000 500 2000 2000) +Process: 4 registered... (2000 500 0 0) +Process: 4 I/O blocked... (2000 500 500 500) +Process: 5 registered... (2000 500 0 0) +Process: 5 I/O blocked... (2000 500 500 500) +Process: 4 registered... (2000 500 500 500) +Process: 4 I/O blocked... (2000 500 1000 1000) +Process: 5 registered... (2000 500 500 500) +\end{lstlisting} +\subsection{Comments} +Scheduling type was Batch since I did not change it in SchedulingAlgorithm.java +file \\ +Scheduling Name was First-Come First-Served since this is what what we use as +described in README for this laboratory \\ +Simulation run time is 10000 ms since it run untill the limit I set in conf file +according to task description \\ +IO Blocking set to 500 ms as in config file \\ +Mean is 2000 since this is a value I set in conf value according to laboratory +task description, same with standard deviation equal to 0 and CPU Time equal to +2000 ms \\ +CPU completed this time is equal to 2000 up to 4th process and then is equal to +1000 ms for 5th and 6th and then it is equal to 0 ms, this means that the +simulation exceeded the runtime before it had a chance to run all processes + +\section{Getting process to be blocked 4 times} +Up untill now process got blocked for maximum of 3 times. This makes sense since +since they get blocked every 500 ms and the runtime for single process is 2000 +ms, so they get blocked first time at 500 ms, second time at 1000 ms and third +time at 1500 ms, at 2000 ms they finish execution so they do not get blocked. \\ +If we change runtime of process to 2001 ms we should get as the result them +getting blocked 4 times! \\ +I changed meandev in scheduling.conf to 2001 and observed results: +\subsection{Summary Results file} +\begin{lstlisting} +Scheduling Type: Batch (Nonpreemptive) +Scheduling Name: First-Come First-Served +Simulation Run Time: 6003 +Mean: 2001 +Standard Deviation: 0 +\end{lstlisting} +\begin{center} + \begin{tabular}{| c | c | c | c | c |} + \hline + Process \#& CPU Time& IO Blocking& CPU Completed& + CPU Blocked \\ \hline + 0 & 2001 (ms)& 500 (ms)& 2001 (ms)& + 4 times \\ \hline + 1 & 2001 (ms)& 500 (ms)& 2001 (ms)& + 4 times \\ \hline + 2 & 2001 (ms)& 500 (ms)& 2001 (ms)& + 4 times \\ \hline +\end{tabular} +\end{center} +Sure enough we got all of the processes blocked 4 times! +\section{Finishing comments} +We runned all the processes, get to know scheduling, get to know first come +first served algorithm. \\ +There are upsides and downsides of first come first served algorithm: +\\ +Upsides: +\begin{itemize} + \item It is easy to implement + \item It is easy to understand +\end{itemize} +Downsides: +\begin{itemize} + \item It is very inefficient (Last experiment with 10 processes barely + acknowledged existence of the 5th one) + \item High average wait time (Imagine 1000 processes and how long we + would have to wait) +\end{itemize} +Using pretty much any other algorithm we could get better results \cite{First +come first serve} +\begin{figure}[H] + \caption{\href{https://commons.wikimedia.org/wiki/File:Process_states.svg}{[Process + states and how they switch from wikimedia]}} + \includegraphics[width=\textwidth]{procestates} +\end{figure} + +\begin{thebibliography}{9} + \bibitem{lab3 Manual} Manual in the laboratory 3 files. + \bibitem{First come first serve} + \href{https://www.studytonight.com/operating-system/first-come-first-serve}{[https://www.studytonight.com/operating-system/first-come-first-serve]} + \bibitem{Other scheduling algorithms} + \href{https://www.tutorialspoint.com/operating_system/os_process_scheduling_algorithms.htm}{[Tutorials +point process scheduling algorithms]} +\end{thebibliography} +\end{document} diff --git a/EOPSY/lab3/report/resultsfive b/EOPSY/lab3/report/resultsfive new file mode 100644 index 00000000..14838101 --- /dev/null +++ b/EOPSY/lab3/report/resultsfive @@ -0,0 +1,11 @@ +Scheduling Type: Batch (Nonpreemptive) +Scheduling Name: First-Come First-Served +Simulation Run Time: 10000 +Mean: 2000 +Standard Deviation: 0 +Process # CPU Time IO Blocking CPU Completed CPU Blocked +0 2000 (ms) 500 (ms) 2000 (ms) 3 times +1 2000 (ms) 500 (ms) 2000 (ms) 3 times +2 2000 (ms) 500 (ms) 2000 (ms) 3 times +3 2000 (ms) 500 (ms) 2000 (ms) 3 times +4 2000 (ms) 500 (ms) 2000 (ms) 3 times diff --git a/EOPSY/lab3/report/resultsten b/EOPSY/lab3/report/resultsten new file mode 100644 index 00000000..6b0ad3e5 --- /dev/null +++ b/EOPSY/lab3/report/resultsten @@ -0,0 +1,16 @@ +Scheduling Type: Batch (Nonpreemptive) +Scheduling Name: First-Come First-Served +Simulation Run Time: 10000 +Mean: 2000 +Standard Deviation: 0 +Process # CPU Time IO Blocking CPU Completed CPU Blocked +0 2000 (ms) 500 (ms) 2000 (ms) 3 times +1 2000 (ms) 500 (ms) 2000 (ms) 3 times +2 2000 (ms) 500 (ms) 2000 (ms) 3 times +3 2000 (ms) 500 (ms) 2000 (ms) 3 times +4 2000 (ms) 500 (ms) 1000 (ms) 2 times +5 2000 (ms) 500 (ms) 1000 (ms) 1 times +6 2000 (ms) 500 (ms) 0 (ms) 0 times +7 2000 (ms) 500 (ms) 0 (ms) 0 times +8 2000 (ms) 500 (ms) 0 (ms) 0 times +9 2000 (ms) 500 (ms) 0 (ms) 0 times diff --git a/EOPSY/lab3/report/resultstwo b/EOPSY/lab3/report/resultstwo new file mode 100644 index 00000000..bc95877d --- /dev/null +++ b/EOPSY/lab3/report/resultstwo @@ -0,0 +1,8 @@ +Scheduling Type: Batch (Nonpreemptive) +Scheduling Name: First-Come First-Served +Simulation Run Time: 4000 +Mean: 2000 +Standard Deviation: 0 +Process # CPU Time IO Blocking CPU Completed CPU Blocked +0 2000 (ms) 500 (ms) 2000 (ms) 3 times +1 2000 (ms) 500 (ms) 2000 (ms) 3 times diff --git a/EOPSY/lab3/report/texput.fls b/EOPSY/lab3/report/texput.fls new file mode 100644 index 00000000..44daca94 --- /dev/null +++ b/EOPSY/lab3/report/texput.fls @@ -0,0 +1,6 @@ +PWD /home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/EOPSY/eopsy_krzysztof_rudnicki_lab3/report +INPUT /etc/texmf/web2c/texmf.cnf +INPUT /usr/share/texmf/web2c/texmf.cnf +INPUT /usr/share/texlive/texmf-dist/web2c/texmf.cnf +INPUT /var/lib/texmf/web2c/pdftex/pdflatex.fmt +OUTPUT texput.log diff --git a/EOPSY/lab3/report/texput.log b/EOPSY/lab3/report/texput.log new file mode 100644 index 00000000..f76c3d1a --- /dev/null +++ b/EOPSY/lab3/report/texput.log @@ -0,0 +1,22 @@ +This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian) (preloaded format=pdflatex 2022.4.9) 28 APR 2022 22:05 +entering extended mode + restricted \write18 enabled. + file:line:error style messages enabled. + %&-line parsing enabled. +**report.tex + +! Emergency stop. +<*> report.tex + +*** (job aborted, file error in nonstop mode) + + +Here is how much of TeX's memory you used: + 3 strings out of 481239 + 108 string characters out of 5920378 + 236564 words of memory out of 5000000 + 15373 multiletter control sequences out of 15000+600000 + 532338 words of font info for 24 fonts, out of 8000000 for 9000 + 1141 hyphenation exceptions out of 8191 + 0i,0n,0p,1b,6s stack positions out of 5000i,500n,10000p,200000b,80000s +! ==> Fatal error occurred, no output PDF file produced! diff --git a/EOPSY/lab3/task3/README b/EOPSY/lab3/task3/README new file mode 100644 index 00000000..818dd2da --- /dev/null +++ b/EOPSY/lab3/task3/README @@ -0,0 +1 @@ +Change directory to ./ftp and submit "make setup". diff --git a/EOPSY/lab3/task3/Summary-Processes b/EOPSY/lab3/task3/Summary-Processes new file mode 100644 index 00000000..b5b52876 --- /dev/null +++ b/EOPSY/lab3/task3/Summary-Processes @@ -0,0 +1,39 @@ +Process: 0 registered... (2000 500 0 0) +Process: 0 I/O blocked... (2000 500 500 500) +Process: 1 registered... (2000 500 0 0) +Process: 1 I/O blocked... (2000 500 500 500) +Process: 0 registered... (2000 500 500 500) +Process: 0 I/O blocked... (2000 500 1000 1000) +Process: 1 registered... (2000 500 500 500) +Process: 1 I/O blocked... (2000 500 1000 1000) +Process: 0 registered... (2000 500 1000 1000) +Process: 0 I/O blocked... (2000 500 1500 1500) +Process: 1 registered... (2000 500 1000 1000) +Process: 1 I/O blocked... (2000 500 1500 1500) +Process: 0 registered... (2000 500 1500 1500) +Process: 0 completed... (2000 500 2000 2000) +Process: 1 registered... (2000 500 1500 1500) +Process: 1 completed... (2000 500 2000 2000) +Process: 2 registered... (2000 500 0 0) +Process: 2 I/O blocked... (2000 500 500 500) +Process: 3 registered... (2000 500 0 0) +Process: 3 I/O blocked... (2000 500 500 500) +Process: 2 registered... (2000 500 500 500) +Process: 2 I/O blocked... (2000 500 1000 1000) +Process: 3 registered... (2000 500 500 500) +Process: 3 I/O blocked... (2000 500 1000 1000) +Process: 2 registered... (2000 500 1000 1000) +Process: 2 I/O blocked... (2000 500 1500 1500) +Process: 3 registered... (2000 500 1000 1000) +Process: 3 I/O blocked... (2000 500 1500 1500) +Process: 2 registered... (2000 500 1500 1500) +Process: 2 completed... (2000 500 2000 2000) +Process: 3 registered... (2000 500 1500 1500) +Process: 3 completed... (2000 500 2000 2000) +Process: 4 registered... (2000 500 0 0) +Process: 4 I/O blocked... (2000 500 500 500) +Process: 4 registered... (2000 500 500 500) +Process: 4 I/O blocked... (2000 500 1000 1000) +Process: 4 registered... (2000 500 1000 1000) +Process: 4 I/O blocked... (2000 500 1500 1500) +Process: 4 registered... (2000 500 1500 1500) diff --git a/EOPSY/lab3/task3/Summary-Results b/EOPSY/lab3/task3/Summary-Results new file mode 100644 index 00000000..14838101 --- /dev/null +++ b/EOPSY/lab3/task3/Summary-Results @@ -0,0 +1,11 @@ +Scheduling Type: Batch (Nonpreemptive) +Scheduling Name: First-Come First-Served +Simulation Run Time: 10000 +Mean: 2000 +Standard Deviation: 0 +Process # CPU Time IO Blocking CPU Completed CPU Blocked +0 2000 (ms) 500 (ms) 2000 (ms) 3 times +1 2000 (ms) 500 (ms) 2000 (ms) 3 times +2 2000 (ms) 500 (ms) 2000 (ms) 3 times +3 2000 (ms) 500 (ms) 2000 (ms) 3 times +4 2000 (ms) 500 (ms) 2000 (ms) 3 times diff --git a/EOPSY/lab3/task3/ftp/Makefile b/EOPSY/lab3/task3/ftp/Makefile new file mode 100644 index 00000000..c934ac31 --- /dev/null +++ b/EOPSY/lab3/task3/ftp/Makefile @@ -0,0 +1,24 @@ + +default: info + + +help: + less README.tjk + +compile: + javac -nowarn *.java + +run: + java Scheduling scheduling.conf + +setup: + ./setUp + +info: + @echo "" + @echo "Use 'make' with one argument:" + @echo "" + @echo " make help" + @echo " make compile" + @echo " make run" + @echo "" diff --git a/EOPSY/lab3/task3/ftp/README.tjk b/EOPSY/lab3/task3/ftp/README.tjk new file mode 100644 index 00000000..cd3397ad --- /dev/null +++ b/EOPSY/lab3/task3/ftp/README.tjk @@ -0,0 +1,199 @@ + + + WORKPLACE ORGANIZATION: +mkdir ../work +cd ../work +cp ../ftp/* . +gzip -d sched.tgz +tar -xvf sched.tar +rm sched.tar + + + READING: +less/vi README.tjk +netscape/lynx install_unix.html +netscape/lynx user_guide.html + + + COMPILE: +javac -nowarn *.java + + + RUN: +java Scheduling scheduling.conf + + + FILES: +input file name: scheduling.conf +output file name: Summary-Processes +log file name: Summary-Processes + + +--[ YOUR TASK ]------------------------------------------------------- + +Create a configuration file in which all processes run an average +of 2000 milliseconds with a standard deviation of zero, and which +are blocked for input or output every 500 milliseconds. Run the +simulation for 10000 milliseconds with 2 processes. Examine the +two output files. Try again for 5 processes. Try again for 10 +processes. Explain what's happening. + +---------------------------------------------------------------------- + +The Configuration File + + The configuration file (scheduling.conf) is used to specify various + parameters for the simulation, including: + * the number of processes, + * the mean runtime for a process, + * the standard deviation in runtime for a process, + * for each process, how long the process runs before it blocks for + input or output, and + * how long the simulation should run. + + Configuration File Options + + There are a number of options which can be specified in the + configuration file. These are summarized in the table below. + + Keyword Values Description + numprocess n The number of processes to create for the simulation. + meandev n The average length of time in milliseconds that a process + should execute before terminating. + standdev n The number of standard deviations from the average length + of time a process should execute before terminating. + process n The amount of time in milliseconds that the process should + execute before blocking for input or output. There should be a + separate process directive for each process specified by the + numprocess directive. + runtime n The maximum amount of time the simulation should run in + milliseconds. + +---------------------------------------------------------------------- + + Sample Configuration File + + The "scheduling.conf" configuration file looks like this: + +// # of Process +numprocess 3 + +// mean deivation +meandev 1100 + +// standard deviation +standdev 510 + +// process # I/O blocking +process 100 +process 500 +process 30 + +// duration of the simulation in milliseconds +runtime 5000 + + +---------------------------------------------------------------------- + +The Summary-Results File + + The Summary-Results file contains a summary report describing the + simulation and includes one line of summary information for each + process. The fields and columns in the report are described in the + following table. + + Field Description + Scheduling Type: The type of the scheduling algorithm used. The value + displayed is "hard coded" in the SchedulingAlgorithm.java file. + Scheduling Name: The name of the scheduling algorithm used. The value + displayed is "hard coded" in the SchedulingAlgorithm.java file. + Simulation Run Time: The number of milliseconds that the simulation + ran. This may be less than or equal to the total amount of time + specified by the "runtime" configuration parameter. + Mean: The average amount of runtime for the processes as specified by + the "meandev" configuration parameter. + Standard Deviation: The standard deviation from the average amount of + runtime for the processes as specified by the "standdev" configuration + parameter. + Process # The process number assigned to the process by the simulator. + The process number is between 0 and n-1, where n is the number + specified by the "numprocess" configuration parameter. + CPU Time The randomly generated total runtime for the process in + milliseconds. This is determined by the "meandev" and "standdev" + parameters in the configuration file. + IO Blocking The amount of time the process runs before it blocks for + input or output. This is specified for each process by a "process" + directive in the configuration file. + CPU Completed The amount of runtime in milliseconds completed for the + process. Note that this may be less than the CPU Time for the process + if the simulator runs out of time as specified by the "runtime" + configuration parameter. + CPU Blocked The number of times the process blocked for input or + output during the simulation. + + Sample Summary-Results File + + The output "Summary-Results" file looks something like this: + +Scheduling Type: Batch (Nonpreemptive) +Scheduling Name: First-Come First-Served +Simulation Run Time: 2750 +Mean: 1100 +Standard Deviation: 510 +Process # CPU Time IO Blocking CPU Completed CPU Blocked +0 1372 (ms) 100 (ms) 1372 (ms) 13 times +1 689 (ms) 500 (ms) 689 (ms) 1 times +2 689 (ms) 30 (ms) 689 (ms) 22 times + +---------------------------------------------------------------------- + +The Summary-Processes File + + The Summary-Processes file contains a log of the actions taken by the + scheduling algorithm as it considers each process in the scheduling + queue. + + Each line in the log file is of the following form: + +Process: process-number process-status... (cpu-time block-time accumulated-time + accumulated-time) + + The fields in the line are described in the table below. + + Field Description + process-number The process number assigned to the process by the + simulator. This is a number between 0 and n-1, where n is the value + specified for the "numprocess" configuration parameter. + process-status The status of the process at this point in time. If + "registered" then the process is under consideration by the scheduling + algorithm. If "I/O blocked", then the scheduling algorithm has noticed + that the process is blocked for input or output. If "completed", then + the scheduling algorithm has noticed that the process has met or + exceeded its allocated execution time. + cpu-time The total amount of run time allowed for this process. This + number is randomly generated for the process based on the "meandev" + and "standdev" values specified in the configuration file. + block-time The amount of time in milliseconds to execute before + blocking process. This number is specified for the process by the + "process" directive in the configuration file. + accumulated-time The total amount of time process has executed in + milliseconds. (This number appears twice in the log file; one should + be removed). + + Sample Summary-Processes File + + The output "Summary-Processes" file looks something like this: + +Process: 0 registered... (1372 100 0 0) +Process: 0 I/O blocked... (1372 100 100 100) +Process: 1 registered... (689 500 0 0) +Process: 1 I/O blocked... (689 500 500 500) +Process: 0 registered... (1372 100 100 100) +Process: 0 I/O blocked... (1372 100 200 200) +Process: 1 registered... (689 500 500 500) +Process: 1 completed... (689 500 689 689) +Process: 0 registered... (1372 100 200 200) +Process: 0 I/O blocked... (1372 100 300 300) +Process: 2 registered... (689 30 0 0) +Process: 2 I/O blocked... (689 30 30 30) + diff --git a/EOPSY/lab3/task3/ftp/sched.tgz b/EOPSY/lab3/task3/ftp/sched.tgz new file mode 100644 index 00000000..edcd632e Binary files /dev/null and b/EOPSY/lab3/task3/ftp/sched.tgz differ diff --git a/EOPSY/lab3/task3/ftp/setUp b/EOPSY/lab3/task3/ftp/setUp new file mode 100755 index 00000000..712df807 --- /dev/null +++ b/EOPSY/lab3/task3/ftp/setUp @@ -0,0 +1,9 @@ +echo "Creating ../work subdirectory" +mkdir ../work +cd ../work +cp ../ftp/* . +gzip -d sched.tgz +tar -xvf sched.tar +rm sched.tar +echo "" +echo "Now, go to the directory ../work and call 'make'" diff --git a/EOPSY/lab3/task3/processesfive b/EOPSY/lab3/task3/processesfive new file mode 100644 index 00000000..0271cb99 --- /dev/null +++ b/EOPSY/lab3/task3/processesfive @@ -0,0 +1,4067 @@ +Process: 0 registered... (2000 500 0 0) +Process: 0 I/O blocked... (2000 500 500 500) +Process: 1 registered... (2000 500 0 0) +Process: 1 I/O blocked... (2000 500 500 500) +Process: 0 registered... (2000 500 500 500) +Process: 0 I/O blocked... (2000 500 1000 1000) +Process: 1 registered... (2000 500 500 500) +Process: 1 I/O blocked... (2000 500 1000 1000) +Process: 0 registered... (2000 500 1000 1000) +Process: 0 I/O blocked... (2000 500 1500 1500) +Process: 1 registered... (2000 500 1000 1000) +Process: 1 I/O blocked... (2000 500 1500 1500) +Process: 0 registered... (2000 500 1500 1500) +Process: 0 completed... (2000 500 2000 2000) +Process: 1 registered... (2000 500 1500 1500) +Process: 1 completed... (2000 500 2000 2000) +Process: 2 registered... (2000 500 0 0) +Process: 2 I/O blocked... (2000 500 500 500) +Process: 3 registered... (2000 0 0 0) +Process: 3 I/O blocked... (2000 0 1 1) +Process: 2 registered... (2000 500 500 500) +Process: 2 I/O blocked... (2000 500 1000 1000) +Process: 3 registered... (2000 0 1 1) +Process: 3 I/O blocked... (2000 0 2 2) +Process: 2 registered... (2000 500 1000 1000) +Process: 2 I/O blocked... (2000 500 1500 1500) +Process: 3 registered... (2000 0 2 2) +Process: 3 I/O blocked... (2000 0 3 3) +Process: 2 registered... (2000 500 1500 1500) +Process: 2 completed... (2000 500 2000 2000) +Process: 3 registered... (2000 0 3 3) +Process: 3 I/O blocked... (2000 0 3 3) +Process: 4 registered... (2000 100 0 0) +Process: 4 I/O blocked... (2000 100 100 100) +Process: 3 registered... (2000 0 3 3) +Process: 3 I/O blocked... (2000 0 4 4) +Process: 4 registered... (2000 100 100 100) +Process: 4 I/O blocked... (2000 100 200 200) +Process: 3 registered... (2000 0 4 4) +Process: 3 I/O blocked... (2000 0 5 5) +Process: 4 registered... (2000 100 200 200) +Process: 4 I/O blocked... (2000 100 300 300) +Process: 3 registered... (2000 0 5 5) +Process: 3 I/O blocked... (2000 0 6 6) +Process: 4 registered... (2000 100 300 300) +Process: 4 I/O blocked... (2000 100 400 400) +Process: 3 registered... (2000 0 6 6) +Process: 3 I/O blocked... (2000 0 7 7) +Process: 4 registered... (2000 100 400 400) +Process: 4 I/O blocked... (2000 100 500 500) +Process: 3 registered... (2000 0 7 7) +Process: 3 I/O blocked... (2000 0 8 8) +Process: 4 registered... (2000 100 500 500) +Process: 4 I/O blocked... (2000 100 600 600) +Process: 3 registered... (2000 0 8 8) +Process: 3 I/O blocked... (2000 0 9 9) +Process: 4 registered... (2000 100 600 600) +Process: 4 I/O blocked... (2000 100 700 700) +Process: 3 registered... (2000 0 9 9) +Process: 3 I/O blocked... (2000 0 10 10) +Process: 4 registered... (2000 100 700 700) +Process: 4 I/O blocked... (2000 100 800 800) +Process: 3 registered... (2000 0 10 10) +Process: 3 I/O blocked... (2000 0 11 11) +Process: 4 registered... (2000 100 800 800) +Process: 4 I/O blocked... (2000 100 900 900) +Process: 3 registered... (2000 0 11 11) +Process: 3 I/O blocked... (2000 0 12 12) +Process: 4 registered... (2000 100 900 900) +Process: 4 I/O blocked... (2000 100 1000 1000) +Process: 3 registered... (2000 0 12 12) +Process: 3 I/O blocked... (2000 0 13 13) +Process: 4 registered... (2000 100 1000 1000) +Process: 4 I/O blocked... (2000 100 1100 1100) +Process: 3 registered... (2000 0 13 13) +Process: 3 I/O blocked... (2000 0 14 14) +Process: 4 registered... (2000 100 1100 1100) +Process: 4 I/O blocked... (2000 100 1200 1200) +Process: 3 registered... (2000 0 14 14) +Process: 3 I/O blocked... (2000 0 15 15) +Process: 4 registered... (2000 100 1200 1200) +Process: 4 I/O blocked... (2000 100 1300 1300) +Process: 3 registered... (2000 0 15 15) +Process: 3 I/O blocked... (2000 0 16 16) +Process: 4 registered... (2000 100 1300 1300) +Process: 4 I/O blocked... (2000 100 1400 1400) +Process: 3 registered... (2000 0 16 16) +Process: 3 I/O blocked... (2000 0 17 17) +Process: 4 registered... (2000 100 1400 1400) +Process: 4 I/O blocked... (2000 100 1500 1500) +Process: 3 registered... (2000 0 17 17) +Process: 3 I/O blocked... (2000 0 18 18) +Process: 4 registered... (2000 100 1500 1500) +Process: 4 I/O blocked... (2000 100 1600 1600) +Process: 3 registered... (2000 0 18 18) +Process: 3 I/O blocked... (2000 0 19 19) +Process: 4 registered... (2000 100 1600 1600) +Process: 4 I/O blocked... (2000 100 1700 1700) +Process: 3 registered... (2000 0 19 19) +Process: 3 I/O blocked... (2000 0 20 20) +Process: 4 registered... (2000 100 1700 1700) +Process: 4 I/O blocked... (2000 100 1800 1800) +Process: 3 registered... (2000 0 20 20) +Process: 3 I/O blocked... (2000 0 21 21) +Process: 4 registered... (2000 100 1800 1800) +Process: 4 I/O blocked... (2000 100 1900 1900) +Process: 3 registered... (2000 0 21 21) +Process: 3 I/O blocked... (2000 0 22 22) +Process: 4 registered... (2000 100 1900 1900) +Process: 4 completed... (2000 100 2000 2000) +Process: 3 registered... (2000 0 22 22) +Process: 3 I/O blocked... (2000 0 22 22) +Process: 3 registered... (2000 0 22 22) +Process: 3 I/O blocked... (2000 0 23 23) +Process: 3 registered... (2000 0 23 23) +Process: 3 I/O blocked... (2000 0 24 24) +Process: 3 registered... (2000 0 24 24) +Process: 3 I/O blocked... (2000 0 25 25) +Process: 3 registered... (2000 0 25 25) +Process: 3 I/O blocked... (2000 0 26 26) +Process: 3 registered... (2000 0 26 26) +Process: 3 I/O blocked... (2000 0 27 27) +Process: 3 registered... (2000 0 27 27) +Process: 3 I/O blocked... (2000 0 28 28) +Process: 3 registered... (2000 0 28 28) +Process: 3 I/O blocked... (2000 0 29 29) +Process: 3 registered... (2000 0 29 29) +Process: 3 I/O blocked... (2000 0 30 30) +Process: 3 registered... (2000 0 30 30) +Process: 3 I/O blocked... (2000 0 31 31) +Process: 3 registered... (2000 0 31 31) +Process: 3 I/O blocked... (2000 0 32 32) +Process: 3 registered... (2000 0 32 32) +Process: 3 I/O blocked... (2000 0 33 33) +Process: 3 registered... (2000 0 33 33) +Process: 3 I/O blocked... (2000 0 34 34) +Process: 3 registered... (2000 0 34 34) +Process: 3 I/O blocked... (2000 0 35 35) +Process: 3 registered... (2000 0 35 35) +Process: 3 I/O blocked... (2000 0 36 36) +Process: 3 registered... (2000 0 36 36) +Process: 3 I/O blocked... (2000 0 37 37) +Process: 3 registered... (2000 0 37 37) +Process: 3 I/O blocked... (2000 0 38 38) +Process: 3 registered... (2000 0 38 38) +Process: 3 I/O blocked... (2000 0 39 39) +Process: 3 registered... (2000 0 39 39) +Process: 3 I/O blocked... (2000 0 40 40) +Process: 3 registered... (2000 0 40 40) +Process: 3 I/O blocked... (2000 0 41 41) +Process: 3 registered... (2000 0 41 41) +Process: 3 I/O blocked... (2000 0 42 42) +Process: 3 registered... (2000 0 42 42) +Process: 3 I/O blocked... (2000 0 43 43) +Process: 3 registered... (2000 0 43 43) +Process: 3 I/O blocked... (2000 0 44 44) +Process: 3 registered... (2000 0 44 44) +Process: 3 I/O blocked... (2000 0 45 45) +Process: 3 registered... (2000 0 45 45) +Process: 3 I/O blocked... (2000 0 46 46) +Process: 3 registered... (2000 0 46 46) +Process: 3 I/O blocked... (2000 0 47 47) +Process: 3 registered... (2000 0 47 47) +Process: 3 I/O blocked... (2000 0 48 48) +Process: 3 registered... (2000 0 48 48) +Process: 3 I/O blocked... (2000 0 49 49) +Process: 3 registered... (2000 0 49 49) +Process: 3 I/O blocked... (2000 0 50 50) +Process: 3 registered... (2000 0 50 50) +Process: 3 I/O blocked... (2000 0 51 51) +Process: 3 registered... (2000 0 51 51) +Process: 3 I/O blocked... (2000 0 52 52) +Process: 3 registered... (2000 0 52 52) +Process: 3 I/O blocked... (2000 0 53 53) +Process: 3 registered... (2000 0 53 53) +Process: 3 I/O blocked... (2000 0 54 54) +Process: 3 registered... (2000 0 54 54) +Process: 3 I/O blocked... (2000 0 55 55) +Process: 3 registered... (2000 0 55 55) +Process: 3 I/O blocked... (2000 0 56 56) +Process: 3 registered... (2000 0 56 56) +Process: 3 I/O blocked... (2000 0 57 57) +Process: 3 registered... (2000 0 57 57) +Process: 3 I/O blocked... (2000 0 58 58) +Process: 3 registered... (2000 0 58 58) +Process: 3 I/O blocked... (2000 0 59 59) +Process: 3 registered... (2000 0 59 59) +Process: 3 I/O blocked... (2000 0 60 60) +Process: 3 registered... (2000 0 60 60) +Process: 3 I/O blocked... (2000 0 61 61) +Process: 3 registered... (2000 0 61 61) +Process: 3 I/O blocked... (2000 0 62 62) +Process: 3 registered... (2000 0 62 62) +Process: 3 I/O blocked... (2000 0 63 63) +Process: 3 registered... (2000 0 63 63) +Process: 3 I/O blocked... (2000 0 64 64) +Process: 3 registered... (2000 0 64 64) +Process: 3 I/O blocked... (2000 0 65 65) +Process: 3 registered... (2000 0 65 65) +Process: 3 I/O blocked... (2000 0 66 66) +Process: 3 registered... (2000 0 66 66) +Process: 3 I/O blocked... (2000 0 67 67) +Process: 3 registered... (2000 0 67 67) +Process: 3 I/O blocked... (2000 0 68 68) +Process: 3 registered... (2000 0 68 68) +Process: 3 I/O blocked... (2000 0 69 69) +Process: 3 registered... (2000 0 69 69) +Process: 3 I/O blocked... (2000 0 70 70) +Process: 3 registered... (2000 0 70 70) +Process: 3 I/O blocked... (2000 0 71 71) +Process: 3 registered... (2000 0 71 71) +Process: 3 I/O blocked... (2000 0 72 72) +Process: 3 registered... (2000 0 72 72) +Process: 3 I/O blocked... (2000 0 73 73) +Process: 3 registered... (2000 0 73 73) +Process: 3 I/O blocked... (2000 0 74 74) +Process: 3 registered... (2000 0 74 74) +Process: 3 I/O blocked... (2000 0 75 75) +Process: 3 registered... (2000 0 75 75) +Process: 3 I/O blocked... (2000 0 76 76) +Process: 3 registered... (2000 0 76 76) +Process: 3 I/O blocked... (2000 0 77 77) +Process: 3 registered... (2000 0 77 77) +Process: 3 I/O blocked... (2000 0 78 78) +Process: 3 registered... (2000 0 78 78) +Process: 3 I/O blocked... (2000 0 79 79) +Process: 3 registered... (2000 0 79 79) +Process: 3 I/O blocked... (2000 0 80 80) +Process: 3 registered... (2000 0 80 80) +Process: 3 I/O blocked... (2000 0 81 81) +Process: 3 registered... (2000 0 81 81) +Process: 3 I/O blocked... (2000 0 82 82) +Process: 3 registered... (2000 0 82 82) +Process: 3 I/O blocked... (2000 0 83 83) +Process: 3 registered... (2000 0 83 83) +Process: 3 I/O blocked... (2000 0 84 84) +Process: 3 registered... (2000 0 84 84) +Process: 3 I/O blocked... (2000 0 85 85) +Process: 3 registered... (2000 0 85 85) +Process: 3 I/O blocked... (2000 0 86 86) +Process: 3 registered... (2000 0 86 86) +Process: 3 I/O blocked... (2000 0 87 87) +Process: 3 registered... (2000 0 87 87) +Process: 3 I/O blocked... (2000 0 88 88) +Process: 3 registered... (2000 0 88 88) +Process: 3 I/O blocked... (2000 0 89 89) +Process: 3 registered... (2000 0 89 89) +Process: 3 I/O blocked... (2000 0 90 90) +Process: 3 registered... (2000 0 90 90) +Process: 3 I/O blocked... (2000 0 91 91) +Process: 3 registered... (2000 0 91 91) +Process: 3 I/O blocked... (2000 0 92 92) +Process: 3 registered... (2000 0 92 92) +Process: 3 I/O blocked... (2000 0 93 93) +Process: 3 registered... (2000 0 93 93) +Process: 3 I/O blocked... (2000 0 94 94) +Process: 3 registered... (2000 0 94 94) +Process: 3 I/O blocked... (2000 0 95 95) +Process: 3 registered... (2000 0 95 95) +Process: 3 I/O blocked... (2000 0 96 96) +Process: 3 registered... (2000 0 96 96) +Process: 3 I/O blocked... (2000 0 97 97) +Process: 3 registered... (2000 0 97 97) +Process: 3 I/O blocked... (2000 0 98 98) +Process: 3 registered... (2000 0 98 98) +Process: 3 I/O blocked... (2000 0 99 99) +Process: 3 registered... (2000 0 99 99) +Process: 3 I/O blocked... (2000 0 100 100) +Process: 3 registered... (2000 0 100 100) +Process: 3 I/O blocked... (2000 0 101 101) +Process: 3 registered... (2000 0 101 101) +Process: 3 I/O blocked... (2000 0 102 102) +Process: 3 registered... (2000 0 102 102) +Process: 3 I/O blocked... (2000 0 103 103) +Process: 3 registered... (2000 0 103 103) +Process: 3 I/O blocked... (2000 0 104 104) +Process: 3 registered... (2000 0 104 104) +Process: 3 I/O blocked... (2000 0 105 105) +Process: 3 registered... (2000 0 105 105) +Process: 3 I/O blocked... (2000 0 106 106) +Process: 3 registered... (2000 0 106 106) +Process: 3 I/O blocked... (2000 0 107 107) +Process: 3 registered... (2000 0 107 107) +Process: 3 I/O blocked... (2000 0 108 108) +Process: 3 registered... (2000 0 108 108) +Process: 3 I/O blocked... (2000 0 109 109) +Process: 3 registered... (2000 0 109 109) +Process: 3 I/O blocked... (2000 0 110 110) +Process: 3 registered... (2000 0 110 110) +Process: 3 I/O blocked... (2000 0 111 111) +Process: 3 registered... (2000 0 111 111) +Process: 3 I/O blocked... (2000 0 112 112) +Process: 3 registered... (2000 0 112 112) +Process: 3 I/O blocked... (2000 0 113 113) +Process: 3 registered... (2000 0 113 113) +Process: 3 I/O blocked... (2000 0 114 114) +Process: 3 registered... (2000 0 114 114) +Process: 3 I/O blocked... (2000 0 115 115) +Process: 3 registered... (2000 0 115 115) +Process: 3 I/O blocked... (2000 0 116 116) +Process: 3 registered... (2000 0 116 116) +Process: 3 I/O blocked... (2000 0 117 117) +Process: 3 registered... (2000 0 117 117) +Process: 3 I/O blocked... (2000 0 118 118) +Process: 3 registered... (2000 0 118 118) +Process: 3 I/O blocked... (2000 0 119 119) +Process: 3 registered... (2000 0 119 119) +Process: 3 I/O blocked... (2000 0 120 120) +Process: 3 registered... (2000 0 120 120) +Process: 3 I/O blocked... (2000 0 121 121) +Process: 3 registered... (2000 0 121 121) +Process: 3 I/O blocked... (2000 0 122 122) +Process: 3 registered... (2000 0 122 122) +Process: 3 I/O blocked... (2000 0 123 123) +Process: 3 registered... (2000 0 123 123) +Process: 3 I/O blocked... (2000 0 124 124) +Process: 3 registered... (2000 0 124 124) +Process: 3 I/O blocked... (2000 0 125 125) +Process: 3 registered... (2000 0 125 125) +Process: 3 I/O blocked... (2000 0 126 126) +Process: 3 registered... (2000 0 126 126) +Process: 3 I/O blocked... (2000 0 127 127) +Process: 3 registered... (2000 0 127 127) +Process: 3 I/O blocked... (2000 0 128 128) +Process: 3 registered... (2000 0 128 128) +Process: 3 I/O blocked... (2000 0 129 129) +Process: 3 registered... (2000 0 129 129) +Process: 3 I/O blocked... (2000 0 130 130) +Process: 3 registered... (2000 0 130 130) +Process: 3 I/O blocked... (2000 0 131 131) +Process: 3 registered... (2000 0 131 131) +Process: 3 I/O blocked... (2000 0 132 132) +Process: 3 registered... (2000 0 132 132) +Process: 3 I/O blocked... (2000 0 133 133) +Process: 3 registered... (2000 0 133 133) +Process: 3 I/O blocked... (2000 0 134 134) +Process: 3 registered... (2000 0 134 134) +Process: 3 I/O blocked... (2000 0 135 135) +Process: 3 registered... (2000 0 135 135) +Process: 3 I/O blocked... (2000 0 136 136) +Process: 3 registered... (2000 0 136 136) +Process: 3 I/O blocked... (2000 0 137 137) +Process: 3 registered... (2000 0 137 137) +Process: 3 I/O blocked... (2000 0 138 138) +Process: 3 registered... (2000 0 138 138) +Process: 3 I/O blocked... (2000 0 139 139) +Process: 3 registered... (2000 0 139 139) +Process: 3 I/O blocked... (2000 0 140 140) +Process: 3 registered... (2000 0 140 140) +Process: 3 I/O blocked... (2000 0 141 141) +Process: 3 registered... (2000 0 141 141) +Process: 3 I/O blocked... (2000 0 142 142) +Process: 3 registered... (2000 0 142 142) +Process: 3 I/O blocked... (2000 0 143 143) +Process: 3 registered... (2000 0 143 143) +Process: 3 I/O blocked... (2000 0 144 144) +Process: 3 registered... (2000 0 144 144) +Process: 3 I/O blocked... (2000 0 145 145) +Process: 3 registered... (2000 0 145 145) +Process: 3 I/O blocked... (2000 0 146 146) +Process: 3 registered... (2000 0 146 146) +Process: 3 I/O blocked... (2000 0 147 147) +Process: 3 registered... (2000 0 147 147) +Process: 3 I/O blocked... (2000 0 148 148) +Process: 3 registered... (2000 0 148 148) +Process: 3 I/O blocked... (2000 0 149 149) +Process: 3 registered... (2000 0 149 149) +Process: 3 I/O blocked... (2000 0 150 150) +Process: 3 registered... (2000 0 150 150) +Process: 3 I/O blocked... (2000 0 151 151) +Process: 3 registered... (2000 0 151 151) +Process: 3 I/O blocked... (2000 0 152 152) +Process: 3 registered... (2000 0 152 152) +Process: 3 I/O blocked... (2000 0 153 153) +Process: 3 registered... (2000 0 153 153) +Process: 3 I/O blocked... (2000 0 154 154) +Process: 3 registered... (2000 0 154 154) +Process: 3 I/O blocked... (2000 0 155 155) +Process: 3 registered... (2000 0 155 155) +Process: 3 I/O blocked... (2000 0 156 156) +Process: 3 registered... (2000 0 156 156) +Process: 3 I/O blocked... (2000 0 157 157) +Process: 3 registered... (2000 0 157 157) +Process: 3 I/O blocked... (2000 0 158 158) +Process: 3 registered... (2000 0 158 158) +Process: 3 I/O blocked... (2000 0 159 159) +Process: 3 registered... (2000 0 159 159) +Process: 3 I/O blocked... (2000 0 160 160) +Process: 3 registered... (2000 0 160 160) +Process: 3 I/O blocked... (2000 0 161 161) +Process: 3 registered... (2000 0 161 161) +Process: 3 I/O blocked... (2000 0 162 162) +Process: 3 registered... (2000 0 162 162) +Process: 3 I/O blocked... (2000 0 163 163) +Process: 3 registered... (2000 0 163 163) +Process: 3 I/O blocked... (2000 0 164 164) +Process: 3 registered... (2000 0 164 164) +Process: 3 I/O blocked... (2000 0 165 165) +Process: 3 registered... (2000 0 165 165) +Process: 3 I/O blocked... (2000 0 166 166) +Process: 3 registered... (2000 0 166 166) +Process: 3 I/O blocked... (2000 0 167 167) +Process: 3 registered... (2000 0 167 167) +Process: 3 I/O blocked... (2000 0 168 168) +Process: 3 registered... (2000 0 168 168) +Process: 3 I/O blocked... (2000 0 169 169) +Process: 3 registered... (2000 0 169 169) +Process: 3 I/O blocked... (2000 0 170 170) +Process: 3 registered... (2000 0 170 170) +Process: 3 I/O blocked... (2000 0 171 171) +Process: 3 registered... (2000 0 171 171) +Process: 3 I/O blocked... (2000 0 172 172) +Process: 3 registered... (2000 0 172 172) +Process: 3 I/O blocked... (2000 0 173 173) +Process: 3 registered... (2000 0 173 173) +Process: 3 I/O blocked... (2000 0 174 174) +Process: 3 registered... (2000 0 174 174) +Process: 3 I/O blocked... (2000 0 175 175) +Process: 3 registered... (2000 0 175 175) +Process: 3 I/O blocked... (2000 0 176 176) +Process: 3 registered... (2000 0 176 176) +Process: 3 I/O blocked... (2000 0 177 177) +Process: 3 registered... (2000 0 177 177) +Process: 3 I/O blocked... (2000 0 178 178) +Process: 3 registered... (2000 0 178 178) +Process: 3 I/O blocked... (2000 0 179 179) +Process: 3 registered... (2000 0 179 179) +Process: 3 I/O blocked... (2000 0 180 180) +Process: 3 registered... (2000 0 180 180) +Process: 3 I/O blocked... (2000 0 181 181) +Process: 3 registered... (2000 0 181 181) +Process: 3 I/O blocked... (2000 0 182 182) +Process: 3 registered... (2000 0 182 182) +Process: 3 I/O blocked... (2000 0 183 183) +Process: 3 registered... (2000 0 183 183) +Process: 3 I/O blocked... (2000 0 184 184) +Process: 3 registered... (2000 0 184 184) +Process: 3 I/O blocked... (2000 0 185 185) +Process: 3 registered... (2000 0 185 185) +Process: 3 I/O blocked... (2000 0 186 186) +Process: 3 registered... (2000 0 186 186) +Process: 3 I/O blocked... (2000 0 187 187) +Process: 3 registered... (2000 0 187 187) +Process: 3 I/O blocked... (2000 0 188 188) +Process: 3 registered... (2000 0 188 188) +Process: 3 I/O blocked... (2000 0 189 189) +Process: 3 registered... (2000 0 189 189) +Process: 3 I/O blocked... (2000 0 190 190) +Process: 3 registered... (2000 0 190 190) +Process: 3 I/O blocked... (2000 0 191 191) +Process: 3 registered... (2000 0 191 191) +Process: 3 I/O blocked... (2000 0 192 192) +Process: 3 registered... (2000 0 192 192) +Process: 3 I/O blocked... (2000 0 193 193) +Process: 3 registered... (2000 0 193 193) +Process: 3 I/O blocked... (2000 0 194 194) +Process: 3 registered... (2000 0 194 194) +Process: 3 I/O blocked... (2000 0 195 195) +Process: 3 registered... (2000 0 195 195) +Process: 3 I/O blocked... (2000 0 196 196) +Process: 3 registered... (2000 0 196 196) +Process: 3 I/O blocked... (2000 0 197 197) +Process: 3 registered... (2000 0 197 197) +Process: 3 I/O blocked... (2000 0 198 198) +Process: 3 registered... (2000 0 198 198) +Process: 3 I/O blocked... (2000 0 199 199) +Process: 3 registered... (2000 0 199 199) +Process: 3 I/O blocked... (2000 0 200 200) +Process: 3 registered... (2000 0 200 200) +Process: 3 I/O blocked... (2000 0 201 201) +Process: 3 registered... (2000 0 201 201) +Process: 3 I/O blocked... (2000 0 202 202) +Process: 3 registered... (2000 0 202 202) +Process: 3 I/O blocked... (2000 0 203 203) +Process: 3 registered... (2000 0 203 203) +Process: 3 I/O blocked... (2000 0 204 204) +Process: 3 registered... (2000 0 204 204) +Process: 3 I/O blocked... (2000 0 205 205) +Process: 3 registered... (2000 0 205 205) +Process: 3 I/O blocked... (2000 0 206 206) +Process: 3 registered... (2000 0 206 206) +Process: 3 I/O blocked... (2000 0 207 207) +Process: 3 registered... (2000 0 207 207) +Process: 3 I/O blocked... (2000 0 208 208) +Process: 3 registered... (2000 0 208 208) +Process: 3 I/O blocked... (2000 0 209 209) +Process: 3 registered... (2000 0 209 209) +Process: 3 I/O blocked... (2000 0 210 210) +Process: 3 registered... (2000 0 210 210) +Process: 3 I/O blocked... (2000 0 211 211) +Process: 3 registered... (2000 0 211 211) +Process: 3 I/O blocked... (2000 0 212 212) +Process: 3 registered... (2000 0 212 212) +Process: 3 I/O blocked... (2000 0 213 213) +Process: 3 registered... (2000 0 213 213) +Process: 3 I/O blocked... (2000 0 214 214) +Process: 3 registered... (2000 0 214 214) +Process: 3 I/O blocked... (2000 0 215 215) +Process: 3 registered... (2000 0 215 215) +Process: 3 I/O blocked... (2000 0 216 216) +Process: 3 registered... (2000 0 216 216) +Process: 3 I/O blocked... (2000 0 217 217) +Process: 3 registered... (2000 0 217 217) +Process: 3 I/O blocked... (2000 0 218 218) +Process: 3 registered... (2000 0 218 218) +Process: 3 I/O blocked... (2000 0 219 219) +Process: 3 registered... (2000 0 219 219) +Process: 3 I/O blocked... (2000 0 220 220) +Process: 3 registered... (2000 0 220 220) +Process: 3 I/O blocked... (2000 0 221 221) +Process: 3 registered... (2000 0 221 221) +Process: 3 I/O blocked... (2000 0 222 222) +Process: 3 registered... (2000 0 222 222) +Process: 3 I/O blocked... (2000 0 223 223) +Process: 3 registered... (2000 0 223 223) +Process: 3 I/O blocked... (2000 0 224 224) +Process: 3 registered... (2000 0 224 224) +Process: 3 I/O blocked... (2000 0 225 225) +Process: 3 registered... (2000 0 225 225) +Process: 3 I/O blocked... (2000 0 226 226) +Process: 3 registered... (2000 0 226 226) +Process: 3 I/O blocked... (2000 0 227 227) +Process: 3 registered... (2000 0 227 227) +Process: 3 I/O blocked... (2000 0 228 228) +Process: 3 registered... (2000 0 228 228) +Process: 3 I/O blocked... (2000 0 229 229) +Process: 3 registered... (2000 0 229 229) +Process: 3 I/O blocked... (2000 0 230 230) +Process: 3 registered... (2000 0 230 230) +Process: 3 I/O blocked... (2000 0 231 231) +Process: 3 registered... (2000 0 231 231) +Process: 3 I/O blocked... (2000 0 232 232) +Process: 3 registered... (2000 0 232 232) +Process: 3 I/O blocked... (2000 0 233 233) +Process: 3 registered... (2000 0 233 233) +Process: 3 I/O blocked... (2000 0 234 234) +Process: 3 registered... (2000 0 234 234) +Process: 3 I/O blocked... (2000 0 235 235) +Process: 3 registered... (2000 0 235 235) +Process: 3 I/O blocked... (2000 0 236 236) +Process: 3 registered... (2000 0 236 236) +Process: 3 I/O blocked... (2000 0 237 237) +Process: 3 registered... (2000 0 237 237) +Process: 3 I/O blocked... (2000 0 238 238) +Process: 3 registered... (2000 0 238 238) +Process: 3 I/O blocked... (2000 0 239 239) +Process: 3 registered... (2000 0 239 239) +Process: 3 I/O blocked... (2000 0 240 240) +Process: 3 registered... (2000 0 240 240) +Process: 3 I/O blocked... (2000 0 241 241) +Process: 3 registered... (2000 0 241 241) +Process: 3 I/O blocked... (2000 0 242 242) +Process: 3 registered... (2000 0 242 242) +Process: 3 I/O blocked... (2000 0 243 243) +Process: 3 registered... (2000 0 243 243) +Process: 3 I/O blocked... (2000 0 244 244) +Process: 3 registered... (2000 0 244 244) +Process: 3 I/O blocked... (2000 0 245 245) +Process: 3 registered... (2000 0 245 245) +Process: 3 I/O blocked... (2000 0 246 246) +Process: 3 registered... (2000 0 246 246) +Process: 3 I/O blocked... (2000 0 247 247) +Process: 3 registered... (2000 0 247 247) +Process: 3 I/O blocked... (2000 0 248 248) +Process: 3 registered... (2000 0 248 248) +Process: 3 I/O blocked... (2000 0 249 249) +Process: 3 registered... (2000 0 249 249) +Process: 3 I/O blocked... (2000 0 250 250) +Process: 3 registered... (2000 0 250 250) +Process: 3 I/O blocked... (2000 0 251 251) +Process: 3 registered... (2000 0 251 251) +Process: 3 I/O blocked... (2000 0 252 252) +Process: 3 registered... (2000 0 252 252) +Process: 3 I/O blocked... (2000 0 253 253) +Process: 3 registered... (2000 0 253 253) +Process: 3 I/O blocked... (2000 0 254 254) +Process: 3 registered... (2000 0 254 254) +Process: 3 I/O blocked... (2000 0 255 255) +Process: 3 registered... (2000 0 255 255) +Process: 3 I/O blocked... (2000 0 256 256) +Process: 3 registered... (2000 0 256 256) +Process: 3 I/O blocked... (2000 0 257 257) +Process: 3 registered... (2000 0 257 257) +Process: 3 I/O blocked... (2000 0 258 258) +Process: 3 registered... (2000 0 258 258) +Process: 3 I/O blocked... (2000 0 259 259) +Process: 3 registered... (2000 0 259 259) +Process: 3 I/O blocked... (2000 0 260 260) +Process: 3 registered... (2000 0 260 260) +Process: 3 I/O blocked... (2000 0 261 261) +Process: 3 registered... (2000 0 261 261) +Process: 3 I/O blocked... (2000 0 262 262) +Process: 3 registered... (2000 0 262 262) +Process: 3 I/O blocked... (2000 0 263 263) +Process: 3 registered... (2000 0 263 263) +Process: 3 I/O blocked... (2000 0 264 264) +Process: 3 registered... (2000 0 264 264) +Process: 3 I/O blocked... (2000 0 265 265) +Process: 3 registered... (2000 0 265 265) +Process: 3 I/O blocked... (2000 0 266 266) +Process: 3 registered... (2000 0 266 266) +Process: 3 I/O blocked... (2000 0 267 267) +Process: 3 registered... (2000 0 267 267) +Process: 3 I/O blocked... (2000 0 268 268) +Process: 3 registered... (2000 0 268 268) +Process: 3 I/O blocked... (2000 0 269 269) +Process: 3 registered... (2000 0 269 269) +Process: 3 I/O blocked... (2000 0 270 270) +Process: 3 registered... (2000 0 270 270) +Process: 3 I/O blocked... (2000 0 271 271) +Process: 3 registered... (2000 0 271 271) +Process: 3 I/O blocked... (2000 0 272 272) +Process: 3 registered... (2000 0 272 272) +Process: 3 I/O blocked... (2000 0 273 273) +Process: 3 registered... (2000 0 273 273) +Process: 3 I/O blocked... (2000 0 274 274) +Process: 3 registered... (2000 0 274 274) +Process: 3 I/O blocked... (2000 0 275 275) +Process: 3 registered... (2000 0 275 275) +Process: 3 I/O blocked... (2000 0 276 276) +Process: 3 registered... (2000 0 276 276) +Process: 3 I/O blocked... (2000 0 277 277) +Process: 3 registered... (2000 0 277 277) +Process: 3 I/O blocked... (2000 0 278 278) +Process: 3 registered... (2000 0 278 278) +Process: 3 I/O blocked... (2000 0 279 279) +Process: 3 registered... (2000 0 279 279) +Process: 3 I/O blocked... (2000 0 280 280) +Process: 3 registered... (2000 0 280 280) +Process: 3 I/O blocked... (2000 0 281 281) +Process: 3 registered... (2000 0 281 281) +Process: 3 I/O blocked... (2000 0 282 282) +Process: 3 registered... (2000 0 282 282) +Process: 3 I/O blocked... (2000 0 283 283) +Process: 3 registered... (2000 0 283 283) +Process: 3 I/O blocked... (2000 0 284 284) +Process: 3 registered... (2000 0 284 284) +Process: 3 I/O blocked... (2000 0 285 285) +Process: 3 registered... (2000 0 285 285) +Process: 3 I/O blocked... (2000 0 286 286) +Process: 3 registered... (2000 0 286 286) +Process: 3 I/O blocked... (2000 0 287 287) +Process: 3 registered... (2000 0 287 287) +Process: 3 I/O blocked... (2000 0 288 288) +Process: 3 registered... (2000 0 288 288) +Process: 3 I/O blocked... (2000 0 289 289) +Process: 3 registered... (2000 0 289 289) +Process: 3 I/O blocked... (2000 0 290 290) +Process: 3 registered... (2000 0 290 290) +Process: 3 I/O blocked... (2000 0 291 291) +Process: 3 registered... (2000 0 291 291) +Process: 3 I/O blocked... (2000 0 292 292) +Process: 3 registered... (2000 0 292 292) +Process: 3 I/O blocked... (2000 0 293 293) +Process: 3 registered... (2000 0 293 293) +Process: 3 I/O blocked... (2000 0 294 294) +Process: 3 registered... (2000 0 294 294) +Process: 3 I/O blocked... (2000 0 295 295) +Process: 3 registered... (2000 0 295 295) +Process: 3 I/O blocked... (2000 0 296 296) +Process: 3 registered... (2000 0 296 296) +Process: 3 I/O blocked... (2000 0 297 297) +Process: 3 registered... (2000 0 297 297) +Process: 3 I/O blocked... (2000 0 298 298) +Process: 3 registered... (2000 0 298 298) +Process: 3 I/O blocked... (2000 0 299 299) +Process: 3 registered... (2000 0 299 299) +Process: 3 I/O blocked... (2000 0 300 300) +Process: 3 registered... (2000 0 300 300) +Process: 3 I/O blocked... (2000 0 301 301) +Process: 3 registered... (2000 0 301 301) +Process: 3 I/O blocked... (2000 0 302 302) +Process: 3 registered... (2000 0 302 302) +Process: 3 I/O blocked... (2000 0 303 303) +Process: 3 registered... (2000 0 303 303) +Process: 3 I/O blocked... (2000 0 304 304) +Process: 3 registered... (2000 0 304 304) +Process: 3 I/O blocked... (2000 0 305 305) +Process: 3 registered... (2000 0 305 305) +Process: 3 I/O blocked... (2000 0 306 306) +Process: 3 registered... (2000 0 306 306) +Process: 3 I/O blocked... (2000 0 307 307) +Process: 3 registered... (2000 0 307 307) +Process: 3 I/O blocked... (2000 0 308 308) +Process: 3 registered... (2000 0 308 308) +Process: 3 I/O blocked... (2000 0 309 309) +Process: 3 registered... (2000 0 309 309) +Process: 3 I/O blocked... (2000 0 310 310) +Process: 3 registered... (2000 0 310 310) +Process: 3 I/O blocked... (2000 0 311 311) +Process: 3 registered... (2000 0 311 311) +Process: 3 I/O blocked... (2000 0 312 312) +Process: 3 registered... (2000 0 312 312) +Process: 3 I/O blocked... (2000 0 313 313) +Process: 3 registered... (2000 0 313 313) +Process: 3 I/O blocked... (2000 0 314 314) +Process: 3 registered... (2000 0 314 314) +Process: 3 I/O blocked... (2000 0 315 315) +Process: 3 registered... (2000 0 315 315) +Process: 3 I/O blocked... (2000 0 316 316) +Process: 3 registered... (2000 0 316 316) +Process: 3 I/O blocked... (2000 0 317 317) +Process: 3 registered... (2000 0 317 317) +Process: 3 I/O blocked... (2000 0 318 318) +Process: 3 registered... (2000 0 318 318) +Process: 3 I/O blocked... (2000 0 319 319) +Process: 3 registered... (2000 0 319 319) +Process: 3 I/O blocked... (2000 0 320 320) +Process: 3 registered... (2000 0 320 320) +Process: 3 I/O blocked... (2000 0 321 321) +Process: 3 registered... (2000 0 321 321) +Process: 3 I/O blocked... (2000 0 322 322) +Process: 3 registered... (2000 0 322 322) +Process: 3 I/O blocked... (2000 0 323 323) +Process: 3 registered... (2000 0 323 323) +Process: 3 I/O blocked... (2000 0 324 324) +Process: 3 registered... (2000 0 324 324) +Process: 3 I/O blocked... (2000 0 325 325) +Process: 3 registered... (2000 0 325 325) +Process: 3 I/O blocked... (2000 0 326 326) +Process: 3 registered... (2000 0 326 326) +Process: 3 I/O blocked... (2000 0 327 327) +Process: 3 registered... (2000 0 327 327) +Process: 3 I/O blocked... (2000 0 328 328) +Process: 3 registered... (2000 0 328 328) +Process: 3 I/O blocked... (2000 0 329 329) +Process: 3 registered... (2000 0 329 329) +Process: 3 I/O blocked... (2000 0 330 330) +Process: 3 registered... (2000 0 330 330) +Process: 3 I/O blocked... (2000 0 331 331) +Process: 3 registered... (2000 0 331 331) +Process: 3 I/O blocked... (2000 0 332 332) +Process: 3 registered... (2000 0 332 332) +Process: 3 I/O blocked... (2000 0 333 333) +Process: 3 registered... (2000 0 333 333) +Process: 3 I/O blocked... (2000 0 334 334) +Process: 3 registered... (2000 0 334 334) +Process: 3 I/O blocked... (2000 0 335 335) +Process: 3 registered... (2000 0 335 335) +Process: 3 I/O blocked... (2000 0 336 336) +Process: 3 registered... (2000 0 336 336) +Process: 3 I/O blocked... (2000 0 337 337) +Process: 3 registered... (2000 0 337 337) +Process: 3 I/O blocked... (2000 0 338 338) +Process: 3 registered... (2000 0 338 338) +Process: 3 I/O blocked... (2000 0 339 339) +Process: 3 registered... (2000 0 339 339) +Process: 3 I/O blocked... (2000 0 340 340) +Process: 3 registered... (2000 0 340 340) +Process: 3 I/O blocked... (2000 0 341 341) +Process: 3 registered... (2000 0 341 341) +Process: 3 I/O blocked... (2000 0 342 342) +Process: 3 registered... (2000 0 342 342) +Process: 3 I/O blocked... (2000 0 343 343) +Process: 3 registered... (2000 0 343 343) +Process: 3 I/O blocked... (2000 0 344 344) +Process: 3 registered... (2000 0 344 344) +Process: 3 I/O blocked... (2000 0 345 345) +Process: 3 registered... (2000 0 345 345) +Process: 3 I/O blocked... (2000 0 346 346) +Process: 3 registered... (2000 0 346 346) +Process: 3 I/O blocked... (2000 0 347 347) +Process: 3 registered... (2000 0 347 347) +Process: 3 I/O blocked... (2000 0 348 348) +Process: 3 registered... (2000 0 348 348) +Process: 3 I/O blocked... (2000 0 349 349) +Process: 3 registered... (2000 0 349 349) +Process: 3 I/O blocked... (2000 0 350 350) +Process: 3 registered... (2000 0 350 350) +Process: 3 I/O blocked... (2000 0 351 351) +Process: 3 registered... (2000 0 351 351) +Process: 3 I/O blocked... (2000 0 352 352) +Process: 3 registered... (2000 0 352 352) +Process: 3 I/O blocked... (2000 0 353 353) +Process: 3 registered... (2000 0 353 353) +Process: 3 I/O blocked... (2000 0 354 354) +Process: 3 registered... (2000 0 354 354) +Process: 3 I/O blocked... (2000 0 355 355) +Process: 3 registered... (2000 0 355 355) +Process: 3 I/O blocked... (2000 0 356 356) +Process: 3 registered... (2000 0 356 356) +Process: 3 I/O blocked... (2000 0 357 357) +Process: 3 registered... (2000 0 357 357) +Process: 3 I/O blocked... (2000 0 358 358) +Process: 3 registered... (2000 0 358 358) +Process: 3 I/O blocked... (2000 0 359 359) +Process: 3 registered... (2000 0 359 359) +Process: 3 I/O blocked... (2000 0 360 360) +Process: 3 registered... (2000 0 360 360) +Process: 3 I/O blocked... (2000 0 361 361) +Process: 3 registered... (2000 0 361 361) +Process: 3 I/O blocked... (2000 0 362 362) +Process: 3 registered... (2000 0 362 362) +Process: 3 I/O blocked... (2000 0 363 363) +Process: 3 registered... (2000 0 363 363) +Process: 3 I/O blocked... (2000 0 364 364) +Process: 3 registered... (2000 0 364 364) +Process: 3 I/O blocked... (2000 0 365 365) +Process: 3 registered... (2000 0 365 365) +Process: 3 I/O blocked... (2000 0 366 366) +Process: 3 registered... (2000 0 366 366) +Process: 3 I/O blocked... (2000 0 367 367) +Process: 3 registered... (2000 0 367 367) +Process: 3 I/O blocked... (2000 0 368 368) +Process: 3 registered... (2000 0 368 368) +Process: 3 I/O blocked... (2000 0 369 369) +Process: 3 registered... (2000 0 369 369) +Process: 3 I/O blocked... (2000 0 370 370) +Process: 3 registered... (2000 0 370 370) +Process: 3 I/O blocked... (2000 0 371 371) +Process: 3 registered... (2000 0 371 371) +Process: 3 I/O blocked... (2000 0 372 372) +Process: 3 registered... (2000 0 372 372) +Process: 3 I/O blocked... (2000 0 373 373) +Process: 3 registered... (2000 0 373 373) +Process: 3 I/O blocked... (2000 0 374 374) +Process: 3 registered... (2000 0 374 374) +Process: 3 I/O blocked... (2000 0 375 375) +Process: 3 registered... (2000 0 375 375) +Process: 3 I/O blocked... (2000 0 376 376) +Process: 3 registered... (2000 0 376 376) +Process: 3 I/O blocked... (2000 0 377 377) +Process: 3 registered... (2000 0 377 377) +Process: 3 I/O blocked... (2000 0 378 378) +Process: 3 registered... (2000 0 378 378) +Process: 3 I/O blocked... (2000 0 379 379) +Process: 3 registered... (2000 0 379 379) +Process: 3 I/O blocked... (2000 0 380 380) +Process: 3 registered... (2000 0 380 380) +Process: 3 I/O blocked... (2000 0 381 381) +Process: 3 registered... (2000 0 381 381) +Process: 3 I/O blocked... (2000 0 382 382) +Process: 3 registered... (2000 0 382 382) +Process: 3 I/O blocked... (2000 0 383 383) +Process: 3 registered... (2000 0 383 383) +Process: 3 I/O blocked... (2000 0 384 384) +Process: 3 registered... (2000 0 384 384) +Process: 3 I/O blocked... (2000 0 385 385) +Process: 3 registered... (2000 0 385 385) +Process: 3 I/O blocked... (2000 0 386 386) +Process: 3 registered... (2000 0 386 386) +Process: 3 I/O blocked... (2000 0 387 387) +Process: 3 registered... (2000 0 387 387) +Process: 3 I/O blocked... (2000 0 388 388) +Process: 3 registered... (2000 0 388 388) +Process: 3 I/O blocked... (2000 0 389 389) +Process: 3 registered... (2000 0 389 389) +Process: 3 I/O blocked... (2000 0 390 390) +Process: 3 registered... (2000 0 390 390) +Process: 3 I/O blocked... (2000 0 391 391) +Process: 3 registered... (2000 0 391 391) +Process: 3 I/O blocked... (2000 0 392 392) +Process: 3 registered... (2000 0 392 392) +Process: 3 I/O blocked... (2000 0 393 393) +Process: 3 registered... (2000 0 393 393) +Process: 3 I/O blocked... (2000 0 394 394) +Process: 3 registered... (2000 0 394 394) +Process: 3 I/O blocked... (2000 0 395 395) +Process: 3 registered... (2000 0 395 395) +Process: 3 I/O blocked... (2000 0 396 396) +Process: 3 registered... (2000 0 396 396) +Process: 3 I/O blocked... (2000 0 397 397) +Process: 3 registered... (2000 0 397 397) +Process: 3 I/O blocked... (2000 0 398 398) +Process: 3 registered... (2000 0 398 398) +Process: 3 I/O blocked... (2000 0 399 399) +Process: 3 registered... (2000 0 399 399) +Process: 3 I/O blocked... (2000 0 400 400) +Process: 3 registered... (2000 0 400 400) +Process: 3 I/O blocked... (2000 0 401 401) +Process: 3 registered... (2000 0 401 401) +Process: 3 I/O blocked... (2000 0 402 402) +Process: 3 registered... (2000 0 402 402) +Process: 3 I/O blocked... (2000 0 403 403) +Process: 3 registered... (2000 0 403 403) +Process: 3 I/O blocked... (2000 0 404 404) +Process: 3 registered... (2000 0 404 404) +Process: 3 I/O blocked... (2000 0 405 405) +Process: 3 registered... (2000 0 405 405) +Process: 3 I/O blocked... (2000 0 406 406) +Process: 3 registered... (2000 0 406 406) +Process: 3 I/O blocked... (2000 0 407 407) +Process: 3 registered... (2000 0 407 407) +Process: 3 I/O blocked... (2000 0 408 408) +Process: 3 registered... (2000 0 408 408) +Process: 3 I/O blocked... (2000 0 409 409) +Process: 3 registered... (2000 0 409 409) +Process: 3 I/O blocked... (2000 0 410 410) +Process: 3 registered... (2000 0 410 410) +Process: 3 I/O blocked... (2000 0 411 411) +Process: 3 registered... (2000 0 411 411) +Process: 3 I/O blocked... (2000 0 412 412) +Process: 3 registered... (2000 0 412 412) +Process: 3 I/O blocked... (2000 0 413 413) +Process: 3 registered... (2000 0 413 413) +Process: 3 I/O blocked... (2000 0 414 414) +Process: 3 registered... (2000 0 414 414) +Process: 3 I/O blocked... (2000 0 415 415) +Process: 3 registered... (2000 0 415 415) +Process: 3 I/O blocked... (2000 0 416 416) +Process: 3 registered... (2000 0 416 416) +Process: 3 I/O blocked... (2000 0 417 417) +Process: 3 registered... (2000 0 417 417) +Process: 3 I/O blocked... (2000 0 418 418) +Process: 3 registered... (2000 0 418 418) +Process: 3 I/O blocked... (2000 0 419 419) +Process: 3 registered... (2000 0 419 419) +Process: 3 I/O blocked... (2000 0 420 420) +Process: 3 registered... (2000 0 420 420) +Process: 3 I/O blocked... (2000 0 421 421) +Process: 3 registered... (2000 0 421 421) +Process: 3 I/O blocked... (2000 0 422 422) +Process: 3 registered... (2000 0 422 422) +Process: 3 I/O blocked... (2000 0 423 423) +Process: 3 registered... (2000 0 423 423) +Process: 3 I/O blocked... (2000 0 424 424) +Process: 3 registered... (2000 0 424 424) +Process: 3 I/O blocked... (2000 0 425 425) +Process: 3 registered... (2000 0 425 425) +Process: 3 I/O blocked... (2000 0 426 426) +Process: 3 registered... (2000 0 426 426) +Process: 3 I/O blocked... (2000 0 427 427) +Process: 3 registered... (2000 0 427 427) +Process: 3 I/O blocked... (2000 0 428 428) +Process: 3 registered... (2000 0 428 428) +Process: 3 I/O blocked... (2000 0 429 429) +Process: 3 registered... (2000 0 429 429) +Process: 3 I/O blocked... (2000 0 430 430) +Process: 3 registered... (2000 0 430 430) +Process: 3 I/O blocked... (2000 0 431 431) +Process: 3 registered... (2000 0 431 431) +Process: 3 I/O blocked... (2000 0 432 432) +Process: 3 registered... (2000 0 432 432) +Process: 3 I/O blocked... (2000 0 433 433) +Process: 3 registered... (2000 0 433 433) +Process: 3 I/O blocked... (2000 0 434 434) +Process: 3 registered... (2000 0 434 434) +Process: 3 I/O blocked... (2000 0 435 435) +Process: 3 registered... (2000 0 435 435) +Process: 3 I/O blocked... (2000 0 436 436) +Process: 3 registered... (2000 0 436 436) +Process: 3 I/O blocked... (2000 0 437 437) +Process: 3 registered... (2000 0 437 437) +Process: 3 I/O blocked... (2000 0 438 438) +Process: 3 registered... (2000 0 438 438) +Process: 3 I/O blocked... (2000 0 439 439) +Process: 3 registered... (2000 0 439 439) +Process: 3 I/O blocked... (2000 0 440 440) +Process: 3 registered... (2000 0 440 440) +Process: 3 I/O blocked... (2000 0 441 441) +Process: 3 registered... (2000 0 441 441) +Process: 3 I/O blocked... (2000 0 442 442) +Process: 3 registered... (2000 0 442 442) +Process: 3 I/O blocked... (2000 0 443 443) +Process: 3 registered... (2000 0 443 443) +Process: 3 I/O blocked... (2000 0 444 444) +Process: 3 registered... (2000 0 444 444) +Process: 3 I/O blocked... (2000 0 445 445) +Process: 3 registered... (2000 0 445 445) +Process: 3 I/O blocked... (2000 0 446 446) +Process: 3 registered... (2000 0 446 446) +Process: 3 I/O blocked... (2000 0 447 447) +Process: 3 registered... (2000 0 447 447) +Process: 3 I/O blocked... (2000 0 448 448) +Process: 3 registered... (2000 0 448 448) +Process: 3 I/O blocked... (2000 0 449 449) +Process: 3 registered... (2000 0 449 449) +Process: 3 I/O blocked... (2000 0 450 450) +Process: 3 registered... (2000 0 450 450) +Process: 3 I/O blocked... (2000 0 451 451) +Process: 3 registered... (2000 0 451 451) +Process: 3 I/O blocked... (2000 0 452 452) +Process: 3 registered... (2000 0 452 452) +Process: 3 I/O blocked... (2000 0 453 453) +Process: 3 registered... (2000 0 453 453) +Process: 3 I/O blocked... (2000 0 454 454) +Process: 3 registered... (2000 0 454 454) +Process: 3 I/O blocked... (2000 0 455 455) +Process: 3 registered... (2000 0 455 455) +Process: 3 I/O blocked... (2000 0 456 456) +Process: 3 registered... (2000 0 456 456) +Process: 3 I/O blocked... (2000 0 457 457) +Process: 3 registered... (2000 0 457 457) +Process: 3 I/O blocked... (2000 0 458 458) +Process: 3 registered... (2000 0 458 458) +Process: 3 I/O blocked... (2000 0 459 459) +Process: 3 registered... (2000 0 459 459) +Process: 3 I/O blocked... (2000 0 460 460) +Process: 3 registered... (2000 0 460 460) +Process: 3 I/O blocked... (2000 0 461 461) +Process: 3 registered... (2000 0 461 461) +Process: 3 I/O blocked... (2000 0 462 462) +Process: 3 registered... (2000 0 462 462) +Process: 3 I/O blocked... (2000 0 463 463) +Process: 3 registered... (2000 0 463 463) +Process: 3 I/O blocked... (2000 0 464 464) +Process: 3 registered... (2000 0 464 464) +Process: 3 I/O blocked... (2000 0 465 465) +Process: 3 registered... (2000 0 465 465) +Process: 3 I/O blocked... (2000 0 466 466) +Process: 3 registered... (2000 0 466 466) +Process: 3 I/O blocked... (2000 0 467 467) +Process: 3 registered... (2000 0 467 467) +Process: 3 I/O blocked... (2000 0 468 468) +Process: 3 registered... (2000 0 468 468) +Process: 3 I/O blocked... (2000 0 469 469) +Process: 3 registered... (2000 0 469 469) +Process: 3 I/O blocked... (2000 0 470 470) +Process: 3 registered... (2000 0 470 470) +Process: 3 I/O blocked... (2000 0 471 471) +Process: 3 registered... (2000 0 471 471) +Process: 3 I/O blocked... (2000 0 472 472) +Process: 3 registered... (2000 0 472 472) +Process: 3 I/O blocked... (2000 0 473 473) +Process: 3 registered... (2000 0 473 473) +Process: 3 I/O blocked... (2000 0 474 474) +Process: 3 registered... (2000 0 474 474) +Process: 3 I/O blocked... (2000 0 475 475) +Process: 3 registered... (2000 0 475 475) +Process: 3 I/O blocked... (2000 0 476 476) +Process: 3 registered... (2000 0 476 476) +Process: 3 I/O blocked... (2000 0 477 477) +Process: 3 registered... (2000 0 477 477) +Process: 3 I/O blocked... (2000 0 478 478) +Process: 3 registered... (2000 0 478 478) +Process: 3 I/O blocked... (2000 0 479 479) +Process: 3 registered... (2000 0 479 479) +Process: 3 I/O blocked... (2000 0 480 480) +Process: 3 registered... (2000 0 480 480) +Process: 3 I/O blocked... (2000 0 481 481) +Process: 3 registered... (2000 0 481 481) +Process: 3 I/O blocked... (2000 0 482 482) +Process: 3 registered... (2000 0 482 482) +Process: 3 I/O blocked... (2000 0 483 483) +Process: 3 registered... (2000 0 483 483) +Process: 3 I/O blocked... (2000 0 484 484) +Process: 3 registered... (2000 0 484 484) +Process: 3 I/O blocked... (2000 0 485 485) +Process: 3 registered... (2000 0 485 485) +Process: 3 I/O blocked... (2000 0 486 486) +Process: 3 registered... (2000 0 486 486) +Process: 3 I/O blocked... (2000 0 487 487) +Process: 3 registered... (2000 0 487 487) +Process: 3 I/O blocked... (2000 0 488 488) +Process: 3 registered... (2000 0 488 488) +Process: 3 I/O blocked... (2000 0 489 489) +Process: 3 registered... (2000 0 489 489) +Process: 3 I/O blocked... (2000 0 490 490) +Process: 3 registered... (2000 0 490 490) +Process: 3 I/O blocked... (2000 0 491 491) +Process: 3 registered... (2000 0 491 491) +Process: 3 I/O blocked... (2000 0 492 492) +Process: 3 registered... (2000 0 492 492) +Process: 3 I/O blocked... (2000 0 493 493) +Process: 3 registered... (2000 0 493 493) +Process: 3 I/O blocked... (2000 0 494 494) +Process: 3 registered... (2000 0 494 494) +Process: 3 I/O blocked... (2000 0 495 495) +Process: 3 registered... (2000 0 495 495) +Process: 3 I/O blocked... (2000 0 496 496) +Process: 3 registered... (2000 0 496 496) +Process: 3 I/O blocked... (2000 0 497 497) +Process: 3 registered... (2000 0 497 497) +Process: 3 I/O blocked... (2000 0 498 498) +Process: 3 registered... (2000 0 498 498) +Process: 3 I/O blocked... (2000 0 499 499) +Process: 3 registered... (2000 0 499 499) +Process: 3 I/O blocked... (2000 0 500 500) +Process: 3 registered... (2000 0 500 500) +Process: 3 I/O blocked... (2000 0 501 501) +Process: 3 registered... (2000 0 501 501) +Process: 3 I/O blocked... (2000 0 502 502) +Process: 3 registered... (2000 0 502 502) +Process: 3 I/O blocked... (2000 0 503 503) +Process: 3 registered... (2000 0 503 503) +Process: 3 I/O blocked... (2000 0 504 504) +Process: 3 registered... (2000 0 504 504) +Process: 3 I/O blocked... (2000 0 505 505) +Process: 3 registered... (2000 0 505 505) +Process: 3 I/O blocked... (2000 0 506 506) +Process: 3 registered... (2000 0 506 506) +Process: 3 I/O blocked... (2000 0 507 507) +Process: 3 registered... (2000 0 507 507) +Process: 3 I/O blocked... (2000 0 508 508) +Process: 3 registered... (2000 0 508 508) +Process: 3 I/O blocked... (2000 0 509 509) +Process: 3 registered... (2000 0 509 509) +Process: 3 I/O blocked... (2000 0 510 510) +Process: 3 registered... (2000 0 510 510) +Process: 3 I/O blocked... (2000 0 511 511) +Process: 3 registered... (2000 0 511 511) +Process: 3 I/O blocked... (2000 0 512 512) +Process: 3 registered... (2000 0 512 512) +Process: 3 I/O blocked... (2000 0 513 513) +Process: 3 registered... (2000 0 513 513) +Process: 3 I/O blocked... (2000 0 514 514) +Process: 3 registered... (2000 0 514 514) +Process: 3 I/O blocked... (2000 0 515 515) +Process: 3 registered... (2000 0 515 515) +Process: 3 I/O blocked... (2000 0 516 516) +Process: 3 registered... (2000 0 516 516) +Process: 3 I/O blocked... (2000 0 517 517) +Process: 3 registered... (2000 0 517 517) +Process: 3 I/O blocked... (2000 0 518 518) +Process: 3 registered... (2000 0 518 518) +Process: 3 I/O blocked... (2000 0 519 519) +Process: 3 registered... (2000 0 519 519) +Process: 3 I/O blocked... (2000 0 520 520) +Process: 3 registered... (2000 0 520 520) +Process: 3 I/O blocked... (2000 0 521 521) +Process: 3 registered... (2000 0 521 521) +Process: 3 I/O blocked... (2000 0 522 522) +Process: 3 registered... (2000 0 522 522) +Process: 3 I/O blocked... (2000 0 523 523) +Process: 3 registered... (2000 0 523 523) +Process: 3 I/O blocked... (2000 0 524 524) +Process: 3 registered... (2000 0 524 524) +Process: 3 I/O blocked... (2000 0 525 525) +Process: 3 registered... (2000 0 525 525) +Process: 3 I/O blocked... (2000 0 526 526) +Process: 3 registered... (2000 0 526 526) +Process: 3 I/O blocked... (2000 0 527 527) +Process: 3 registered... (2000 0 527 527) +Process: 3 I/O blocked... (2000 0 528 528) +Process: 3 registered... (2000 0 528 528) +Process: 3 I/O blocked... (2000 0 529 529) +Process: 3 registered... (2000 0 529 529) +Process: 3 I/O blocked... (2000 0 530 530) +Process: 3 registered... (2000 0 530 530) +Process: 3 I/O blocked... (2000 0 531 531) +Process: 3 registered... (2000 0 531 531) +Process: 3 I/O blocked... (2000 0 532 532) +Process: 3 registered... (2000 0 532 532) +Process: 3 I/O blocked... (2000 0 533 533) +Process: 3 registered... (2000 0 533 533) +Process: 3 I/O blocked... (2000 0 534 534) +Process: 3 registered... (2000 0 534 534) +Process: 3 I/O blocked... (2000 0 535 535) +Process: 3 registered... (2000 0 535 535) +Process: 3 I/O blocked... (2000 0 536 536) +Process: 3 registered... (2000 0 536 536) +Process: 3 I/O blocked... (2000 0 537 537) +Process: 3 registered... (2000 0 537 537) +Process: 3 I/O blocked... (2000 0 538 538) +Process: 3 registered... (2000 0 538 538) +Process: 3 I/O blocked... (2000 0 539 539) +Process: 3 registered... (2000 0 539 539) +Process: 3 I/O blocked... (2000 0 540 540) +Process: 3 registered... (2000 0 540 540) +Process: 3 I/O blocked... (2000 0 541 541) +Process: 3 registered... (2000 0 541 541) +Process: 3 I/O blocked... (2000 0 542 542) +Process: 3 registered... (2000 0 542 542) +Process: 3 I/O blocked... (2000 0 543 543) +Process: 3 registered... (2000 0 543 543) +Process: 3 I/O blocked... (2000 0 544 544) +Process: 3 registered... (2000 0 544 544) +Process: 3 I/O blocked... (2000 0 545 545) +Process: 3 registered... (2000 0 545 545) +Process: 3 I/O blocked... (2000 0 546 546) +Process: 3 registered... (2000 0 546 546) +Process: 3 I/O blocked... (2000 0 547 547) +Process: 3 registered... (2000 0 547 547) +Process: 3 I/O blocked... (2000 0 548 548) +Process: 3 registered... (2000 0 548 548) +Process: 3 I/O blocked... (2000 0 549 549) +Process: 3 registered... (2000 0 549 549) +Process: 3 I/O blocked... (2000 0 550 550) +Process: 3 registered... (2000 0 550 550) +Process: 3 I/O blocked... (2000 0 551 551) +Process: 3 registered... (2000 0 551 551) +Process: 3 I/O blocked... (2000 0 552 552) +Process: 3 registered... (2000 0 552 552) +Process: 3 I/O blocked... (2000 0 553 553) +Process: 3 registered... (2000 0 553 553) +Process: 3 I/O blocked... (2000 0 554 554) +Process: 3 registered... (2000 0 554 554) +Process: 3 I/O blocked... (2000 0 555 555) +Process: 3 registered... (2000 0 555 555) +Process: 3 I/O blocked... (2000 0 556 556) +Process: 3 registered... (2000 0 556 556) +Process: 3 I/O blocked... (2000 0 557 557) +Process: 3 registered... (2000 0 557 557) +Process: 3 I/O blocked... (2000 0 558 558) +Process: 3 registered... (2000 0 558 558) +Process: 3 I/O blocked... (2000 0 559 559) +Process: 3 registered... (2000 0 559 559) +Process: 3 I/O blocked... (2000 0 560 560) +Process: 3 registered... (2000 0 560 560) +Process: 3 I/O blocked... (2000 0 561 561) +Process: 3 registered... (2000 0 561 561) +Process: 3 I/O blocked... (2000 0 562 562) +Process: 3 registered... (2000 0 562 562) +Process: 3 I/O blocked... (2000 0 563 563) +Process: 3 registered... (2000 0 563 563) +Process: 3 I/O blocked... (2000 0 564 564) +Process: 3 registered... (2000 0 564 564) +Process: 3 I/O blocked... (2000 0 565 565) +Process: 3 registered... (2000 0 565 565) +Process: 3 I/O blocked... (2000 0 566 566) +Process: 3 registered... (2000 0 566 566) +Process: 3 I/O blocked... (2000 0 567 567) +Process: 3 registered... (2000 0 567 567) +Process: 3 I/O blocked... (2000 0 568 568) +Process: 3 registered... (2000 0 568 568) +Process: 3 I/O blocked... (2000 0 569 569) +Process: 3 registered... (2000 0 569 569) +Process: 3 I/O blocked... (2000 0 570 570) +Process: 3 registered... (2000 0 570 570) +Process: 3 I/O blocked... (2000 0 571 571) +Process: 3 registered... (2000 0 571 571) +Process: 3 I/O blocked... (2000 0 572 572) +Process: 3 registered... (2000 0 572 572) +Process: 3 I/O blocked... (2000 0 573 573) +Process: 3 registered... (2000 0 573 573) +Process: 3 I/O blocked... (2000 0 574 574) +Process: 3 registered... (2000 0 574 574) +Process: 3 I/O blocked... (2000 0 575 575) +Process: 3 registered... (2000 0 575 575) +Process: 3 I/O blocked... (2000 0 576 576) +Process: 3 registered... (2000 0 576 576) +Process: 3 I/O blocked... (2000 0 577 577) +Process: 3 registered... (2000 0 577 577) +Process: 3 I/O blocked... (2000 0 578 578) +Process: 3 registered... (2000 0 578 578) +Process: 3 I/O blocked... (2000 0 579 579) +Process: 3 registered... (2000 0 579 579) +Process: 3 I/O blocked... (2000 0 580 580) +Process: 3 registered... (2000 0 580 580) +Process: 3 I/O blocked... (2000 0 581 581) +Process: 3 registered... (2000 0 581 581) +Process: 3 I/O blocked... (2000 0 582 582) +Process: 3 registered... (2000 0 582 582) +Process: 3 I/O blocked... (2000 0 583 583) +Process: 3 registered... (2000 0 583 583) +Process: 3 I/O blocked... (2000 0 584 584) +Process: 3 registered... (2000 0 584 584) +Process: 3 I/O blocked... (2000 0 585 585) +Process: 3 registered... (2000 0 585 585) +Process: 3 I/O blocked... (2000 0 586 586) +Process: 3 registered... (2000 0 586 586) +Process: 3 I/O blocked... (2000 0 587 587) +Process: 3 registered... (2000 0 587 587) +Process: 3 I/O blocked... (2000 0 588 588) +Process: 3 registered... (2000 0 588 588) +Process: 3 I/O blocked... (2000 0 589 589) +Process: 3 registered... (2000 0 589 589) +Process: 3 I/O blocked... (2000 0 590 590) +Process: 3 registered... (2000 0 590 590) +Process: 3 I/O blocked... (2000 0 591 591) +Process: 3 registered... (2000 0 591 591) +Process: 3 I/O blocked... (2000 0 592 592) +Process: 3 registered... (2000 0 592 592) +Process: 3 I/O blocked... (2000 0 593 593) +Process: 3 registered... (2000 0 593 593) +Process: 3 I/O blocked... (2000 0 594 594) +Process: 3 registered... (2000 0 594 594) +Process: 3 I/O blocked... (2000 0 595 595) +Process: 3 registered... (2000 0 595 595) +Process: 3 I/O blocked... (2000 0 596 596) +Process: 3 registered... (2000 0 596 596) +Process: 3 I/O blocked... (2000 0 597 597) +Process: 3 registered... (2000 0 597 597) +Process: 3 I/O blocked... (2000 0 598 598) +Process: 3 registered... (2000 0 598 598) +Process: 3 I/O blocked... (2000 0 599 599) +Process: 3 registered... (2000 0 599 599) +Process: 3 I/O blocked... (2000 0 600 600) +Process: 3 registered... (2000 0 600 600) +Process: 3 I/O blocked... (2000 0 601 601) +Process: 3 registered... (2000 0 601 601) +Process: 3 I/O blocked... (2000 0 602 602) +Process: 3 registered... (2000 0 602 602) +Process: 3 I/O blocked... (2000 0 603 603) +Process: 3 registered... (2000 0 603 603) +Process: 3 I/O blocked... (2000 0 604 604) +Process: 3 registered... (2000 0 604 604) +Process: 3 I/O blocked... (2000 0 605 605) +Process: 3 registered... (2000 0 605 605) +Process: 3 I/O blocked... (2000 0 606 606) +Process: 3 registered... (2000 0 606 606) +Process: 3 I/O blocked... (2000 0 607 607) +Process: 3 registered... (2000 0 607 607) +Process: 3 I/O blocked... (2000 0 608 608) +Process: 3 registered... (2000 0 608 608) +Process: 3 I/O blocked... (2000 0 609 609) +Process: 3 registered... (2000 0 609 609) +Process: 3 I/O blocked... (2000 0 610 610) +Process: 3 registered... (2000 0 610 610) +Process: 3 I/O blocked... (2000 0 611 611) +Process: 3 registered... (2000 0 611 611) +Process: 3 I/O blocked... (2000 0 612 612) +Process: 3 registered... (2000 0 612 612) +Process: 3 I/O blocked... (2000 0 613 613) +Process: 3 registered... (2000 0 613 613) +Process: 3 I/O blocked... (2000 0 614 614) +Process: 3 registered... (2000 0 614 614) +Process: 3 I/O blocked... (2000 0 615 615) +Process: 3 registered... (2000 0 615 615) +Process: 3 I/O blocked... (2000 0 616 616) +Process: 3 registered... (2000 0 616 616) +Process: 3 I/O blocked... (2000 0 617 617) +Process: 3 registered... (2000 0 617 617) +Process: 3 I/O blocked... (2000 0 618 618) +Process: 3 registered... (2000 0 618 618) +Process: 3 I/O blocked... (2000 0 619 619) +Process: 3 registered... (2000 0 619 619) +Process: 3 I/O blocked... (2000 0 620 620) +Process: 3 registered... (2000 0 620 620) +Process: 3 I/O blocked... (2000 0 621 621) +Process: 3 registered... (2000 0 621 621) +Process: 3 I/O blocked... (2000 0 622 622) +Process: 3 registered... (2000 0 622 622) +Process: 3 I/O blocked... (2000 0 623 623) +Process: 3 registered... (2000 0 623 623) +Process: 3 I/O blocked... (2000 0 624 624) +Process: 3 registered... (2000 0 624 624) +Process: 3 I/O blocked... (2000 0 625 625) +Process: 3 registered... (2000 0 625 625) +Process: 3 I/O blocked... (2000 0 626 626) +Process: 3 registered... (2000 0 626 626) +Process: 3 I/O blocked... (2000 0 627 627) +Process: 3 registered... (2000 0 627 627) +Process: 3 I/O blocked... (2000 0 628 628) +Process: 3 registered... (2000 0 628 628) +Process: 3 I/O blocked... (2000 0 629 629) +Process: 3 registered... (2000 0 629 629) +Process: 3 I/O blocked... (2000 0 630 630) +Process: 3 registered... (2000 0 630 630) +Process: 3 I/O blocked... (2000 0 631 631) +Process: 3 registered... (2000 0 631 631) +Process: 3 I/O blocked... (2000 0 632 632) +Process: 3 registered... (2000 0 632 632) +Process: 3 I/O blocked... (2000 0 633 633) +Process: 3 registered... (2000 0 633 633) +Process: 3 I/O blocked... (2000 0 634 634) +Process: 3 registered... (2000 0 634 634) +Process: 3 I/O blocked... (2000 0 635 635) +Process: 3 registered... (2000 0 635 635) +Process: 3 I/O blocked... (2000 0 636 636) +Process: 3 registered... (2000 0 636 636) +Process: 3 I/O blocked... (2000 0 637 637) +Process: 3 registered... (2000 0 637 637) +Process: 3 I/O blocked... (2000 0 638 638) +Process: 3 registered... (2000 0 638 638) +Process: 3 I/O blocked... (2000 0 639 639) +Process: 3 registered... (2000 0 639 639) +Process: 3 I/O blocked... (2000 0 640 640) +Process: 3 registered... (2000 0 640 640) +Process: 3 I/O blocked... (2000 0 641 641) +Process: 3 registered... (2000 0 641 641) +Process: 3 I/O blocked... (2000 0 642 642) +Process: 3 registered... (2000 0 642 642) +Process: 3 I/O blocked... (2000 0 643 643) +Process: 3 registered... (2000 0 643 643) +Process: 3 I/O blocked... (2000 0 644 644) +Process: 3 registered... (2000 0 644 644) +Process: 3 I/O blocked... (2000 0 645 645) +Process: 3 registered... (2000 0 645 645) +Process: 3 I/O blocked... (2000 0 646 646) +Process: 3 registered... (2000 0 646 646) +Process: 3 I/O blocked... (2000 0 647 647) +Process: 3 registered... (2000 0 647 647) +Process: 3 I/O blocked... (2000 0 648 648) +Process: 3 registered... (2000 0 648 648) +Process: 3 I/O blocked... (2000 0 649 649) +Process: 3 registered... (2000 0 649 649) +Process: 3 I/O blocked... (2000 0 650 650) +Process: 3 registered... (2000 0 650 650) +Process: 3 I/O blocked... (2000 0 651 651) +Process: 3 registered... (2000 0 651 651) +Process: 3 I/O blocked... (2000 0 652 652) +Process: 3 registered... (2000 0 652 652) +Process: 3 I/O blocked... (2000 0 653 653) +Process: 3 registered... (2000 0 653 653) +Process: 3 I/O blocked... (2000 0 654 654) +Process: 3 registered... (2000 0 654 654) +Process: 3 I/O blocked... (2000 0 655 655) +Process: 3 registered... (2000 0 655 655) +Process: 3 I/O blocked... (2000 0 656 656) +Process: 3 registered... (2000 0 656 656) +Process: 3 I/O blocked... (2000 0 657 657) +Process: 3 registered... (2000 0 657 657) +Process: 3 I/O blocked... (2000 0 658 658) +Process: 3 registered... (2000 0 658 658) +Process: 3 I/O blocked... (2000 0 659 659) +Process: 3 registered... (2000 0 659 659) +Process: 3 I/O blocked... (2000 0 660 660) +Process: 3 registered... (2000 0 660 660) +Process: 3 I/O blocked... (2000 0 661 661) +Process: 3 registered... (2000 0 661 661) +Process: 3 I/O blocked... (2000 0 662 662) +Process: 3 registered... (2000 0 662 662) +Process: 3 I/O blocked... (2000 0 663 663) +Process: 3 registered... (2000 0 663 663) +Process: 3 I/O blocked... (2000 0 664 664) +Process: 3 registered... (2000 0 664 664) +Process: 3 I/O blocked... (2000 0 665 665) +Process: 3 registered... (2000 0 665 665) +Process: 3 I/O blocked... (2000 0 666 666) +Process: 3 registered... (2000 0 666 666) +Process: 3 I/O blocked... (2000 0 667 667) +Process: 3 registered... (2000 0 667 667) +Process: 3 I/O blocked... (2000 0 668 668) +Process: 3 registered... (2000 0 668 668) +Process: 3 I/O blocked... (2000 0 669 669) +Process: 3 registered... (2000 0 669 669) +Process: 3 I/O blocked... (2000 0 670 670) +Process: 3 registered... (2000 0 670 670) +Process: 3 I/O blocked... (2000 0 671 671) +Process: 3 registered... (2000 0 671 671) +Process: 3 I/O blocked... (2000 0 672 672) +Process: 3 registered... (2000 0 672 672) +Process: 3 I/O blocked... (2000 0 673 673) +Process: 3 registered... (2000 0 673 673) +Process: 3 I/O blocked... (2000 0 674 674) +Process: 3 registered... (2000 0 674 674) +Process: 3 I/O blocked... (2000 0 675 675) +Process: 3 registered... (2000 0 675 675) +Process: 3 I/O blocked... (2000 0 676 676) +Process: 3 registered... (2000 0 676 676) +Process: 3 I/O blocked... (2000 0 677 677) +Process: 3 registered... (2000 0 677 677) +Process: 3 I/O blocked... (2000 0 678 678) +Process: 3 registered... (2000 0 678 678) +Process: 3 I/O blocked... (2000 0 679 679) +Process: 3 registered... (2000 0 679 679) +Process: 3 I/O blocked... (2000 0 680 680) +Process: 3 registered... (2000 0 680 680) +Process: 3 I/O blocked... (2000 0 681 681) +Process: 3 registered... (2000 0 681 681) +Process: 3 I/O blocked... (2000 0 682 682) +Process: 3 registered... (2000 0 682 682) +Process: 3 I/O blocked... (2000 0 683 683) +Process: 3 registered... (2000 0 683 683) +Process: 3 I/O blocked... (2000 0 684 684) +Process: 3 registered... (2000 0 684 684) +Process: 3 I/O blocked... (2000 0 685 685) +Process: 3 registered... (2000 0 685 685) +Process: 3 I/O blocked... (2000 0 686 686) +Process: 3 registered... (2000 0 686 686) +Process: 3 I/O blocked... (2000 0 687 687) +Process: 3 registered... (2000 0 687 687) +Process: 3 I/O blocked... (2000 0 688 688) +Process: 3 registered... (2000 0 688 688) +Process: 3 I/O blocked... (2000 0 689 689) +Process: 3 registered... (2000 0 689 689) +Process: 3 I/O blocked... (2000 0 690 690) +Process: 3 registered... (2000 0 690 690) +Process: 3 I/O blocked... (2000 0 691 691) +Process: 3 registered... (2000 0 691 691) +Process: 3 I/O blocked... (2000 0 692 692) +Process: 3 registered... (2000 0 692 692) +Process: 3 I/O blocked... (2000 0 693 693) +Process: 3 registered... (2000 0 693 693) +Process: 3 I/O blocked... (2000 0 694 694) +Process: 3 registered... (2000 0 694 694) +Process: 3 I/O blocked... (2000 0 695 695) +Process: 3 registered... (2000 0 695 695) +Process: 3 I/O blocked... (2000 0 696 696) +Process: 3 registered... (2000 0 696 696) +Process: 3 I/O blocked... (2000 0 697 697) +Process: 3 registered... (2000 0 697 697) +Process: 3 I/O blocked... (2000 0 698 698) +Process: 3 registered... (2000 0 698 698) +Process: 3 I/O blocked... (2000 0 699 699) +Process: 3 registered... (2000 0 699 699) +Process: 3 I/O blocked... (2000 0 700 700) +Process: 3 registered... (2000 0 700 700) +Process: 3 I/O blocked... (2000 0 701 701) +Process: 3 registered... (2000 0 701 701) +Process: 3 I/O blocked... (2000 0 702 702) +Process: 3 registered... (2000 0 702 702) +Process: 3 I/O blocked... (2000 0 703 703) +Process: 3 registered... (2000 0 703 703) +Process: 3 I/O blocked... (2000 0 704 704) +Process: 3 registered... (2000 0 704 704) +Process: 3 I/O blocked... (2000 0 705 705) +Process: 3 registered... (2000 0 705 705) +Process: 3 I/O blocked... (2000 0 706 706) +Process: 3 registered... (2000 0 706 706) +Process: 3 I/O blocked... (2000 0 707 707) +Process: 3 registered... (2000 0 707 707) +Process: 3 I/O blocked... (2000 0 708 708) +Process: 3 registered... (2000 0 708 708) +Process: 3 I/O blocked... (2000 0 709 709) +Process: 3 registered... (2000 0 709 709) +Process: 3 I/O blocked... (2000 0 710 710) +Process: 3 registered... (2000 0 710 710) +Process: 3 I/O blocked... (2000 0 711 711) +Process: 3 registered... (2000 0 711 711) +Process: 3 I/O blocked... (2000 0 712 712) +Process: 3 registered... (2000 0 712 712) +Process: 3 I/O blocked... (2000 0 713 713) +Process: 3 registered... (2000 0 713 713) +Process: 3 I/O blocked... (2000 0 714 714) +Process: 3 registered... (2000 0 714 714) +Process: 3 I/O blocked... (2000 0 715 715) +Process: 3 registered... (2000 0 715 715) +Process: 3 I/O blocked... (2000 0 716 716) +Process: 3 registered... (2000 0 716 716) +Process: 3 I/O blocked... (2000 0 717 717) +Process: 3 registered... (2000 0 717 717) +Process: 3 I/O blocked... (2000 0 718 718) +Process: 3 registered... (2000 0 718 718) +Process: 3 I/O blocked... (2000 0 719 719) +Process: 3 registered... (2000 0 719 719) +Process: 3 I/O blocked... (2000 0 720 720) +Process: 3 registered... (2000 0 720 720) +Process: 3 I/O blocked... (2000 0 721 721) +Process: 3 registered... (2000 0 721 721) +Process: 3 I/O blocked... (2000 0 722 722) +Process: 3 registered... (2000 0 722 722) +Process: 3 I/O blocked... (2000 0 723 723) +Process: 3 registered... (2000 0 723 723) +Process: 3 I/O blocked... (2000 0 724 724) +Process: 3 registered... (2000 0 724 724) +Process: 3 I/O blocked... (2000 0 725 725) +Process: 3 registered... (2000 0 725 725) +Process: 3 I/O blocked... (2000 0 726 726) +Process: 3 registered... (2000 0 726 726) +Process: 3 I/O blocked... (2000 0 727 727) +Process: 3 registered... (2000 0 727 727) +Process: 3 I/O blocked... (2000 0 728 728) +Process: 3 registered... (2000 0 728 728) +Process: 3 I/O blocked... (2000 0 729 729) +Process: 3 registered... (2000 0 729 729) +Process: 3 I/O blocked... (2000 0 730 730) +Process: 3 registered... (2000 0 730 730) +Process: 3 I/O blocked... (2000 0 731 731) +Process: 3 registered... (2000 0 731 731) +Process: 3 I/O blocked... (2000 0 732 732) +Process: 3 registered... (2000 0 732 732) +Process: 3 I/O blocked... (2000 0 733 733) +Process: 3 registered... (2000 0 733 733) +Process: 3 I/O blocked... (2000 0 734 734) +Process: 3 registered... (2000 0 734 734) +Process: 3 I/O blocked... (2000 0 735 735) +Process: 3 registered... (2000 0 735 735) +Process: 3 I/O blocked... (2000 0 736 736) +Process: 3 registered... (2000 0 736 736) +Process: 3 I/O blocked... (2000 0 737 737) +Process: 3 registered... (2000 0 737 737) +Process: 3 I/O blocked... (2000 0 738 738) +Process: 3 registered... (2000 0 738 738) +Process: 3 I/O blocked... (2000 0 739 739) +Process: 3 registered... (2000 0 739 739) +Process: 3 I/O blocked... (2000 0 740 740) +Process: 3 registered... (2000 0 740 740) +Process: 3 I/O blocked... (2000 0 741 741) +Process: 3 registered... (2000 0 741 741) +Process: 3 I/O blocked... (2000 0 742 742) +Process: 3 registered... (2000 0 742 742) +Process: 3 I/O blocked... (2000 0 743 743) +Process: 3 registered... (2000 0 743 743) +Process: 3 I/O blocked... (2000 0 744 744) +Process: 3 registered... (2000 0 744 744) +Process: 3 I/O blocked... (2000 0 745 745) +Process: 3 registered... (2000 0 745 745) +Process: 3 I/O blocked... (2000 0 746 746) +Process: 3 registered... (2000 0 746 746) +Process: 3 I/O blocked... (2000 0 747 747) +Process: 3 registered... (2000 0 747 747) +Process: 3 I/O blocked... (2000 0 748 748) +Process: 3 registered... (2000 0 748 748) +Process: 3 I/O blocked... (2000 0 749 749) +Process: 3 registered... (2000 0 749 749) +Process: 3 I/O blocked... (2000 0 750 750) +Process: 3 registered... (2000 0 750 750) +Process: 3 I/O blocked... (2000 0 751 751) +Process: 3 registered... (2000 0 751 751) +Process: 3 I/O blocked... (2000 0 752 752) +Process: 3 registered... (2000 0 752 752) +Process: 3 I/O blocked... (2000 0 753 753) +Process: 3 registered... (2000 0 753 753) +Process: 3 I/O blocked... (2000 0 754 754) +Process: 3 registered... (2000 0 754 754) +Process: 3 I/O blocked... (2000 0 755 755) +Process: 3 registered... (2000 0 755 755) +Process: 3 I/O blocked... (2000 0 756 756) +Process: 3 registered... (2000 0 756 756) +Process: 3 I/O blocked... (2000 0 757 757) +Process: 3 registered... (2000 0 757 757) +Process: 3 I/O blocked... (2000 0 758 758) +Process: 3 registered... (2000 0 758 758) +Process: 3 I/O blocked... (2000 0 759 759) +Process: 3 registered... (2000 0 759 759) +Process: 3 I/O blocked... (2000 0 760 760) +Process: 3 registered... (2000 0 760 760) +Process: 3 I/O blocked... (2000 0 761 761) +Process: 3 registered... (2000 0 761 761) +Process: 3 I/O blocked... (2000 0 762 762) +Process: 3 registered... (2000 0 762 762) +Process: 3 I/O blocked... (2000 0 763 763) +Process: 3 registered... (2000 0 763 763) +Process: 3 I/O blocked... (2000 0 764 764) +Process: 3 registered... (2000 0 764 764) +Process: 3 I/O blocked... (2000 0 765 765) +Process: 3 registered... (2000 0 765 765) +Process: 3 I/O blocked... (2000 0 766 766) +Process: 3 registered... (2000 0 766 766) +Process: 3 I/O blocked... (2000 0 767 767) +Process: 3 registered... (2000 0 767 767) +Process: 3 I/O blocked... (2000 0 768 768) +Process: 3 registered... (2000 0 768 768) +Process: 3 I/O blocked... (2000 0 769 769) +Process: 3 registered... (2000 0 769 769) +Process: 3 I/O blocked... (2000 0 770 770) +Process: 3 registered... (2000 0 770 770) +Process: 3 I/O blocked... (2000 0 771 771) +Process: 3 registered... (2000 0 771 771) +Process: 3 I/O blocked... (2000 0 772 772) +Process: 3 registered... (2000 0 772 772) +Process: 3 I/O blocked... (2000 0 773 773) +Process: 3 registered... (2000 0 773 773) +Process: 3 I/O blocked... (2000 0 774 774) +Process: 3 registered... (2000 0 774 774) +Process: 3 I/O blocked... (2000 0 775 775) +Process: 3 registered... (2000 0 775 775) +Process: 3 I/O blocked... (2000 0 776 776) +Process: 3 registered... (2000 0 776 776) +Process: 3 I/O blocked... (2000 0 777 777) +Process: 3 registered... (2000 0 777 777) +Process: 3 I/O blocked... (2000 0 778 778) +Process: 3 registered... (2000 0 778 778) +Process: 3 I/O blocked... (2000 0 779 779) +Process: 3 registered... (2000 0 779 779) +Process: 3 I/O blocked... (2000 0 780 780) +Process: 3 registered... (2000 0 780 780) +Process: 3 I/O blocked... (2000 0 781 781) +Process: 3 registered... (2000 0 781 781) +Process: 3 I/O blocked... (2000 0 782 782) +Process: 3 registered... (2000 0 782 782) +Process: 3 I/O blocked... (2000 0 783 783) +Process: 3 registered... (2000 0 783 783) +Process: 3 I/O blocked... (2000 0 784 784) +Process: 3 registered... (2000 0 784 784) +Process: 3 I/O blocked... (2000 0 785 785) +Process: 3 registered... (2000 0 785 785) +Process: 3 I/O blocked... (2000 0 786 786) +Process: 3 registered... (2000 0 786 786) +Process: 3 I/O blocked... (2000 0 787 787) +Process: 3 registered... (2000 0 787 787) +Process: 3 I/O blocked... (2000 0 788 788) +Process: 3 registered... (2000 0 788 788) +Process: 3 I/O blocked... (2000 0 789 789) +Process: 3 registered... (2000 0 789 789) +Process: 3 I/O blocked... (2000 0 790 790) +Process: 3 registered... (2000 0 790 790) +Process: 3 I/O blocked... (2000 0 791 791) +Process: 3 registered... (2000 0 791 791) +Process: 3 I/O blocked... (2000 0 792 792) +Process: 3 registered... (2000 0 792 792) +Process: 3 I/O blocked... (2000 0 793 793) +Process: 3 registered... (2000 0 793 793) +Process: 3 I/O blocked... (2000 0 794 794) +Process: 3 registered... (2000 0 794 794) +Process: 3 I/O blocked... (2000 0 795 795) +Process: 3 registered... (2000 0 795 795) +Process: 3 I/O blocked... (2000 0 796 796) +Process: 3 registered... (2000 0 796 796) +Process: 3 I/O blocked... (2000 0 797 797) +Process: 3 registered... (2000 0 797 797) +Process: 3 I/O blocked... (2000 0 798 798) +Process: 3 registered... (2000 0 798 798) +Process: 3 I/O blocked... (2000 0 799 799) +Process: 3 registered... (2000 0 799 799) +Process: 3 I/O blocked... (2000 0 800 800) +Process: 3 registered... (2000 0 800 800) +Process: 3 I/O blocked... (2000 0 801 801) +Process: 3 registered... (2000 0 801 801) +Process: 3 I/O blocked... (2000 0 802 802) +Process: 3 registered... (2000 0 802 802) +Process: 3 I/O blocked... (2000 0 803 803) +Process: 3 registered... (2000 0 803 803) +Process: 3 I/O blocked... (2000 0 804 804) +Process: 3 registered... (2000 0 804 804) +Process: 3 I/O blocked... (2000 0 805 805) +Process: 3 registered... (2000 0 805 805) +Process: 3 I/O blocked... (2000 0 806 806) +Process: 3 registered... (2000 0 806 806) +Process: 3 I/O blocked... (2000 0 807 807) +Process: 3 registered... (2000 0 807 807) +Process: 3 I/O blocked... (2000 0 808 808) +Process: 3 registered... (2000 0 808 808) +Process: 3 I/O blocked... (2000 0 809 809) +Process: 3 registered... (2000 0 809 809) +Process: 3 I/O blocked... (2000 0 810 810) +Process: 3 registered... (2000 0 810 810) +Process: 3 I/O blocked... (2000 0 811 811) +Process: 3 registered... (2000 0 811 811) +Process: 3 I/O blocked... (2000 0 812 812) +Process: 3 registered... (2000 0 812 812) +Process: 3 I/O blocked... (2000 0 813 813) +Process: 3 registered... (2000 0 813 813) +Process: 3 I/O blocked... (2000 0 814 814) +Process: 3 registered... (2000 0 814 814) +Process: 3 I/O blocked... (2000 0 815 815) +Process: 3 registered... (2000 0 815 815) +Process: 3 I/O blocked... (2000 0 816 816) +Process: 3 registered... (2000 0 816 816) +Process: 3 I/O blocked... (2000 0 817 817) +Process: 3 registered... (2000 0 817 817) +Process: 3 I/O blocked... (2000 0 818 818) +Process: 3 registered... (2000 0 818 818) +Process: 3 I/O blocked... (2000 0 819 819) +Process: 3 registered... (2000 0 819 819) +Process: 3 I/O blocked... (2000 0 820 820) +Process: 3 registered... (2000 0 820 820) +Process: 3 I/O blocked... (2000 0 821 821) +Process: 3 registered... (2000 0 821 821) +Process: 3 I/O blocked... (2000 0 822 822) +Process: 3 registered... (2000 0 822 822) +Process: 3 I/O blocked... (2000 0 823 823) +Process: 3 registered... (2000 0 823 823) +Process: 3 I/O blocked... (2000 0 824 824) +Process: 3 registered... (2000 0 824 824) +Process: 3 I/O blocked... (2000 0 825 825) +Process: 3 registered... (2000 0 825 825) +Process: 3 I/O blocked... (2000 0 826 826) +Process: 3 registered... (2000 0 826 826) +Process: 3 I/O blocked... (2000 0 827 827) +Process: 3 registered... (2000 0 827 827) +Process: 3 I/O blocked... (2000 0 828 828) +Process: 3 registered... (2000 0 828 828) +Process: 3 I/O blocked... (2000 0 829 829) +Process: 3 registered... (2000 0 829 829) +Process: 3 I/O blocked... (2000 0 830 830) +Process: 3 registered... (2000 0 830 830) +Process: 3 I/O blocked... (2000 0 831 831) +Process: 3 registered... (2000 0 831 831) +Process: 3 I/O blocked... (2000 0 832 832) +Process: 3 registered... (2000 0 832 832) +Process: 3 I/O blocked... (2000 0 833 833) +Process: 3 registered... (2000 0 833 833) +Process: 3 I/O blocked... (2000 0 834 834) +Process: 3 registered... (2000 0 834 834) +Process: 3 I/O blocked... (2000 0 835 835) +Process: 3 registered... (2000 0 835 835) +Process: 3 I/O blocked... (2000 0 836 836) +Process: 3 registered... (2000 0 836 836) +Process: 3 I/O blocked... (2000 0 837 837) +Process: 3 registered... (2000 0 837 837) +Process: 3 I/O blocked... (2000 0 838 838) +Process: 3 registered... (2000 0 838 838) +Process: 3 I/O blocked... (2000 0 839 839) +Process: 3 registered... (2000 0 839 839) +Process: 3 I/O blocked... (2000 0 840 840) +Process: 3 registered... (2000 0 840 840) +Process: 3 I/O blocked... (2000 0 841 841) +Process: 3 registered... (2000 0 841 841) +Process: 3 I/O blocked... (2000 0 842 842) +Process: 3 registered... (2000 0 842 842) +Process: 3 I/O blocked... (2000 0 843 843) +Process: 3 registered... (2000 0 843 843) +Process: 3 I/O blocked... (2000 0 844 844) +Process: 3 registered... (2000 0 844 844) +Process: 3 I/O blocked... (2000 0 845 845) +Process: 3 registered... (2000 0 845 845) +Process: 3 I/O blocked... (2000 0 846 846) +Process: 3 registered... (2000 0 846 846) +Process: 3 I/O blocked... (2000 0 847 847) +Process: 3 registered... (2000 0 847 847) +Process: 3 I/O blocked... (2000 0 848 848) +Process: 3 registered... (2000 0 848 848) +Process: 3 I/O blocked... (2000 0 849 849) +Process: 3 registered... (2000 0 849 849) +Process: 3 I/O blocked... (2000 0 850 850) +Process: 3 registered... (2000 0 850 850) +Process: 3 I/O blocked... (2000 0 851 851) +Process: 3 registered... (2000 0 851 851) +Process: 3 I/O blocked... (2000 0 852 852) +Process: 3 registered... (2000 0 852 852) +Process: 3 I/O blocked... (2000 0 853 853) +Process: 3 registered... (2000 0 853 853) +Process: 3 I/O blocked... (2000 0 854 854) +Process: 3 registered... (2000 0 854 854) +Process: 3 I/O blocked... (2000 0 855 855) +Process: 3 registered... (2000 0 855 855) +Process: 3 I/O blocked... (2000 0 856 856) +Process: 3 registered... (2000 0 856 856) +Process: 3 I/O blocked... (2000 0 857 857) +Process: 3 registered... (2000 0 857 857) +Process: 3 I/O blocked... (2000 0 858 858) +Process: 3 registered... (2000 0 858 858) +Process: 3 I/O blocked... (2000 0 859 859) +Process: 3 registered... (2000 0 859 859) +Process: 3 I/O blocked... (2000 0 860 860) +Process: 3 registered... (2000 0 860 860) +Process: 3 I/O blocked... (2000 0 861 861) +Process: 3 registered... (2000 0 861 861) +Process: 3 I/O blocked... (2000 0 862 862) +Process: 3 registered... (2000 0 862 862) +Process: 3 I/O blocked... (2000 0 863 863) +Process: 3 registered... (2000 0 863 863) +Process: 3 I/O blocked... (2000 0 864 864) +Process: 3 registered... (2000 0 864 864) +Process: 3 I/O blocked... (2000 0 865 865) +Process: 3 registered... (2000 0 865 865) +Process: 3 I/O blocked... (2000 0 866 866) +Process: 3 registered... (2000 0 866 866) +Process: 3 I/O blocked... (2000 0 867 867) +Process: 3 registered... (2000 0 867 867) +Process: 3 I/O blocked... (2000 0 868 868) +Process: 3 registered... (2000 0 868 868) +Process: 3 I/O blocked... (2000 0 869 869) +Process: 3 registered... (2000 0 869 869) +Process: 3 I/O blocked... (2000 0 870 870) +Process: 3 registered... (2000 0 870 870) +Process: 3 I/O blocked... (2000 0 871 871) +Process: 3 registered... (2000 0 871 871) +Process: 3 I/O blocked... (2000 0 872 872) +Process: 3 registered... (2000 0 872 872) +Process: 3 I/O blocked... (2000 0 873 873) +Process: 3 registered... (2000 0 873 873) +Process: 3 I/O blocked... (2000 0 874 874) +Process: 3 registered... (2000 0 874 874) +Process: 3 I/O blocked... (2000 0 875 875) +Process: 3 registered... (2000 0 875 875) +Process: 3 I/O blocked... (2000 0 876 876) +Process: 3 registered... (2000 0 876 876) +Process: 3 I/O blocked... (2000 0 877 877) +Process: 3 registered... (2000 0 877 877) +Process: 3 I/O blocked... (2000 0 878 878) +Process: 3 registered... (2000 0 878 878) +Process: 3 I/O blocked... (2000 0 879 879) +Process: 3 registered... (2000 0 879 879) +Process: 3 I/O blocked... (2000 0 880 880) +Process: 3 registered... (2000 0 880 880) +Process: 3 I/O blocked... (2000 0 881 881) +Process: 3 registered... (2000 0 881 881) +Process: 3 I/O blocked... (2000 0 882 882) +Process: 3 registered... (2000 0 882 882) +Process: 3 I/O blocked... (2000 0 883 883) +Process: 3 registered... (2000 0 883 883) +Process: 3 I/O blocked... (2000 0 884 884) +Process: 3 registered... (2000 0 884 884) +Process: 3 I/O blocked... (2000 0 885 885) +Process: 3 registered... (2000 0 885 885) +Process: 3 I/O blocked... (2000 0 886 886) +Process: 3 registered... (2000 0 886 886) +Process: 3 I/O blocked... (2000 0 887 887) +Process: 3 registered... (2000 0 887 887) +Process: 3 I/O blocked... (2000 0 888 888) +Process: 3 registered... (2000 0 888 888) +Process: 3 I/O blocked... (2000 0 889 889) +Process: 3 registered... (2000 0 889 889) +Process: 3 I/O blocked... (2000 0 890 890) +Process: 3 registered... (2000 0 890 890) +Process: 3 I/O blocked... (2000 0 891 891) +Process: 3 registered... (2000 0 891 891) +Process: 3 I/O blocked... (2000 0 892 892) +Process: 3 registered... (2000 0 892 892) +Process: 3 I/O blocked... (2000 0 893 893) +Process: 3 registered... (2000 0 893 893) +Process: 3 I/O blocked... (2000 0 894 894) +Process: 3 registered... (2000 0 894 894) +Process: 3 I/O blocked... (2000 0 895 895) +Process: 3 registered... (2000 0 895 895) +Process: 3 I/O blocked... (2000 0 896 896) +Process: 3 registered... (2000 0 896 896) +Process: 3 I/O blocked... (2000 0 897 897) +Process: 3 registered... (2000 0 897 897) +Process: 3 I/O blocked... (2000 0 898 898) +Process: 3 registered... (2000 0 898 898) +Process: 3 I/O blocked... (2000 0 899 899) +Process: 3 registered... (2000 0 899 899) +Process: 3 I/O blocked... (2000 0 900 900) +Process: 3 registered... (2000 0 900 900) +Process: 3 I/O blocked... (2000 0 901 901) +Process: 3 registered... (2000 0 901 901) +Process: 3 I/O blocked... (2000 0 902 902) +Process: 3 registered... (2000 0 902 902) +Process: 3 I/O blocked... (2000 0 903 903) +Process: 3 registered... (2000 0 903 903) +Process: 3 I/O blocked... (2000 0 904 904) +Process: 3 registered... (2000 0 904 904) +Process: 3 I/O blocked... (2000 0 905 905) +Process: 3 registered... (2000 0 905 905) +Process: 3 I/O blocked... (2000 0 906 906) +Process: 3 registered... (2000 0 906 906) +Process: 3 I/O blocked... (2000 0 907 907) +Process: 3 registered... (2000 0 907 907) +Process: 3 I/O blocked... (2000 0 908 908) +Process: 3 registered... (2000 0 908 908) +Process: 3 I/O blocked... (2000 0 909 909) +Process: 3 registered... (2000 0 909 909) +Process: 3 I/O blocked... (2000 0 910 910) +Process: 3 registered... (2000 0 910 910) +Process: 3 I/O blocked... (2000 0 911 911) +Process: 3 registered... (2000 0 911 911) +Process: 3 I/O blocked... (2000 0 912 912) +Process: 3 registered... (2000 0 912 912) +Process: 3 I/O blocked... (2000 0 913 913) +Process: 3 registered... (2000 0 913 913) +Process: 3 I/O blocked... (2000 0 914 914) +Process: 3 registered... (2000 0 914 914) +Process: 3 I/O blocked... (2000 0 915 915) +Process: 3 registered... (2000 0 915 915) +Process: 3 I/O blocked... (2000 0 916 916) +Process: 3 registered... (2000 0 916 916) +Process: 3 I/O blocked... (2000 0 917 917) +Process: 3 registered... (2000 0 917 917) +Process: 3 I/O blocked... (2000 0 918 918) +Process: 3 registered... (2000 0 918 918) +Process: 3 I/O blocked... (2000 0 919 919) +Process: 3 registered... (2000 0 919 919) +Process: 3 I/O blocked... (2000 0 920 920) +Process: 3 registered... (2000 0 920 920) +Process: 3 I/O blocked... (2000 0 921 921) +Process: 3 registered... (2000 0 921 921) +Process: 3 I/O blocked... (2000 0 922 922) +Process: 3 registered... (2000 0 922 922) +Process: 3 I/O blocked... (2000 0 923 923) +Process: 3 registered... (2000 0 923 923) +Process: 3 I/O blocked... (2000 0 924 924) +Process: 3 registered... (2000 0 924 924) +Process: 3 I/O blocked... (2000 0 925 925) +Process: 3 registered... (2000 0 925 925) +Process: 3 I/O blocked... (2000 0 926 926) +Process: 3 registered... (2000 0 926 926) +Process: 3 I/O blocked... (2000 0 927 927) +Process: 3 registered... (2000 0 927 927) +Process: 3 I/O blocked... (2000 0 928 928) +Process: 3 registered... (2000 0 928 928) +Process: 3 I/O blocked... (2000 0 929 929) +Process: 3 registered... (2000 0 929 929) +Process: 3 I/O blocked... (2000 0 930 930) +Process: 3 registered... (2000 0 930 930) +Process: 3 I/O blocked... (2000 0 931 931) +Process: 3 registered... (2000 0 931 931) +Process: 3 I/O blocked... (2000 0 932 932) +Process: 3 registered... (2000 0 932 932) +Process: 3 I/O blocked... (2000 0 933 933) +Process: 3 registered... (2000 0 933 933) +Process: 3 I/O blocked... (2000 0 934 934) +Process: 3 registered... (2000 0 934 934) +Process: 3 I/O blocked... (2000 0 935 935) +Process: 3 registered... (2000 0 935 935) +Process: 3 I/O blocked... (2000 0 936 936) +Process: 3 registered... (2000 0 936 936) +Process: 3 I/O blocked... (2000 0 937 937) +Process: 3 registered... (2000 0 937 937) +Process: 3 I/O blocked... (2000 0 938 938) +Process: 3 registered... (2000 0 938 938) +Process: 3 I/O blocked... (2000 0 939 939) +Process: 3 registered... (2000 0 939 939) +Process: 3 I/O blocked... (2000 0 940 940) +Process: 3 registered... (2000 0 940 940) +Process: 3 I/O blocked... (2000 0 941 941) +Process: 3 registered... (2000 0 941 941) +Process: 3 I/O blocked... (2000 0 942 942) +Process: 3 registered... (2000 0 942 942) +Process: 3 I/O blocked... (2000 0 943 943) +Process: 3 registered... (2000 0 943 943) +Process: 3 I/O blocked... (2000 0 944 944) +Process: 3 registered... (2000 0 944 944) +Process: 3 I/O blocked... (2000 0 945 945) +Process: 3 registered... (2000 0 945 945) +Process: 3 I/O blocked... (2000 0 946 946) +Process: 3 registered... (2000 0 946 946) +Process: 3 I/O blocked... (2000 0 947 947) +Process: 3 registered... (2000 0 947 947) +Process: 3 I/O blocked... (2000 0 948 948) +Process: 3 registered... (2000 0 948 948) +Process: 3 I/O blocked... (2000 0 949 949) +Process: 3 registered... (2000 0 949 949) +Process: 3 I/O blocked... (2000 0 950 950) +Process: 3 registered... (2000 0 950 950) +Process: 3 I/O blocked... (2000 0 951 951) +Process: 3 registered... (2000 0 951 951) +Process: 3 I/O blocked... (2000 0 952 952) +Process: 3 registered... (2000 0 952 952) +Process: 3 I/O blocked... (2000 0 953 953) +Process: 3 registered... (2000 0 953 953) +Process: 3 I/O blocked... (2000 0 954 954) +Process: 3 registered... (2000 0 954 954) +Process: 3 I/O blocked... (2000 0 955 955) +Process: 3 registered... (2000 0 955 955) +Process: 3 I/O blocked... (2000 0 956 956) +Process: 3 registered... (2000 0 956 956) +Process: 3 I/O blocked... (2000 0 957 957) +Process: 3 registered... (2000 0 957 957) +Process: 3 I/O blocked... (2000 0 958 958) +Process: 3 registered... (2000 0 958 958) +Process: 3 I/O blocked... (2000 0 959 959) +Process: 3 registered... (2000 0 959 959) +Process: 3 I/O blocked... (2000 0 960 960) +Process: 3 registered... (2000 0 960 960) +Process: 3 I/O blocked... (2000 0 961 961) +Process: 3 registered... (2000 0 961 961) +Process: 3 I/O blocked... (2000 0 962 962) +Process: 3 registered... (2000 0 962 962) +Process: 3 I/O blocked... (2000 0 963 963) +Process: 3 registered... (2000 0 963 963) +Process: 3 I/O blocked... (2000 0 964 964) +Process: 3 registered... (2000 0 964 964) +Process: 3 I/O blocked... (2000 0 965 965) +Process: 3 registered... (2000 0 965 965) +Process: 3 I/O blocked... (2000 0 966 966) +Process: 3 registered... (2000 0 966 966) +Process: 3 I/O blocked... (2000 0 967 967) +Process: 3 registered... (2000 0 967 967) +Process: 3 I/O blocked... (2000 0 968 968) +Process: 3 registered... (2000 0 968 968) +Process: 3 I/O blocked... (2000 0 969 969) +Process: 3 registered... (2000 0 969 969) +Process: 3 I/O blocked... (2000 0 970 970) +Process: 3 registered... (2000 0 970 970) +Process: 3 I/O blocked... (2000 0 971 971) +Process: 3 registered... (2000 0 971 971) +Process: 3 I/O blocked... (2000 0 972 972) +Process: 3 registered... (2000 0 972 972) +Process: 3 I/O blocked... (2000 0 973 973) +Process: 3 registered... (2000 0 973 973) +Process: 3 I/O blocked... (2000 0 974 974) +Process: 3 registered... (2000 0 974 974) +Process: 3 I/O blocked... (2000 0 975 975) +Process: 3 registered... (2000 0 975 975) +Process: 3 I/O blocked... (2000 0 976 976) +Process: 3 registered... (2000 0 976 976) +Process: 3 I/O blocked... (2000 0 977 977) +Process: 3 registered... (2000 0 977 977) +Process: 3 I/O blocked... (2000 0 978 978) +Process: 3 registered... (2000 0 978 978) +Process: 3 I/O blocked... (2000 0 979 979) +Process: 3 registered... (2000 0 979 979) +Process: 3 I/O blocked... (2000 0 980 980) +Process: 3 registered... (2000 0 980 980) +Process: 3 I/O blocked... (2000 0 981 981) +Process: 3 registered... (2000 0 981 981) +Process: 3 I/O blocked... (2000 0 982 982) +Process: 3 registered... (2000 0 982 982) +Process: 3 I/O blocked... (2000 0 983 983) +Process: 3 registered... (2000 0 983 983) +Process: 3 I/O blocked... (2000 0 984 984) +Process: 3 registered... (2000 0 984 984) +Process: 3 I/O blocked... (2000 0 985 985) +Process: 3 registered... (2000 0 985 985) +Process: 3 I/O blocked... (2000 0 986 986) +Process: 3 registered... (2000 0 986 986) +Process: 3 I/O blocked... (2000 0 987 987) +Process: 3 registered... (2000 0 987 987) +Process: 3 I/O blocked... (2000 0 988 988) +Process: 3 registered... (2000 0 988 988) +Process: 3 I/O blocked... (2000 0 989 989) +Process: 3 registered... (2000 0 989 989) +Process: 3 I/O blocked... (2000 0 990 990) +Process: 3 registered... (2000 0 990 990) +Process: 3 I/O blocked... (2000 0 991 991) +Process: 3 registered... (2000 0 991 991) +Process: 3 I/O blocked... (2000 0 992 992) +Process: 3 registered... (2000 0 992 992) +Process: 3 I/O blocked... (2000 0 993 993) +Process: 3 registered... (2000 0 993 993) +Process: 3 I/O blocked... (2000 0 994 994) +Process: 3 registered... (2000 0 994 994) +Process: 3 I/O blocked... (2000 0 995 995) +Process: 3 registered... (2000 0 995 995) +Process: 3 I/O blocked... (2000 0 996 996) +Process: 3 registered... (2000 0 996 996) +Process: 3 I/O blocked... (2000 0 997 997) +Process: 3 registered... (2000 0 997 997) +Process: 3 I/O blocked... (2000 0 998 998) +Process: 3 registered... (2000 0 998 998) +Process: 3 I/O blocked... (2000 0 999 999) +Process: 3 registered... (2000 0 999 999) +Process: 3 I/O blocked... (2000 0 1000 1000) +Process: 3 registered... (2000 0 1000 1000) +Process: 3 I/O blocked... (2000 0 1001 1001) +Process: 3 registered... (2000 0 1001 1001) +Process: 3 I/O blocked... (2000 0 1002 1002) +Process: 3 registered... (2000 0 1002 1002) +Process: 3 I/O blocked... (2000 0 1003 1003) +Process: 3 registered... (2000 0 1003 1003) +Process: 3 I/O blocked... (2000 0 1004 1004) +Process: 3 registered... (2000 0 1004 1004) +Process: 3 I/O blocked... (2000 0 1005 1005) +Process: 3 registered... (2000 0 1005 1005) +Process: 3 I/O blocked... (2000 0 1006 1006) +Process: 3 registered... (2000 0 1006 1006) +Process: 3 I/O blocked... (2000 0 1007 1007) +Process: 3 registered... (2000 0 1007 1007) +Process: 3 I/O blocked... (2000 0 1008 1008) +Process: 3 registered... (2000 0 1008 1008) +Process: 3 I/O blocked... (2000 0 1009 1009) +Process: 3 registered... (2000 0 1009 1009) +Process: 3 I/O blocked... (2000 0 1010 1010) +Process: 3 registered... (2000 0 1010 1010) +Process: 3 I/O blocked... (2000 0 1011 1011) +Process: 3 registered... (2000 0 1011 1011) +Process: 3 I/O blocked... (2000 0 1012 1012) +Process: 3 registered... (2000 0 1012 1012) +Process: 3 I/O blocked... (2000 0 1013 1013) +Process: 3 registered... (2000 0 1013 1013) +Process: 3 I/O blocked... (2000 0 1014 1014) +Process: 3 registered... (2000 0 1014 1014) +Process: 3 I/O blocked... (2000 0 1015 1015) +Process: 3 registered... (2000 0 1015 1015) +Process: 3 I/O blocked... (2000 0 1016 1016) +Process: 3 registered... (2000 0 1016 1016) +Process: 3 I/O blocked... (2000 0 1017 1017) +Process: 3 registered... (2000 0 1017 1017) +Process: 3 I/O blocked... (2000 0 1018 1018) +Process: 3 registered... (2000 0 1018 1018) +Process: 3 I/O blocked... (2000 0 1019 1019) +Process: 3 registered... (2000 0 1019 1019) +Process: 3 I/O blocked... (2000 0 1020 1020) +Process: 3 registered... (2000 0 1020 1020) +Process: 3 I/O blocked... (2000 0 1021 1021) +Process: 3 registered... (2000 0 1021 1021) +Process: 3 I/O blocked... (2000 0 1022 1022) +Process: 3 registered... (2000 0 1022 1022) +Process: 3 I/O blocked... (2000 0 1023 1023) +Process: 3 registered... (2000 0 1023 1023) +Process: 3 I/O blocked... (2000 0 1024 1024) +Process: 3 registered... (2000 0 1024 1024) +Process: 3 I/O blocked... (2000 0 1025 1025) +Process: 3 registered... (2000 0 1025 1025) +Process: 3 I/O blocked... (2000 0 1026 1026) +Process: 3 registered... (2000 0 1026 1026) +Process: 3 I/O blocked... (2000 0 1027 1027) +Process: 3 registered... (2000 0 1027 1027) +Process: 3 I/O blocked... (2000 0 1028 1028) +Process: 3 registered... (2000 0 1028 1028) +Process: 3 I/O blocked... (2000 0 1029 1029) +Process: 3 registered... (2000 0 1029 1029) +Process: 3 I/O blocked... (2000 0 1030 1030) +Process: 3 registered... (2000 0 1030 1030) +Process: 3 I/O blocked... (2000 0 1031 1031) +Process: 3 registered... (2000 0 1031 1031) +Process: 3 I/O blocked... (2000 0 1032 1032) +Process: 3 registered... (2000 0 1032 1032) +Process: 3 I/O blocked... (2000 0 1033 1033) +Process: 3 registered... (2000 0 1033 1033) +Process: 3 I/O blocked... (2000 0 1034 1034) +Process: 3 registered... (2000 0 1034 1034) +Process: 3 I/O blocked... (2000 0 1035 1035) +Process: 3 registered... (2000 0 1035 1035) +Process: 3 I/O blocked... (2000 0 1036 1036) +Process: 3 registered... (2000 0 1036 1036) +Process: 3 I/O blocked... (2000 0 1037 1037) +Process: 3 registered... (2000 0 1037 1037) +Process: 3 I/O blocked... (2000 0 1038 1038) +Process: 3 registered... (2000 0 1038 1038) +Process: 3 I/O blocked... (2000 0 1039 1039) +Process: 3 registered... (2000 0 1039 1039) +Process: 3 I/O blocked... (2000 0 1040 1040) +Process: 3 registered... (2000 0 1040 1040) +Process: 3 I/O blocked... (2000 0 1041 1041) +Process: 3 registered... (2000 0 1041 1041) +Process: 3 I/O blocked... (2000 0 1042 1042) +Process: 3 registered... (2000 0 1042 1042) +Process: 3 I/O blocked... (2000 0 1043 1043) +Process: 3 registered... (2000 0 1043 1043) +Process: 3 I/O blocked... (2000 0 1044 1044) +Process: 3 registered... (2000 0 1044 1044) +Process: 3 I/O blocked... (2000 0 1045 1045) +Process: 3 registered... (2000 0 1045 1045) +Process: 3 I/O blocked... (2000 0 1046 1046) +Process: 3 registered... (2000 0 1046 1046) +Process: 3 I/O blocked... (2000 0 1047 1047) +Process: 3 registered... (2000 0 1047 1047) +Process: 3 I/O blocked... (2000 0 1048 1048) +Process: 3 registered... (2000 0 1048 1048) +Process: 3 I/O blocked... (2000 0 1049 1049) +Process: 3 registered... (2000 0 1049 1049) +Process: 3 I/O blocked... (2000 0 1050 1050) +Process: 3 registered... (2000 0 1050 1050) +Process: 3 I/O blocked... (2000 0 1051 1051) +Process: 3 registered... (2000 0 1051 1051) +Process: 3 I/O blocked... (2000 0 1052 1052) +Process: 3 registered... (2000 0 1052 1052) +Process: 3 I/O blocked... (2000 0 1053 1053) +Process: 3 registered... (2000 0 1053 1053) +Process: 3 I/O blocked... (2000 0 1054 1054) +Process: 3 registered... (2000 0 1054 1054) +Process: 3 I/O blocked... (2000 0 1055 1055) +Process: 3 registered... (2000 0 1055 1055) +Process: 3 I/O blocked... (2000 0 1056 1056) +Process: 3 registered... (2000 0 1056 1056) +Process: 3 I/O blocked... (2000 0 1057 1057) +Process: 3 registered... (2000 0 1057 1057) +Process: 3 I/O blocked... (2000 0 1058 1058) +Process: 3 registered... (2000 0 1058 1058) +Process: 3 I/O blocked... (2000 0 1059 1059) +Process: 3 registered... (2000 0 1059 1059) +Process: 3 I/O blocked... (2000 0 1060 1060) +Process: 3 registered... (2000 0 1060 1060) +Process: 3 I/O blocked... (2000 0 1061 1061) +Process: 3 registered... (2000 0 1061 1061) +Process: 3 I/O blocked... (2000 0 1062 1062) +Process: 3 registered... (2000 0 1062 1062) +Process: 3 I/O blocked... (2000 0 1063 1063) +Process: 3 registered... (2000 0 1063 1063) +Process: 3 I/O blocked... (2000 0 1064 1064) +Process: 3 registered... (2000 0 1064 1064) +Process: 3 I/O blocked... (2000 0 1065 1065) +Process: 3 registered... (2000 0 1065 1065) +Process: 3 I/O blocked... (2000 0 1066 1066) +Process: 3 registered... (2000 0 1066 1066) +Process: 3 I/O blocked... (2000 0 1067 1067) +Process: 3 registered... (2000 0 1067 1067) +Process: 3 I/O blocked... (2000 0 1068 1068) +Process: 3 registered... (2000 0 1068 1068) +Process: 3 I/O blocked... (2000 0 1069 1069) +Process: 3 registered... (2000 0 1069 1069) +Process: 3 I/O blocked... (2000 0 1070 1070) +Process: 3 registered... (2000 0 1070 1070) +Process: 3 I/O blocked... (2000 0 1071 1071) +Process: 3 registered... (2000 0 1071 1071) +Process: 3 I/O blocked... (2000 0 1072 1072) +Process: 3 registered... (2000 0 1072 1072) +Process: 3 I/O blocked... (2000 0 1073 1073) +Process: 3 registered... (2000 0 1073 1073) +Process: 3 I/O blocked... (2000 0 1074 1074) +Process: 3 registered... (2000 0 1074 1074) +Process: 3 I/O blocked... (2000 0 1075 1075) +Process: 3 registered... (2000 0 1075 1075) +Process: 3 I/O blocked... (2000 0 1076 1076) +Process: 3 registered... (2000 0 1076 1076) +Process: 3 I/O blocked... (2000 0 1077 1077) +Process: 3 registered... (2000 0 1077 1077) +Process: 3 I/O blocked... (2000 0 1078 1078) +Process: 3 registered... (2000 0 1078 1078) +Process: 3 I/O blocked... (2000 0 1079 1079) +Process: 3 registered... (2000 0 1079 1079) +Process: 3 I/O blocked... (2000 0 1080 1080) +Process: 3 registered... (2000 0 1080 1080) +Process: 3 I/O blocked... (2000 0 1081 1081) +Process: 3 registered... (2000 0 1081 1081) +Process: 3 I/O blocked... (2000 0 1082 1082) +Process: 3 registered... (2000 0 1082 1082) +Process: 3 I/O blocked... (2000 0 1083 1083) +Process: 3 registered... (2000 0 1083 1083) +Process: 3 I/O blocked... (2000 0 1084 1084) +Process: 3 registered... (2000 0 1084 1084) +Process: 3 I/O blocked... (2000 0 1085 1085) +Process: 3 registered... (2000 0 1085 1085) +Process: 3 I/O blocked... (2000 0 1086 1086) +Process: 3 registered... (2000 0 1086 1086) +Process: 3 I/O blocked... (2000 0 1087 1087) +Process: 3 registered... (2000 0 1087 1087) +Process: 3 I/O blocked... (2000 0 1088 1088) +Process: 3 registered... (2000 0 1088 1088) +Process: 3 I/O blocked... (2000 0 1089 1089) +Process: 3 registered... (2000 0 1089 1089) +Process: 3 I/O blocked... (2000 0 1090 1090) +Process: 3 registered... (2000 0 1090 1090) +Process: 3 I/O blocked... (2000 0 1091 1091) +Process: 3 registered... (2000 0 1091 1091) +Process: 3 I/O blocked... (2000 0 1092 1092) +Process: 3 registered... (2000 0 1092 1092) +Process: 3 I/O blocked... (2000 0 1093 1093) +Process: 3 registered... (2000 0 1093 1093) +Process: 3 I/O blocked... (2000 0 1094 1094) +Process: 3 registered... (2000 0 1094 1094) +Process: 3 I/O blocked... (2000 0 1095 1095) +Process: 3 registered... (2000 0 1095 1095) +Process: 3 I/O blocked... (2000 0 1096 1096) +Process: 3 registered... (2000 0 1096 1096) +Process: 3 I/O blocked... (2000 0 1097 1097) +Process: 3 registered... (2000 0 1097 1097) +Process: 3 I/O blocked... (2000 0 1098 1098) +Process: 3 registered... (2000 0 1098 1098) +Process: 3 I/O blocked... (2000 0 1099 1099) +Process: 3 registered... (2000 0 1099 1099) +Process: 3 I/O blocked... (2000 0 1100 1100) +Process: 3 registered... (2000 0 1100 1100) +Process: 3 I/O blocked... (2000 0 1101 1101) +Process: 3 registered... (2000 0 1101 1101) +Process: 3 I/O blocked... (2000 0 1102 1102) +Process: 3 registered... (2000 0 1102 1102) +Process: 3 I/O blocked... (2000 0 1103 1103) +Process: 3 registered... (2000 0 1103 1103) +Process: 3 I/O blocked... (2000 0 1104 1104) +Process: 3 registered... (2000 0 1104 1104) +Process: 3 I/O blocked... (2000 0 1105 1105) +Process: 3 registered... (2000 0 1105 1105) +Process: 3 I/O blocked... (2000 0 1106 1106) +Process: 3 registered... (2000 0 1106 1106) +Process: 3 I/O blocked... (2000 0 1107 1107) +Process: 3 registered... (2000 0 1107 1107) +Process: 3 I/O blocked... (2000 0 1108 1108) +Process: 3 registered... (2000 0 1108 1108) +Process: 3 I/O blocked... (2000 0 1109 1109) +Process: 3 registered... (2000 0 1109 1109) +Process: 3 I/O blocked... (2000 0 1110 1110) +Process: 3 registered... (2000 0 1110 1110) +Process: 3 I/O blocked... (2000 0 1111 1111) +Process: 3 registered... (2000 0 1111 1111) +Process: 3 I/O blocked... (2000 0 1112 1112) +Process: 3 registered... (2000 0 1112 1112) +Process: 3 I/O blocked... (2000 0 1113 1113) +Process: 3 registered... (2000 0 1113 1113) +Process: 3 I/O blocked... (2000 0 1114 1114) +Process: 3 registered... (2000 0 1114 1114) +Process: 3 I/O blocked... (2000 0 1115 1115) +Process: 3 registered... (2000 0 1115 1115) +Process: 3 I/O blocked... (2000 0 1116 1116) +Process: 3 registered... (2000 0 1116 1116) +Process: 3 I/O blocked... (2000 0 1117 1117) +Process: 3 registered... (2000 0 1117 1117) +Process: 3 I/O blocked... (2000 0 1118 1118) +Process: 3 registered... (2000 0 1118 1118) +Process: 3 I/O blocked... (2000 0 1119 1119) +Process: 3 registered... (2000 0 1119 1119) +Process: 3 I/O blocked... (2000 0 1120 1120) +Process: 3 registered... (2000 0 1120 1120) +Process: 3 I/O blocked... (2000 0 1121 1121) +Process: 3 registered... (2000 0 1121 1121) +Process: 3 I/O blocked... (2000 0 1122 1122) +Process: 3 registered... (2000 0 1122 1122) +Process: 3 I/O blocked... (2000 0 1123 1123) +Process: 3 registered... (2000 0 1123 1123) +Process: 3 I/O blocked... (2000 0 1124 1124) +Process: 3 registered... (2000 0 1124 1124) +Process: 3 I/O blocked... (2000 0 1125 1125) +Process: 3 registered... (2000 0 1125 1125) +Process: 3 I/O blocked... (2000 0 1126 1126) +Process: 3 registered... (2000 0 1126 1126) +Process: 3 I/O blocked... (2000 0 1127 1127) +Process: 3 registered... (2000 0 1127 1127) +Process: 3 I/O blocked... (2000 0 1128 1128) +Process: 3 registered... (2000 0 1128 1128) +Process: 3 I/O blocked... (2000 0 1129 1129) +Process: 3 registered... (2000 0 1129 1129) +Process: 3 I/O blocked... (2000 0 1130 1130) +Process: 3 registered... (2000 0 1130 1130) +Process: 3 I/O blocked... (2000 0 1131 1131) +Process: 3 registered... (2000 0 1131 1131) +Process: 3 I/O blocked... (2000 0 1132 1132) +Process: 3 registered... (2000 0 1132 1132) +Process: 3 I/O blocked... (2000 0 1133 1133) +Process: 3 registered... (2000 0 1133 1133) +Process: 3 I/O blocked... (2000 0 1134 1134) +Process: 3 registered... (2000 0 1134 1134) +Process: 3 I/O blocked... (2000 0 1135 1135) +Process: 3 registered... (2000 0 1135 1135) +Process: 3 I/O blocked... (2000 0 1136 1136) +Process: 3 registered... (2000 0 1136 1136) +Process: 3 I/O blocked... (2000 0 1137 1137) +Process: 3 registered... (2000 0 1137 1137) +Process: 3 I/O blocked... (2000 0 1138 1138) +Process: 3 registered... (2000 0 1138 1138) +Process: 3 I/O blocked... (2000 0 1139 1139) +Process: 3 registered... (2000 0 1139 1139) +Process: 3 I/O blocked... (2000 0 1140 1140) +Process: 3 registered... (2000 0 1140 1140) +Process: 3 I/O blocked... (2000 0 1141 1141) +Process: 3 registered... (2000 0 1141 1141) +Process: 3 I/O blocked... (2000 0 1142 1142) +Process: 3 registered... (2000 0 1142 1142) +Process: 3 I/O blocked... (2000 0 1143 1143) +Process: 3 registered... (2000 0 1143 1143) +Process: 3 I/O blocked... (2000 0 1144 1144) +Process: 3 registered... (2000 0 1144 1144) +Process: 3 I/O blocked... (2000 0 1145 1145) +Process: 3 registered... (2000 0 1145 1145) +Process: 3 I/O blocked... (2000 0 1146 1146) +Process: 3 registered... (2000 0 1146 1146) +Process: 3 I/O blocked... (2000 0 1147 1147) +Process: 3 registered... (2000 0 1147 1147) +Process: 3 I/O blocked... (2000 0 1148 1148) +Process: 3 registered... (2000 0 1148 1148) +Process: 3 I/O blocked... (2000 0 1149 1149) +Process: 3 registered... (2000 0 1149 1149) +Process: 3 I/O blocked... (2000 0 1150 1150) +Process: 3 registered... (2000 0 1150 1150) +Process: 3 I/O blocked... (2000 0 1151 1151) +Process: 3 registered... (2000 0 1151 1151) +Process: 3 I/O blocked... (2000 0 1152 1152) +Process: 3 registered... (2000 0 1152 1152) +Process: 3 I/O blocked... (2000 0 1153 1153) +Process: 3 registered... (2000 0 1153 1153) +Process: 3 I/O blocked... (2000 0 1154 1154) +Process: 3 registered... (2000 0 1154 1154) +Process: 3 I/O blocked... (2000 0 1155 1155) +Process: 3 registered... (2000 0 1155 1155) +Process: 3 I/O blocked... (2000 0 1156 1156) +Process: 3 registered... (2000 0 1156 1156) +Process: 3 I/O blocked... (2000 0 1157 1157) +Process: 3 registered... (2000 0 1157 1157) +Process: 3 I/O blocked... (2000 0 1158 1158) +Process: 3 registered... (2000 0 1158 1158) +Process: 3 I/O blocked... (2000 0 1159 1159) +Process: 3 registered... (2000 0 1159 1159) +Process: 3 I/O blocked... (2000 0 1160 1160) +Process: 3 registered... (2000 0 1160 1160) +Process: 3 I/O blocked... (2000 0 1161 1161) +Process: 3 registered... (2000 0 1161 1161) +Process: 3 I/O blocked... (2000 0 1162 1162) +Process: 3 registered... (2000 0 1162 1162) +Process: 3 I/O blocked... (2000 0 1163 1163) +Process: 3 registered... (2000 0 1163 1163) +Process: 3 I/O blocked... (2000 0 1164 1164) +Process: 3 registered... (2000 0 1164 1164) +Process: 3 I/O blocked... (2000 0 1165 1165) +Process: 3 registered... (2000 0 1165 1165) +Process: 3 I/O blocked... (2000 0 1166 1166) +Process: 3 registered... (2000 0 1166 1166) +Process: 3 I/O blocked... (2000 0 1167 1167) +Process: 3 registered... (2000 0 1167 1167) +Process: 3 I/O blocked... (2000 0 1168 1168) +Process: 3 registered... (2000 0 1168 1168) +Process: 3 I/O blocked... (2000 0 1169 1169) +Process: 3 registered... (2000 0 1169 1169) +Process: 3 I/O blocked... (2000 0 1170 1170) +Process: 3 registered... (2000 0 1170 1170) +Process: 3 I/O blocked... (2000 0 1171 1171) +Process: 3 registered... (2000 0 1171 1171) +Process: 3 I/O blocked... (2000 0 1172 1172) +Process: 3 registered... (2000 0 1172 1172) +Process: 3 I/O blocked... (2000 0 1173 1173) +Process: 3 registered... (2000 0 1173 1173) +Process: 3 I/O blocked... (2000 0 1174 1174) +Process: 3 registered... (2000 0 1174 1174) +Process: 3 I/O blocked... (2000 0 1175 1175) +Process: 3 registered... (2000 0 1175 1175) +Process: 3 I/O blocked... (2000 0 1176 1176) +Process: 3 registered... (2000 0 1176 1176) +Process: 3 I/O blocked... (2000 0 1177 1177) +Process: 3 registered... (2000 0 1177 1177) +Process: 3 I/O blocked... (2000 0 1178 1178) +Process: 3 registered... (2000 0 1178 1178) +Process: 3 I/O blocked... (2000 0 1179 1179) +Process: 3 registered... (2000 0 1179 1179) +Process: 3 I/O blocked... (2000 0 1180 1180) +Process: 3 registered... (2000 0 1180 1180) +Process: 3 I/O blocked... (2000 0 1181 1181) +Process: 3 registered... (2000 0 1181 1181) +Process: 3 I/O blocked... (2000 0 1182 1182) +Process: 3 registered... (2000 0 1182 1182) +Process: 3 I/O blocked... (2000 0 1183 1183) +Process: 3 registered... (2000 0 1183 1183) +Process: 3 I/O blocked... (2000 0 1184 1184) +Process: 3 registered... (2000 0 1184 1184) +Process: 3 I/O blocked... (2000 0 1185 1185) +Process: 3 registered... (2000 0 1185 1185) +Process: 3 I/O blocked... (2000 0 1186 1186) +Process: 3 registered... (2000 0 1186 1186) +Process: 3 I/O blocked... (2000 0 1187 1187) +Process: 3 registered... (2000 0 1187 1187) +Process: 3 I/O blocked... (2000 0 1188 1188) +Process: 3 registered... (2000 0 1188 1188) +Process: 3 I/O blocked... (2000 0 1189 1189) +Process: 3 registered... (2000 0 1189 1189) +Process: 3 I/O blocked... (2000 0 1190 1190) +Process: 3 registered... (2000 0 1190 1190) +Process: 3 I/O blocked... (2000 0 1191 1191) +Process: 3 registered... (2000 0 1191 1191) +Process: 3 I/O blocked... (2000 0 1192 1192) +Process: 3 registered... (2000 0 1192 1192) +Process: 3 I/O blocked... (2000 0 1193 1193) +Process: 3 registered... (2000 0 1193 1193) +Process: 3 I/O blocked... (2000 0 1194 1194) +Process: 3 registered... (2000 0 1194 1194) +Process: 3 I/O blocked... (2000 0 1195 1195) +Process: 3 registered... (2000 0 1195 1195) +Process: 3 I/O blocked... (2000 0 1196 1196) +Process: 3 registered... (2000 0 1196 1196) +Process: 3 I/O blocked... (2000 0 1197 1197) +Process: 3 registered... (2000 0 1197 1197) +Process: 3 I/O blocked... (2000 0 1198 1198) +Process: 3 registered... (2000 0 1198 1198) +Process: 3 I/O blocked... (2000 0 1199 1199) +Process: 3 registered... (2000 0 1199 1199) +Process: 3 I/O blocked... (2000 0 1200 1200) +Process: 3 registered... (2000 0 1200 1200) +Process: 3 I/O blocked... (2000 0 1201 1201) +Process: 3 registered... (2000 0 1201 1201) +Process: 3 I/O blocked... (2000 0 1202 1202) +Process: 3 registered... (2000 0 1202 1202) +Process: 3 I/O blocked... (2000 0 1203 1203) +Process: 3 registered... (2000 0 1203 1203) +Process: 3 I/O blocked... (2000 0 1204 1204) +Process: 3 registered... (2000 0 1204 1204) +Process: 3 I/O blocked... (2000 0 1205 1205) +Process: 3 registered... (2000 0 1205 1205) +Process: 3 I/O blocked... (2000 0 1206 1206) +Process: 3 registered... (2000 0 1206 1206) +Process: 3 I/O blocked... (2000 0 1207 1207) +Process: 3 registered... (2000 0 1207 1207) +Process: 3 I/O blocked... (2000 0 1208 1208) +Process: 3 registered... (2000 0 1208 1208) +Process: 3 I/O blocked... (2000 0 1209 1209) +Process: 3 registered... (2000 0 1209 1209) +Process: 3 I/O blocked... (2000 0 1210 1210) +Process: 3 registered... (2000 0 1210 1210) +Process: 3 I/O blocked... (2000 0 1211 1211) +Process: 3 registered... (2000 0 1211 1211) +Process: 3 I/O blocked... (2000 0 1212 1212) +Process: 3 registered... (2000 0 1212 1212) +Process: 3 I/O blocked... (2000 0 1213 1213) +Process: 3 registered... (2000 0 1213 1213) +Process: 3 I/O blocked... (2000 0 1214 1214) +Process: 3 registered... (2000 0 1214 1214) +Process: 3 I/O blocked... (2000 0 1215 1215) +Process: 3 registered... (2000 0 1215 1215) +Process: 3 I/O blocked... (2000 0 1216 1216) +Process: 3 registered... (2000 0 1216 1216) +Process: 3 I/O blocked... (2000 0 1217 1217) +Process: 3 registered... (2000 0 1217 1217) +Process: 3 I/O blocked... (2000 0 1218 1218) +Process: 3 registered... (2000 0 1218 1218) +Process: 3 I/O blocked... (2000 0 1219 1219) +Process: 3 registered... (2000 0 1219 1219) +Process: 3 I/O blocked... (2000 0 1220 1220) +Process: 3 registered... (2000 0 1220 1220) +Process: 3 I/O blocked... (2000 0 1221 1221) +Process: 3 registered... (2000 0 1221 1221) +Process: 3 I/O blocked... (2000 0 1222 1222) +Process: 3 registered... (2000 0 1222 1222) +Process: 3 I/O blocked... (2000 0 1223 1223) +Process: 3 registered... (2000 0 1223 1223) +Process: 3 I/O blocked... (2000 0 1224 1224) +Process: 3 registered... (2000 0 1224 1224) +Process: 3 I/O blocked... (2000 0 1225 1225) +Process: 3 registered... (2000 0 1225 1225) +Process: 3 I/O blocked... (2000 0 1226 1226) +Process: 3 registered... (2000 0 1226 1226) +Process: 3 I/O blocked... (2000 0 1227 1227) +Process: 3 registered... (2000 0 1227 1227) +Process: 3 I/O blocked... (2000 0 1228 1228) +Process: 3 registered... (2000 0 1228 1228) +Process: 3 I/O blocked... (2000 0 1229 1229) +Process: 3 registered... (2000 0 1229 1229) +Process: 3 I/O blocked... (2000 0 1230 1230) +Process: 3 registered... (2000 0 1230 1230) +Process: 3 I/O blocked... (2000 0 1231 1231) +Process: 3 registered... (2000 0 1231 1231) +Process: 3 I/O blocked... (2000 0 1232 1232) +Process: 3 registered... (2000 0 1232 1232) +Process: 3 I/O blocked... (2000 0 1233 1233) +Process: 3 registered... (2000 0 1233 1233) +Process: 3 I/O blocked... (2000 0 1234 1234) +Process: 3 registered... (2000 0 1234 1234) +Process: 3 I/O blocked... (2000 0 1235 1235) +Process: 3 registered... (2000 0 1235 1235) +Process: 3 I/O blocked... (2000 0 1236 1236) +Process: 3 registered... (2000 0 1236 1236) +Process: 3 I/O blocked... (2000 0 1237 1237) +Process: 3 registered... (2000 0 1237 1237) +Process: 3 I/O blocked... (2000 0 1238 1238) +Process: 3 registered... (2000 0 1238 1238) +Process: 3 I/O blocked... (2000 0 1239 1239) +Process: 3 registered... (2000 0 1239 1239) +Process: 3 I/O blocked... (2000 0 1240 1240) +Process: 3 registered... (2000 0 1240 1240) +Process: 3 I/O blocked... (2000 0 1241 1241) +Process: 3 registered... (2000 0 1241 1241) +Process: 3 I/O blocked... (2000 0 1242 1242) +Process: 3 registered... (2000 0 1242 1242) +Process: 3 I/O blocked... (2000 0 1243 1243) +Process: 3 registered... (2000 0 1243 1243) +Process: 3 I/O blocked... (2000 0 1244 1244) +Process: 3 registered... (2000 0 1244 1244) +Process: 3 I/O blocked... (2000 0 1245 1245) +Process: 3 registered... (2000 0 1245 1245) +Process: 3 I/O blocked... (2000 0 1246 1246) +Process: 3 registered... (2000 0 1246 1246) +Process: 3 I/O blocked... (2000 0 1247 1247) +Process: 3 registered... (2000 0 1247 1247) +Process: 3 I/O blocked... (2000 0 1248 1248) +Process: 3 registered... (2000 0 1248 1248) +Process: 3 I/O blocked... (2000 0 1249 1249) +Process: 3 registered... (2000 0 1249 1249) +Process: 3 I/O blocked... (2000 0 1250 1250) +Process: 3 registered... (2000 0 1250 1250) +Process: 3 I/O blocked... (2000 0 1251 1251) +Process: 3 registered... (2000 0 1251 1251) +Process: 3 I/O blocked... (2000 0 1252 1252) +Process: 3 registered... (2000 0 1252 1252) +Process: 3 I/O blocked... (2000 0 1253 1253) +Process: 3 registered... (2000 0 1253 1253) +Process: 3 I/O blocked... (2000 0 1254 1254) +Process: 3 registered... (2000 0 1254 1254) +Process: 3 I/O blocked... (2000 0 1255 1255) +Process: 3 registered... (2000 0 1255 1255) +Process: 3 I/O blocked... (2000 0 1256 1256) +Process: 3 registered... (2000 0 1256 1256) +Process: 3 I/O blocked... (2000 0 1257 1257) +Process: 3 registered... (2000 0 1257 1257) +Process: 3 I/O blocked... (2000 0 1258 1258) +Process: 3 registered... (2000 0 1258 1258) +Process: 3 I/O blocked... (2000 0 1259 1259) +Process: 3 registered... (2000 0 1259 1259) +Process: 3 I/O blocked... (2000 0 1260 1260) +Process: 3 registered... (2000 0 1260 1260) +Process: 3 I/O blocked... (2000 0 1261 1261) +Process: 3 registered... (2000 0 1261 1261) +Process: 3 I/O blocked... (2000 0 1262 1262) +Process: 3 registered... (2000 0 1262 1262) +Process: 3 I/O blocked... (2000 0 1263 1263) +Process: 3 registered... (2000 0 1263 1263) +Process: 3 I/O blocked... (2000 0 1264 1264) +Process: 3 registered... (2000 0 1264 1264) +Process: 3 I/O blocked... (2000 0 1265 1265) +Process: 3 registered... (2000 0 1265 1265) +Process: 3 I/O blocked... (2000 0 1266 1266) +Process: 3 registered... (2000 0 1266 1266) +Process: 3 I/O blocked... (2000 0 1267 1267) +Process: 3 registered... (2000 0 1267 1267) +Process: 3 I/O blocked... (2000 0 1268 1268) +Process: 3 registered... (2000 0 1268 1268) +Process: 3 I/O blocked... (2000 0 1269 1269) +Process: 3 registered... (2000 0 1269 1269) +Process: 3 I/O blocked... (2000 0 1270 1270) +Process: 3 registered... (2000 0 1270 1270) +Process: 3 I/O blocked... (2000 0 1271 1271) +Process: 3 registered... (2000 0 1271 1271) +Process: 3 I/O blocked... (2000 0 1272 1272) +Process: 3 registered... (2000 0 1272 1272) +Process: 3 I/O blocked... (2000 0 1273 1273) +Process: 3 registered... (2000 0 1273 1273) +Process: 3 I/O blocked... (2000 0 1274 1274) +Process: 3 registered... (2000 0 1274 1274) +Process: 3 I/O blocked... (2000 0 1275 1275) +Process: 3 registered... (2000 0 1275 1275) +Process: 3 I/O blocked... (2000 0 1276 1276) +Process: 3 registered... (2000 0 1276 1276) +Process: 3 I/O blocked... (2000 0 1277 1277) +Process: 3 registered... (2000 0 1277 1277) +Process: 3 I/O blocked... (2000 0 1278 1278) +Process: 3 registered... (2000 0 1278 1278) +Process: 3 I/O blocked... (2000 0 1279 1279) +Process: 3 registered... (2000 0 1279 1279) +Process: 3 I/O blocked... (2000 0 1280 1280) +Process: 3 registered... (2000 0 1280 1280) +Process: 3 I/O blocked... (2000 0 1281 1281) +Process: 3 registered... (2000 0 1281 1281) +Process: 3 I/O blocked... (2000 0 1282 1282) +Process: 3 registered... (2000 0 1282 1282) +Process: 3 I/O blocked... (2000 0 1283 1283) +Process: 3 registered... (2000 0 1283 1283) +Process: 3 I/O blocked... (2000 0 1284 1284) +Process: 3 registered... (2000 0 1284 1284) +Process: 3 I/O blocked... (2000 0 1285 1285) +Process: 3 registered... (2000 0 1285 1285) +Process: 3 I/O blocked... (2000 0 1286 1286) +Process: 3 registered... (2000 0 1286 1286) +Process: 3 I/O blocked... (2000 0 1287 1287) +Process: 3 registered... (2000 0 1287 1287) +Process: 3 I/O blocked... (2000 0 1288 1288) +Process: 3 registered... (2000 0 1288 1288) +Process: 3 I/O blocked... (2000 0 1289 1289) +Process: 3 registered... (2000 0 1289 1289) +Process: 3 I/O blocked... (2000 0 1290 1290) +Process: 3 registered... (2000 0 1290 1290) +Process: 3 I/O blocked... (2000 0 1291 1291) +Process: 3 registered... (2000 0 1291 1291) +Process: 3 I/O blocked... (2000 0 1292 1292) +Process: 3 registered... (2000 0 1292 1292) +Process: 3 I/O blocked... (2000 0 1293 1293) +Process: 3 registered... (2000 0 1293 1293) +Process: 3 I/O blocked... (2000 0 1294 1294) +Process: 3 registered... (2000 0 1294 1294) +Process: 3 I/O blocked... (2000 0 1295 1295) +Process: 3 registered... (2000 0 1295 1295) +Process: 3 I/O blocked... (2000 0 1296 1296) +Process: 3 registered... (2000 0 1296 1296) +Process: 3 I/O blocked... (2000 0 1297 1297) +Process: 3 registered... (2000 0 1297 1297) +Process: 3 I/O blocked... (2000 0 1298 1298) +Process: 3 registered... (2000 0 1298 1298) +Process: 3 I/O blocked... (2000 0 1299 1299) +Process: 3 registered... (2000 0 1299 1299) +Process: 3 I/O blocked... (2000 0 1300 1300) +Process: 3 registered... (2000 0 1300 1300) +Process: 3 I/O blocked... (2000 0 1301 1301) +Process: 3 registered... (2000 0 1301 1301) +Process: 3 I/O blocked... (2000 0 1302 1302) +Process: 3 registered... (2000 0 1302 1302) +Process: 3 I/O blocked... (2000 0 1303 1303) +Process: 3 registered... (2000 0 1303 1303) +Process: 3 I/O blocked... (2000 0 1304 1304) +Process: 3 registered... (2000 0 1304 1304) +Process: 3 I/O blocked... (2000 0 1305 1305) +Process: 3 registered... (2000 0 1305 1305) +Process: 3 I/O blocked... (2000 0 1306 1306) +Process: 3 registered... (2000 0 1306 1306) +Process: 3 I/O blocked... (2000 0 1307 1307) +Process: 3 registered... (2000 0 1307 1307) +Process: 3 I/O blocked... (2000 0 1308 1308) +Process: 3 registered... (2000 0 1308 1308) +Process: 3 I/O blocked... (2000 0 1309 1309) +Process: 3 registered... (2000 0 1309 1309) +Process: 3 I/O blocked... (2000 0 1310 1310) +Process: 3 registered... (2000 0 1310 1310) +Process: 3 I/O blocked... (2000 0 1311 1311) +Process: 3 registered... (2000 0 1311 1311) +Process: 3 I/O blocked... (2000 0 1312 1312) +Process: 3 registered... (2000 0 1312 1312) +Process: 3 I/O blocked... (2000 0 1313 1313) +Process: 3 registered... (2000 0 1313 1313) +Process: 3 I/O blocked... (2000 0 1314 1314) +Process: 3 registered... (2000 0 1314 1314) +Process: 3 I/O blocked... (2000 0 1315 1315) +Process: 3 registered... (2000 0 1315 1315) +Process: 3 I/O blocked... (2000 0 1316 1316) +Process: 3 registered... (2000 0 1316 1316) +Process: 3 I/O blocked... (2000 0 1317 1317) +Process: 3 registered... (2000 0 1317 1317) +Process: 3 I/O blocked... (2000 0 1318 1318) +Process: 3 registered... (2000 0 1318 1318) +Process: 3 I/O blocked... (2000 0 1319 1319) +Process: 3 registered... (2000 0 1319 1319) +Process: 3 I/O blocked... (2000 0 1320 1320) +Process: 3 registered... (2000 0 1320 1320) +Process: 3 I/O blocked... (2000 0 1321 1321) +Process: 3 registered... (2000 0 1321 1321) +Process: 3 I/O blocked... (2000 0 1322 1322) +Process: 3 registered... (2000 0 1322 1322) +Process: 3 I/O blocked... (2000 0 1323 1323) +Process: 3 registered... (2000 0 1323 1323) +Process: 3 I/O blocked... (2000 0 1324 1324) +Process: 3 registered... (2000 0 1324 1324) +Process: 3 I/O blocked... (2000 0 1325 1325) +Process: 3 registered... (2000 0 1325 1325) +Process: 3 I/O blocked... (2000 0 1326 1326) +Process: 3 registered... (2000 0 1326 1326) +Process: 3 I/O blocked... (2000 0 1327 1327) +Process: 3 registered... (2000 0 1327 1327) +Process: 3 I/O blocked... (2000 0 1328 1328) +Process: 3 registered... (2000 0 1328 1328) +Process: 3 I/O blocked... (2000 0 1329 1329) +Process: 3 registered... (2000 0 1329 1329) +Process: 3 I/O blocked... (2000 0 1330 1330) +Process: 3 registered... (2000 0 1330 1330) +Process: 3 I/O blocked... (2000 0 1331 1331) +Process: 3 registered... (2000 0 1331 1331) +Process: 3 I/O blocked... (2000 0 1332 1332) +Process: 3 registered... (2000 0 1332 1332) +Process: 3 I/O blocked... (2000 0 1333 1333) +Process: 3 registered... (2000 0 1333 1333) +Process: 3 I/O blocked... (2000 0 1334 1334) +Process: 3 registered... (2000 0 1334 1334) +Process: 3 I/O blocked... (2000 0 1335 1335) +Process: 3 registered... (2000 0 1335 1335) +Process: 3 I/O blocked... (2000 0 1336 1336) +Process: 3 registered... (2000 0 1336 1336) +Process: 3 I/O blocked... (2000 0 1337 1337) +Process: 3 registered... (2000 0 1337 1337) +Process: 3 I/O blocked... (2000 0 1338 1338) +Process: 3 registered... (2000 0 1338 1338) +Process: 3 I/O blocked... (2000 0 1339 1339) +Process: 3 registered... (2000 0 1339 1339) +Process: 3 I/O blocked... (2000 0 1340 1340) +Process: 3 registered... (2000 0 1340 1340) +Process: 3 I/O blocked... (2000 0 1341 1341) +Process: 3 registered... (2000 0 1341 1341) +Process: 3 I/O blocked... (2000 0 1342 1342) +Process: 3 registered... (2000 0 1342 1342) +Process: 3 I/O blocked... (2000 0 1343 1343) +Process: 3 registered... (2000 0 1343 1343) +Process: 3 I/O blocked... (2000 0 1344 1344) +Process: 3 registered... (2000 0 1344 1344) +Process: 3 I/O blocked... (2000 0 1345 1345) +Process: 3 registered... (2000 0 1345 1345) +Process: 3 I/O blocked... (2000 0 1346 1346) +Process: 3 registered... (2000 0 1346 1346) +Process: 3 I/O blocked... (2000 0 1347 1347) +Process: 3 registered... (2000 0 1347 1347) +Process: 3 I/O blocked... (2000 0 1348 1348) +Process: 3 registered... (2000 0 1348 1348) +Process: 3 I/O blocked... (2000 0 1349 1349) +Process: 3 registered... (2000 0 1349 1349) +Process: 3 I/O blocked... (2000 0 1350 1350) +Process: 3 registered... (2000 0 1350 1350) +Process: 3 I/O blocked... (2000 0 1351 1351) +Process: 3 registered... (2000 0 1351 1351) +Process: 3 I/O blocked... (2000 0 1352 1352) +Process: 3 registered... (2000 0 1352 1352) +Process: 3 I/O blocked... (2000 0 1353 1353) +Process: 3 registered... (2000 0 1353 1353) +Process: 3 I/O blocked... (2000 0 1354 1354) +Process: 3 registered... (2000 0 1354 1354) +Process: 3 I/O blocked... (2000 0 1355 1355) +Process: 3 registered... (2000 0 1355 1355) +Process: 3 I/O blocked... (2000 0 1356 1356) +Process: 3 registered... (2000 0 1356 1356) +Process: 3 I/O blocked... (2000 0 1357 1357) +Process: 3 registered... (2000 0 1357 1357) +Process: 3 I/O blocked... (2000 0 1358 1358) +Process: 3 registered... (2000 0 1358 1358) +Process: 3 I/O blocked... (2000 0 1359 1359) +Process: 3 registered... (2000 0 1359 1359) +Process: 3 I/O blocked... (2000 0 1360 1360) +Process: 3 registered... (2000 0 1360 1360) +Process: 3 I/O blocked... (2000 0 1361 1361) +Process: 3 registered... (2000 0 1361 1361) +Process: 3 I/O blocked... (2000 0 1362 1362) +Process: 3 registered... (2000 0 1362 1362) +Process: 3 I/O blocked... (2000 0 1363 1363) +Process: 3 registered... (2000 0 1363 1363) +Process: 3 I/O blocked... (2000 0 1364 1364) +Process: 3 registered... (2000 0 1364 1364) +Process: 3 I/O blocked... (2000 0 1365 1365) +Process: 3 registered... (2000 0 1365 1365) +Process: 3 I/O blocked... (2000 0 1366 1366) +Process: 3 registered... (2000 0 1366 1366) +Process: 3 I/O blocked... (2000 0 1367 1367) +Process: 3 registered... (2000 0 1367 1367) +Process: 3 I/O blocked... (2000 0 1368 1368) +Process: 3 registered... (2000 0 1368 1368) +Process: 3 I/O blocked... (2000 0 1369 1369) +Process: 3 registered... (2000 0 1369 1369) +Process: 3 I/O blocked... (2000 0 1370 1370) +Process: 3 registered... (2000 0 1370 1370) +Process: 3 I/O blocked... (2000 0 1371 1371) +Process: 3 registered... (2000 0 1371 1371) +Process: 3 I/O blocked... (2000 0 1372 1372) +Process: 3 registered... (2000 0 1372 1372) +Process: 3 I/O blocked... (2000 0 1373 1373) +Process: 3 registered... (2000 0 1373 1373) +Process: 3 I/O blocked... (2000 0 1374 1374) +Process: 3 registered... (2000 0 1374 1374) +Process: 3 I/O blocked... (2000 0 1375 1375) +Process: 3 registered... (2000 0 1375 1375) +Process: 3 I/O blocked... (2000 0 1376 1376) +Process: 3 registered... (2000 0 1376 1376) +Process: 3 I/O blocked... (2000 0 1377 1377) +Process: 3 registered... (2000 0 1377 1377) +Process: 3 I/O blocked... (2000 0 1378 1378) +Process: 3 registered... (2000 0 1378 1378) +Process: 3 I/O blocked... (2000 0 1379 1379) +Process: 3 registered... (2000 0 1379 1379) +Process: 3 I/O blocked... (2000 0 1380 1380) +Process: 3 registered... (2000 0 1380 1380) +Process: 3 I/O blocked... (2000 0 1381 1381) +Process: 3 registered... (2000 0 1381 1381) +Process: 3 I/O blocked... (2000 0 1382 1382) +Process: 3 registered... (2000 0 1382 1382) +Process: 3 I/O blocked... (2000 0 1383 1383) +Process: 3 registered... (2000 0 1383 1383) +Process: 3 I/O blocked... (2000 0 1384 1384) +Process: 3 registered... (2000 0 1384 1384) +Process: 3 I/O blocked... (2000 0 1385 1385) +Process: 3 registered... (2000 0 1385 1385) +Process: 3 I/O blocked... (2000 0 1386 1386) +Process: 3 registered... (2000 0 1386 1386) +Process: 3 I/O blocked... (2000 0 1387 1387) +Process: 3 registered... (2000 0 1387 1387) +Process: 3 I/O blocked... (2000 0 1388 1388) +Process: 3 registered... (2000 0 1388 1388) +Process: 3 I/O blocked... (2000 0 1389 1389) +Process: 3 registered... (2000 0 1389 1389) +Process: 3 I/O blocked... (2000 0 1390 1390) +Process: 3 registered... (2000 0 1390 1390) +Process: 3 I/O blocked... (2000 0 1391 1391) +Process: 3 registered... (2000 0 1391 1391) +Process: 3 I/O blocked... (2000 0 1392 1392) +Process: 3 registered... (2000 0 1392 1392) +Process: 3 I/O blocked... (2000 0 1393 1393) +Process: 3 registered... (2000 0 1393 1393) +Process: 3 I/O blocked... (2000 0 1394 1394) +Process: 3 registered... (2000 0 1394 1394) +Process: 3 I/O blocked... (2000 0 1395 1395) +Process: 3 registered... (2000 0 1395 1395) +Process: 3 I/O blocked... (2000 0 1396 1396) +Process: 3 registered... (2000 0 1396 1396) +Process: 3 I/O blocked... (2000 0 1397 1397) +Process: 3 registered... (2000 0 1397 1397) +Process: 3 I/O blocked... (2000 0 1398 1398) +Process: 3 registered... (2000 0 1398 1398) +Process: 3 I/O blocked... (2000 0 1399 1399) +Process: 3 registered... (2000 0 1399 1399) +Process: 3 I/O blocked... (2000 0 1400 1400) +Process: 3 registered... (2000 0 1400 1400) +Process: 3 I/O blocked... (2000 0 1401 1401) +Process: 3 registered... (2000 0 1401 1401) +Process: 3 I/O blocked... (2000 0 1402 1402) +Process: 3 registered... (2000 0 1402 1402) +Process: 3 I/O blocked... (2000 0 1403 1403) +Process: 3 registered... (2000 0 1403 1403) +Process: 3 I/O blocked... (2000 0 1404 1404) +Process: 3 registered... (2000 0 1404 1404) +Process: 3 I/O blocked... (2000 0 1405 1405) +Process: 3 registered... (2000 0 1405 1405) +Process: 3 I/O blocked... (2000 0 1406 1406) +Process: 3 registered... (2000 0 1406 1406) +Process: 3 I/O blocked... (2000 0 1407 1407) +Process: 3 registered... (2000 0 1407 1407) +Process: 3 I/O blocked... (2000 0 1408 1408) +Process: 3 registered... (2000 0 1408 1408) +Process: 3 I/O blocked... (2000 0 1409 1409) +Process: 3 registered... (2000 0 1409 1409) +Process: 3 I/O blocked... (2000 0 1410 1410) +Process: 3 registered... (2000 0 1410 1410) +Process: 3 I/O blocked... (2000 0 1411 1411) +Process: 3 registered... (2000 0 1411 1411) +Process: 3 I/O blocked... (2000 0 1412 1412) +Process: 3 registered... (2000 0 1412 1412) +Process: 3 I/O blocked... (2000 0 1413 1413) +Process: 3 registered... (2000 0 1413 1413) +Process: 3 I/O blocked... (2000 0 1414 1414) +Process: 3 registered... (2000 0 1414 1414) +Process: 3 I/O blocked... (2000 0 1415 1415) +Process: 3 registered... (2000 0 1415 1415) +Process: 3 I/O blocked... (2000 0 1416 1416) +Process: 3 registered... (2000 0 1416 1416) +Process: 3 I/O blocked... (2000 0 1417 1417) +Process: 3 registered... (2000 0 1417 1417) +Process: 3 I/O blocked... (2000 0 1418 1418) +Process: 3 registered... (2000 0 1418 1418) +Process: 3 I/O blocked... (2000 0 1419 1419) +Process: 3 registered... (2000 0 1419 1419) +Process: 3 I/O blocked... (2000 0 1420 1420) +Process: 3 registered... (2000 0 1420 1420) +Process: 3 I/O blocked... (2000 0 1421 1421) +Process: 3 registered... (2000 0 1421 1421) +Process: 3 I/O blocked... (2000 0 1422 1422) +Process: 3 registered... (2000 0 1422 1422) +Process: 3 I/O blocked... (2000 0 1423 1423) +Process: 3 registered... (2000 0 1423 1423) +Process: 3 I/O blocked... (2000 0 1424 1424) +Process: 3 registered... (2000 0 1424 1424) +Process: 3 I/O blocked... (2000 0 1425 1425) +Process: 3 registered... (2000 0 1425 1425) +Process: 3 I/O blocked... (2000 0 1426 1426) +Process: 3 registered... (2000 0 1426 1426) +Process: 3 I/O blocked... (2000 0 1427 1427) +Process: 3 registered... (2000 0 1427 1427) +Process: 3 I/O blocked... (2000 0 1428 1428) +Process: 3 registered... (2000 0 1428 1428) +Process: 3 I/O blocked... (2000 0 1429 1429) +Process: 3 registered... (2000 0 1429 1429) +Process: 3 I/O blocked... (2000 0 1430 1430) +Process: 3 registered... (2000 0 1430 1430) +Process: 3 I/O blocked... (2000 0 1431 1431) +Process: 3 registered... (2000 0 1431 1431) +Process: 3 I/O blocked... (2000 0 1432 1432) +Process: 3 registered... (2000 0 1432 1432) +Process: 3 I/O blocked... (2000 0 1433 1433) +Process: 3 registered... (2000 0 1433 1433) +Process: 3 I/O blocked... (2000 0 1434 1434) +Process: 3 registered... (2000 0 1434 1434) +Process: 3 I/O blocked... (2000 0 1435 1435) +Process: 3 registered... (2000 0 1435 1435) +Process: 3 I/O blocked... (2000 0 1436 1436) +Process: 3 registered... (2000 0 1436 1436) +Process: 3 I/O blocked... (2000 0 1437 1437) +Process: 3 registered... (2000 0 1437 1437) +Process: 3 I/O blocked... (2000 0 1438 1438) +Process: 3 registered... (2000 0 1438 1438) +Process: 3 I/O blocked... (2000 0 1439 1439) +Process: 3 registered... (2000 0 1439 1439) +Process: 3 I/O blocked... (2000 0 1440 1440) +Process: 3 registered... (2000 0 1440 1440) +Process: 3 I/O blocked... (2000 0 1441 1441) +Process: 3 registered... (2000 0 1441 1441) +Process: 3 I/O blocked... (2000 0 1442 1442) +Process: 3 registered... (2000 0 1442 1442) +Process: 3 I/O blocked... (2000 0 1443 1443) +Process: 3 registered... (2000 0 1443 1443) +Process: 3 I/O blocked... (2000 0 1444 1444) +Process: 3 registered... (2000 0 1444 1444) +Process: 3 I/O blocked... (2000 0 1445 1445) +Process: 3 registered... (2000 0 1445 1445) +Process: 3 I/O blocked... (2000 0 1446 1446) +Process: 3 registered... (2000 0 1446 1446) +Process: 3 I/O blocked... (2000 0 1447 1447) +Process: 3 registered... (2000 0 1447 1447) +Process: 3 I/O blocked... (2000 0 1448 1448) +Process: 3 registered... (2000 0 1448 1448) +Process: 3 I/O blocked... (2000 0 1449 1449) +Process: 3 registered... (2000 0 1449 1449) +Process: 3 I/O blocked... (2000 0 1450 1450) +Process: 3 registered... (2000 0 1450 1450) +Process: 3 I/O blocked... (2000 0 1451 1451) +Process: 3 registered... (2000 0 1451 1451) +Process: 3 I/O blocked... (2000 0 1452 1452) +Process: 3 registered... (2000 0 1452 1452) +Process: 3 I/O blocked... (2000 0 1453 1453) +Process: 3 registered... (2000 0 1453 1453) +Process: 3 I/O blocked... (2000 0 1454 1454) +Process: 3 registered... (2000 0 1454 1454) +Process: 3 I/O blocked... (2000 0 1455 1455) +Process: 3 registered... (2000 0 1455 1455) +Process: 3 I/O blocked... (2000 0 1456 1456) +Process: 3 registered... (2000 0 1456 1456) +Process: 3 I/O blocked... (2000 0 1457 1457) +Process: 3 registered... (2000 0 1457 1457) +Process: 3 I/O blocked... (2000 0 1458 1458) +Process: 3 registered... (2000 0 1458 1458) +Process: 3 I/O blocked... (2000 0 1459 1459) +Process: 3 registered... (2000 0 1459 1459) +Process: 3 I/O blocked... (2000 0 1460 1460) +Process: 3 registered... (2000 0 1460 1460) +Process: 3 I/O blocked... (2000 0 1461 1461) +Process: 3 registered... (2000 0 1461 1461) +Process: 3 I/O blocked... (2000 0 1462 1462) +Process: 3 registered... (2000 0 1462 1462) +Process: 3 I/O blocked... (2000 0 1463 1463) +Process: 3 registered... (2000 0 1463 1463) +Process: 3 I/O blocked... (2000 0 1464 1464) +Process: 3 registered... (2000 0 1464 1464) +Process: 3 I/O blocked... (2000 0 1465 1465) +Process: 3 registered... (2000 0 1465 1465) +Process: 3 I/O blocked... (2000 0 1466 1466) +Process: 3 registered... (2000 0 1466 1466) +Process: 3 I/O blocked... (2000 0 1467 1467) +Process: 3 registered... (2000 0 1467 1467) +Process: 3 I/O blocked... (2000 0 1468 1468) +Process: 3 registered... (2000 0 1468 1468) +Process: 3 I/O blocked... (2000 0 1469 1469) +Process: 3 registered... (2000 0 1469 1469) +Process: 3 I/O blocked... (2000 0 1470 1470) +Process: 3 registered... (2000 0 1470 1470) +Process: 3 I/O blocked... (2000 0 1471 1471) +Process: 3 registered... (2000 0 1471 1471) +Process: 3 I/O blocked... (2000 0 1472 1472) +Process: 3 registered... (2000 0 1472 1472) +Process: 3 I/O blocked... (2000 0 1473 1473) +Process: 3 registered... (2000 0 1473 1473) +Process: 3 I/O blocked... (2000 0 1474 1474) +Process: 3 registered... (2000 0 1474 1474) +Process: 3 I/O blocked... (2000 0 1475 1475) +Process: 3 registered... (2000 0 1475 1475) +Process: 3 I/O blocked... (2000 0 1476 1476) +Process: 3 registered... (2000 0 1476 1476) +Process: 3 I/O blocked... (2000 0 1477 1477) +Process: 3 registered... (2000 0 1477 1477) +Process: 3 I/O blocked... (2000 0 1478 1478) +Process: 3 registered... (2000 0 1478 1478) +Process: 3 I/O blocked... (2000 0 1479 1479) +Process: 3 registered... (2000 0 1479 1479) +Process: 3 I/O blocked... (2000 0 1480 1480) +Process: 3 registered... (2000 0 1480 1480) +Process: 3 I/O blocked... (2000 0 1481 1481) +Process: 3 registered... (2000 0 1481 1481) +Process: 3 I/O blocked... (2000 0 1482 1482) +Process: 3 registered... (2000 0 1482 1482) +Process: 3 I/O blocked... (2000 0 1483 1483) +Process: 3 registered... (2000 0 1483 1483) +Process: 3 I/O blocked... (2000 0 1484 1484) +Process: 3 registered... (2000 0 1484 1484) +Process: 3 I/O blocked... (2000 0 1485 1485) +Process: 3 registered... (2000 0 1485 1485) +Process: 3 I/O blocked... (2000 0 1486 1486) +Process: 3 registered... (2000 0 1486 1486) +Process: 3 I/O blocked... (2000 0 1487 1487) +Process: 3 registered... (2000 0 1487 1487) +Process: 3 I/O blocked... (2000 0 1488 1488) +Process: 3 registered... (2000 0 1488 1488) +Process: 3 I/O blocked... (2000 0 1489 1489) +Process: 3 registered... (2000 0 1489 1489) +Process: 3 I/O blocked... (2000 0 1490 1490) +Process: 3 registered... (2000 0 1490 1490) +Process: 3 I/O blocked... (2000 0 1491 1491) +Process: 3 registered... (2000 0 1491 1491) +Process: 3 I/O blocked... (2000 0 1492 1492) +Process: 3 registered... (2000 0 1492 1492) +Process: 3 I/O blocked... (2000 0 1493 1493) +Process: 3 registered... (2000 0 1493 1493) +Process: 3 I/O blocked... (2000 0 1494 1494) +Process: 3 registered... (2000 0 1494 1494) +Process: 3 I/O blocked... (2000 0 1495 1495) +Process: 3 registered... (2000 0 1495 1495) +Process: 3 I/O blocked... (2000 0 1496 1496) +Process: 3 registered... (2000 0 1496 1496) +Process: 3 I/O blocked... (2000 0 1497 1497) +Process: 3 registered... (2000 0 1497 1497) +Process: 3 I/O blocked... (2000 0 1498 1498) +Process: 3 registered... (2000 0 1498 1498) +Process: 3 I/O blocked... (2000 0 1499 1499) +Process: 3 registered... (2000 0 1499 1499) +Process: 3 I/O blocked... (2000 0 1500 1500) +Process: 3 registered... (2000 0 1500 1500) +Process: 3 I/O blocked... (2000 0 1501 1501) +Process: 3 registered... (2000 0 1501 1501) +Process: 3 I/O blocked... (2000 0 1502 1502) +Process: 3 registered... (2000 0 1502 1502) +Process: 3 I/O blocked... (2000 0 1503 1503) +Process: 3 registered... (2000 0 1503 1503) +Process: 3 I/O blocked... (2000 0 1504 1504) +Process: 3 registered... (2000 0 1504 1504) +Process: 3 I/O blocked... (2000 0 1505 1505) +Process: 3 registered... (2000 0 1505 1505) +Process: 3 I/O blocked... (2000 0 1506 1506) +Process: 3 registered... (2000 0 1506 1506) +Process: 3 I/O blocked... (2000 0 1507 1507) +Process: 3 registered... (2000 0 1507 1507) +Process: 3 I/O blocked... (2000 0 1508 1508) +Process: 3 registered... (2000 0 1508 1508) +Process: 3 I/O blocked... (2000 0 1509 1509) +Process: 3 registered... (2000 0 1509 1509) +Process: 3 I/O blocked... (2000 0 1510 1510) +Process: 3 registered... (2000 0 1510 1510) +Process: 3 I/O blocked... (2000 0 1511 1511) +Process: 3 registered... (2000 0 1511 1511) +Process: 3 I/O blocked... (2000 0 1512 1512) +Process: 3 registered... (2000 0 1512 1512) +Process: 3 I/O blocked... (2000 0 1513 1513) +Process: 3 registered... (2000 0 1513 1513) +Process: 3 I/O blocked... (2000 0 1514 1514) +Process: 3 registered... (2000 0 1514 1514) +Process: 3 I/O blocked... (2000 0 1515 1515) +Process: 3 registered... (2000 0 1515 1515) +Process: 3 I/O blocked... (2000 0 1516 1516) +Process: 3 registered... (2000 0 1516 1516) +Process: 3 I/O blocked... (2000 0 1517 1517) +Process: 3 registered... (2000 0 1517 1517) +Process: 3 I/O blocked... (2000 0 1518 1518) +Process: 3 registered... (2000 0 1518 1518) +Process: 3 I/O blocked... (2000 0 1519 1519) +Process: 3 registered... (2000 0 1519 1519) +Process: 3 I/O blocked... (2000 0 1520 1520) +Process: 3 registered... (2000 0 1520 1520) +Process: 3 I/O blocked... (2000 0 1521 1521) +Process: 3 registered... (2000 0 1521 1521) +Process: 3 I/O blocked... (2000 0 1522 1522) +Process: 3 registered... (2000 0 1522 1522) +Process: 3 I/O blocked... (2000 0 1523 1523) +Process: 3 registered... (2000 0 1523 1523) +Process: 3 I/O blocked... (2000 0 1524 1524) +Process: 3 registered... (2000 0 1524 1524) +Process: 3 I/O blocked... (2000 0 1525 1525) +Process: 3 registered... (2000 0 1525 1525) +Process: 3 I/O blocked... (2000 0 1526 1526) +Process: 3 registered... (2000 0 1526 1526) +Process: 3 I/O blocked... (2000 0 1527 1527) +Process: 3 registered... (2000 0 1527 1527) +Process: 3 I/O blocked... (2000 0 1528 1528) +Process: 3 registered... (2000 0 1528 1528) +Process: 3 I/O blocked... (2000 0 1529 1529) +Process: 3 registered... (2000 0 1529 1529) +Process: 3 I/O blocked... (2000 0 1530 1530) +Process: 3 registered... (2000 0 1530 1530) +Process: 3 I/O blocked... (2000 0 1531 1531) +Process: 3 registered... (2000 0 1531 1531) +Process: 3 I/O blocked... (2000 0 1532 1532) +Process: 3 registered... (2000 0 1532 1532) +Process: 3 I/O blocked... (2000 0 1533 1533) +Process: 3 registered... (2000 0 1533 1533) +Process: 3 I/O blocked... (2000 0 1534 1534) +Process: 3 registered... (2000 0 1534 1534) +Process: 3 I/O blocked... (2000 0 1535 1535) +Process: 3 registered... (2000 0 1535 1535) +Process: 3 I/O blocked... (2000 0 1536 1536) +Process: 3 registered... (2000 0 1536 1536) +Process: 3 I/O blocked... (2000 0 1537 1537) +Process: 3 registered... (2000 0 1537 1537) +Process: 3 I/O blocked... (2000 0 1538 1538) +Process: 3 registered... (2000 0 1538 1538) +Process: 3 I/O blocked... (2000 0 1539 1539) +Process: 3 registered... (2000 0 1539 1539) +Process: 3 I/O blocked... (2000 0 1540 1540) +Process: 3 registered... (2000 0 1540 1540) +Process: 3 I/O blocked... (2000 0 1541 1541) +Process: 3 registered... (2000 0 1541 1541) +Process: 3 I/O blocked... (2000 0 1542 1542) +Process: 3 registered... (2000 0 1542 1542) +Process: 3 I/O blocked... (2000 0 1543 1543) +Process: 3 registered... (2000 0 1543 1543) +Process: 3 I/O blocked... (2000 0 1544 1544) +Process: 3 registered... (2000 0 1544 1544) +Process: 3 I/O blocked... (2000 0 1545 1545) +Process: 3 registered... (2000 0 1545 1545) +Process: 3 I/O blocked... (2000 0 1546 1546) +Process: 3 registered... (2000 0 1546 1546) +Process: 3 I/O blocked... (2000 0 1547 1547) +Process: 3 registered... (2000 0 1547 1547) +Process: 3 I/O blocked... (2000 0 1548 1548) +Process: 3 registered... (2000 0 1548 1548) +Process: 3 I/O blocked... (2000 0 1549 1549) +Process: 3 registered... (2000 0 1549 1549) +Process: 3 I/O blocked... (2000 0 1550 1550) +Process: 3 registered... (2000 0 1550 1550) +Process: 3 I/O blocked... (2000 0 1551 1551) +Process: 3 registered... (2000 0 1551 1551) +Process: 3 I/O blocked... (2000 0 1552 1552) +Process: 3 registered... (2000 0 1552 1552) +Process: 3 I/O blocked... (2000 0 1553 1553) +Process: 3 registered... (2000 0 1553 1553) +Process: 3 I/O blocked... (2000 0 1554 1554) +Process: 3 registered... (2000 0 1554 1554) +Process: 3 I/O blocked... (2000 0 1555 1555) +Process: 3 registered... (2000 0 1555 1555) +Process: 3 I/O blocked... (2000 0 1556 1556) +Process: 3 registered... (2000 0 1556 1556) +Process: 3 I/O blocked... (2000 0 1557 1557) +Process: 3 registered... (2000 0 1557 1557) +Process: 3 I/O blocked... (2000 0 1558 1558) +Process: 3 registered... (2000 0 1558 1558) +Process: 3 I/O blocked... (2000 0 1559 1559) +Process: 3 registered... (2000 0 1559 1559) +Process: 3 I/O blocked... (2000 0 1560 1560) +Process: 3 registered... (2000 0 1560 1560) +Process: 3 I/O blocked... (2000 0 1561 1561) +Process: 3 registered... (2000 0 1561 1561) +Process: 3 I/O blocked... (2000 0 1562 1562) +Process: 3 registered... (2000 0 1562 1562) +Process: 3 I/O blocked... (2000 0 1563 1563) +Process: 3 registered... (2000 0 1563 1563) +Process: 3 I/O blocked... (2000 0 1564 1564) +Process: 3 registered... (2000 0 1564 1564) +Process: 3 I/O blocked... (2000 0 1565 1565) +Process: 3 registered... (2000 0 1565 1565) +Process: 3 I/O blocked... (2000 0 1566 1566) +Process: 3 registered... (2000 0 1566 1566) +Process: 3 I/O blocked... (2000 0 1567 1567) +Process: 3 registered... (2000 0 1567 1567) +Process: 3 I/O blocked... (2000 0 1568 1568) +Process: 3 registered... (2000 0 1568 1568) +Process: 3 I/O blocked... (2000 0 1569 1569) +Process: 3 registered... (2000 0 1569 1569) +Process: 3 I/O blocked... (2000 0 1570 1570) +Process: 3 registered... (2000 0 1570 1570) +Process: 3 I/O blocked... (2000 0 1571 1571) +Process: 3 registered... (2000 0 1571 1571) +Process: 3 I/O blocked... (2000 0 1572 1572) +Process: 3 registered... (2000 0 1572 1572) +Process: 3 I/O blocked... (2000 0 1573 1573) +Process: 3 registered... (2000 0 1573 1573) +Process: 3 I/O blocked... (2000 0 1574 1574) +Process: 3 registered... (2000 0 1574 1574) +Process: 3 I/O blocked... (2000 0 1575 1575) +Process: 3 registered... (2000 0 1575 1575) +Process: 3 I/O blocked... (2000 0 1576 1576) +Process: 3 registered... (2000 0 1576 1576) +Process: 3 I/O blocked... (2000 0 1577 1577) +Process: 3 registered... (2000 0 1577 1577) +Process: 3 I/O blocked... (2000 0 1578 1578) +Process: 3 registered... (2000 0 1578 1578) +Process: 3 I/O blocked... (2000 0 1579 1579) +Process: 3 registered... (2000 0 1579 1579) +Process: 3 I/O blocked... (2000 0 1580 1580) +Process: 3 registered... (2000 0 1580 1580) +Process: 3 I/O blocked... (2000 0 1581 1581) +Process: 3 registered... (2000 0 1581 1581) +Process: 3 I/O blocked... (2000 0 1582 1582) +Process: 3 registered... (2000 0 1582 1582) +Process: 3 I/O blocked... (2000 0 1583 1583) +Process: 3 registered... (2000 0 1583 1583) +Process: 3 I/O blocked... (2000 0 1584 1584) +Process: 3 registered... (2000 0 1584 1584) +Process: 3 I/O blocked... (2000 0 1585 1585) +Process: 3 registered... (2000 0 1585 1585) +Process: 3 I/O blocked... (2000 0 1586 1586) +Process: 3 registered... (2000 0 1586 1586) +Process: 3 I/O blocked... (2000 0 1587 1587) +Process: 3 registered... (2000 0 1587 1587) +Process: 3 I/O blocked... (2000 0 1588 1588) +Process: 3 registered... (2000 0 1588 1588) +Process: 3 I/O blocked... (2000 0 1589 1589) +Process: 3 registered... (2000 0 1589 1589) +Process: 3 I/O blocked... (2000 0 1590 1590) +Process: 3 registered... (2000 0 1590 1590) +Process: 3 I/O blocked... (2000 0 1591 1591) +Process: 3 registered... (2000 0 1591 1591) +Process: 3 I/O blocked... (2000 0 1592 1592) +Process: 3 registered... (2000 0 1592 1592) +Process: 3 I/O blocked... (2000 0 1593 1593) +Process: 3 registered... (2000 0 1593 1593) +Process: 3 I/O blocked... (2000 0 1594 1594) +Process: 3 registered... (2000 0 1594 1594) +Process: 3 I/O blocked... (2000 0 1595 1595) +Process: 3 registered... (2000 0 1595 1595) +Process: 3 I/O blocked... (2000 0 1596 1596) +Process: 3 registered... (2000 0 1596 1596) +Process: 3 I/O blocked... (2000 0 1597 1597) +Process: 3 registered... (2000 0 1597 1597) +Process: 3 I/O blocked... (2000 0 1598 1598) +Process: 3 registered... (2000 0 1598 1598) +Process: 3 I/O blocked... (2000 0 1599 1599) +Process: 3 registered... (2000 0 1599 1599) +Process: 3 I/O blocked... (2000 0 1600 1600) +Process: 3 registered... (2000 0 1600 1600) +Process: 3 I/O blocked... (2000 0 1601 1601) +Process: 3 registered... (2000 0 1601 1601) +Process: 3 I/O blocked... (2000 0 1602 1602) +Process: 3 registered... (2000 0 1602 1602) +Process: 3 I/O blocked... (2000 0 1603 1603) +Process: 3 registered... (2000 0 1603 1603) +Process: 3 I/O blocked... (2000 0 1604 1604) +Process: 3 registered... (2000 0 1604 1604) +Process: 3 I/O blocked... (2000 0 1605 1605) +Process: 3 registered... (2000 0 1605 1605) +Process: 3 I/O blocked... (2000 0 1606 1606) +Process: 3 registered... (2000 0 1606 1606) +Process: 3 I/O blocked... (2000 0 1607 1607) +Process: 3 registered... (2000 0 1607 1607) +Process: 3 I/O blocked... (2000 0 1608 1608) +Process: 3 registered... (2000 0 1608 1608) +Process: 3 I/O blocked... (2000 0 1609 1609) +Process: 3 registered... (2000 0 1609 1609) +Process: 3 I/O blocked... (2000 0 1610 1610) +Process: 3 registered... (2000 0 1610 1610) +Process: 3 I/O blocked... (2000 0 1611 1611) +Process: 3 registered... (2000 0 1611 1611) +Process: 3 I/O blocked... (2000 0 1612 1612) +Process: 3 registered... (2000 0 1612 1612) +Process: 3 I/O blocked... (2000 0 1613 1613) +Process: 3 registered... (2000 0 1613 1613) +Process: 3 I/O blocked... (2000 0 1614 1614) +Process: 3 registered... (2000 0 1614 1614) +Process: 3 I/O blocked... (2000 0 1615 1615) +Process: 3 registered... (2000 0 1615 1615) +Process: 3 I/O blocked... (2000 0 1616 1616) +Process: 3 registered... (2000 0 1616 1616) +Process: 3 I/O blocked... (2000 0 1617 1617) +Process: 3 registered... (2000 0 1617 1617) +Process: 3 I/O blocked... (2000 0 1618 1618) +Process: 3 registered... (2000 0 1618 1618) +Process: 3 I/O blocked... (2000 0 1619 1619) +Process: 3 registered... (2000 0 1619 1619) +Process: 3 I/O blocked... (2000 0 1620 1620) +Process: 3 registered... (2000 0 1620 1620) +Process: 3 I/O blocked... (2000 0 1621 1621) +Process: 3 registered... (2000 0 1621 1621) +Process: 3 I/O blocked... (2000 0 1622 1622) +Process: 3 registered... (2000 0 1622 1622) +Process: 3 I/O blocked... (2000 0 1623 1623) +Process: 3 registered... (2000 0 1623 1623) +Process: 3 I/O blocked... (2000 0 1624 1624) +Process: 3 registered... (2000 0 1624 1624) +Process: 3 I/O blocked... (2000 0 1625 1625) +Process: 3 registered... (2000 0 1625 1625) +Process: 3 I/O blocked... (2000 0 1626 1626) +Process: 3 registered... (2000 0 1626 1626) +Process: 3 I/O blocked... (2000 0 1627 1627) +Process: 3 registered... (2000 0 1627 1627) +Process: 3 I/O blocked... (2000 0 1628 1628) +Process: 3 registered... (2000 0 1628 1628) +Process: 3 I/O blocked... (2000 0 1629 1629) +Process: 3 registered... (2000 0 1629 1629) +Process: 3 I/O blocked... (2000 0 1630 1630) +Process: 3 registered... (2000 0 1630 1630) +Process: 3 I/O blocked... (2000 0 1631 1631) +Process: 3 registered... (2000 0 1631 1631) +Process: 3 I/O blocked... (2000 0 1632 1632) +Process: 3 registered... (2000 0 1632 1632) +Process: 3 I/O blocked... (2000 0 1633 1633) +Process: 3 registered... (2000 0 1633 1633) +Process: 3 I/O blocked... (2000 0 1634 1634) +Process: 3 registered... (2000 0 1634 1634) +Process: 3 I/O blocked... (2000 0 1635 1635) +Process: 3 registered... (2000 0 1635 1635) +Process: 3 I/O blocked... (2000 0 1636 1636) +Process: 3 registered... (2000 0 1636 1636) +Process: 3 I/O blocked... (2000 0 1637 1637) +Process: 3 registered... (2000 0 1637 1637) +Process: 3 I/O blocked... (2000 0 1638 1638) +Process: 3 registered... (2000 0 1638 1638) +Process: 3 I/O blocked... (2000 0 1639 1639) +Process: 3 registered... (2000 0 1639 1639) +Process: 3 I/O blocked... (2000 0 1640 1640) +Process: 3 registered... (2000 0 1640 1640) +Process: 3 I/O blocked... (2000 0 1641 1641) +Process: 3 registered... (2000 0 1641 1641) +Process: 3 I/O blocked... (2000 0 1642 1642) +Process: 3 registered... (2000 0 1642 1642) +Process: 3 I/O blocked... (2000 0 1643 1643) +Process: 3 registered... (2000 0 1643 1643) +Process: 3 I/O blocked... (2000 0 1644 1644) +Process: 3 registered... (2000 0 1644 1644) +Process: 3 I/O blocked... (2000 0 1645 1645) +Process: 3 registered... (2000 0 1645 1645) +Process: 3 I/O blocked... (2000 0 1646 1646) +Process: 3 registered... (2000 0 1646 1646) +Process: 3 I/O blocked... (2000 0 1647 1647) +Process: 3 registered... (2000 0 1647 1647) +Process: 3 I/O blocked... (2000 0 1648 1648) +Process: 3 registered... (2000 0 1648 1648) +Process: 3 I/O blocked... (2000 0 1649 1649) +Process: 3 registered... (2000 0 1649 1649) +Process: 3 I/O blocked... (2000 0 1650 1650) +Process: 3 registered... (2000 0 1650 1650) +Process: 3 I/O blocked... (2000 0 1651 1651) +Process: 3 registered... (2000 0 1651 1651) +Process: 3 I/O blocked... (2000 0 1652 1652) +Process: 3 registered... (2000 0 1652 1652) +Process: 3 I/O blocked... (2000 0 1653 1653) +Process: 3 registered... (2000 0 1653 1653) +Process: 3 I/O blocked... (2000 0 1654 1654) +Process: 3 registered... (2000 0 1654 1654) +Process: 3 I/O blocked... (2000 0 1655 1655) +Process: 3 registered... (2000 0 1655 1655) +Process: 3 I/O blocked... (2000 0 1656 1656) +Process: 3 registered... (2000 0 1656 1656) +Process: 3 I/O blocked... (2000 0 1657 1657) +Process: 3 registered... (2000 0 1657 1657) +Process: 3 I/O blocked... (2000 0 1658 1658) +Process: 3 registered... (2000 0 1658 1658) +Process: 3 I/O blocked... (2000 0 1659 1659) +Process: 3 registered... (2000 0 1659 1659) +Process: 3 I/O blocked... (2000 0 1660 1660) +Process: 3 registered... (2000 0 1660 1660) +Process: 3 I/O blocked... (2000 0 1661 1661) +Process: 3 registered... (2000 0 1661 1661) +Process: 3 I/O blocked... (2000 0 1662 1662) +Process: 3 registered... (2000 0 1662 1662) +Process: 3 I/O blocked... (2000 0 1663 1663) +Process: 3 registered... (2000 0 1663 1663) +Process: 3 I/O blocked... (2000 0 1664 1664) +Process: 3 registered... (2000 0 1664 1664) +Process: 3 I/O blocked... (2000 0 1665 1665) +Process: 3 registered... (2000 0 1665 1665) +Process: 3 I/O blocked... (2000 0 1666 1666) +Process: 3 registered... (2000 0 1666 1666) +Process: 3 I/O blocked... (2000 0 1667 1667) +Process: 3 registered... (2000 0 1667 1667) +Process: 3 I/O blocked... (2000 0 1668 1668) +Process: 3 registered... (2000 0 1668 1668) +Process: 3 I/O blocked... (2000 0 1669 1669) +Process: 3 registered... (2000 0 1669 1669) +Process: 3 I/O blocked... (2000 0 1670 1670) +Process: 3 registered... (2000 0 1670 1670) +Process: 3 I/O blocked... (2000 0 1671 1671) +Process: 3 registered... (2000 0 1671 1671) +Process: 3 I/O blocked... (2000 0 1672 1672) +Process: 3 registered... (2000 0 1672 1672) +Process: 3 I/O blocked... (2000 0 1673 1673) +Process: 3 registered... (2000 0 1673 1673) +Process: 3 I/O blocked... (2000 0 1674 1674) +Process: 3 registered... (2000 0 1674 1674) +Process: 3 I/O blocked... (2000 0 1675 1675) +Process: 3 registered... (2000 0 1675 1675) +Process: 3 I/O blocked... (2000 0 1676 1676) +Process: 3 registered... (2000 0 1676 1676) +Process: 3 I/O blocked... (2000 0 1677 1677) +Process: 3 registered... (2000 0 1677 1677) +Process: 3 I/O blocked... (2000 0 1678 1678) +Process: 3 registered... (2000 0 1678 1678) +Process: 3 I/O blocked... (2000 0 1679 1679) +Process: 3 registered... (2000 0 1679 1679) +Process: 3 I/O blocked... (2000 0 1680 1680) +Process: 3 registered... (2000 0 1680 1680) +Process: 3 I/O blocked... (2000 0 1681 1681) +Process: 3 registered... (2000 0 1681 1681) +Process: 3 I/O blocked... (2000 0 1682 1682) +Process: 3 registered... (2000 0 1682 1682) +Process: 3 I/O blocked... (2000 0 1683 1683) +Process: 3 registered... (2000 0 1683 1683) +Process: 3 I/O blocked... (2000 0 1684 1684) +Process: 3 registered... (2000 0 1684 1684) +Process: 3 I/O blocked... (2000 0 1685 1685) +Process: 3 registered... (2000 0 1685 1685) +Process: 3 I/O blocked... (2000 0 1686 1686) +Process: 3 registered... (2000 0 1686 1686) +Process: 3 I/O blocked... (2000 0 1687 1687) +Process: 3 registered... (2000 0 1687 1687) +Process: 3 I/O blocked... (2000 0 1688 1688) +Process: 3 registered... (2000 0 1688 1688) +Process: 3 I/O blocked... (2000 0 1689 1689) +Process: 3 registered... (2000 0 1689 1689) +Process: 3 I/O blocked... (2000 0 1690 1690) +Process: 3 registered... (2000 0 1690 1690) +Process: 3 I/O blocked... (2000 0 1691 1691) +Process: 3 registered... (2000 0 1691 1691) +Process: 3 I/O blocked... (2000 0 1692 1692) +Process: 3 registered... (2000 0 1692 1692) +Process: 3 I/O blocked... (2000 0 1693 1693) +Process: 3 registered... (2000 0 1693 1693) +Process: 3 I/O blocked... (2000 0 1694 1694) +Process: 3 registered... (2000 0 1694 1694) +Process: 3 I/O blocked... (2000 0 1695 1695) +Process: 3 registered... (2000 0 1695 1695) +Process: 3 I/O blocked... (2000 0 1696 1696) +Process: 3 registered... (2000 0 1696 1696) +Process: 3 I/O blocked... (2000 0 1697 1697) +Process: 3 registered... (2000 0 1697 1697) +Process: 3 I/O blocked... (2000 0 1698 1698) +Process: 3 registered... (2000 0 1698 1698) +Process: 3 I/O blocked... (2000 0 1699 1699) +Process: 3 registered... (2000 0 1699 1699) +Process: 3 I/O blocked... (2000 0 1700 1700) +Process: 3 registered... (2000 0 1700 1700) +Process: 3 I/O blocked... (2000 0 1701 1701) +Process: 3 registered... (2000 0 1701 1701) +Process: 3 I/O blocked... (2000 0 1702 1702) +Process: 3 registered... (2000 0 1702 1702) +Process: 3 I/O blocked... (2000 0 1703 1703) +Process: 3 registered... (2000 0 1703 1703) +Process: 3 I/O blocked... (2000 0 1704 1704) +Process: 3 registered... (2000 0 1704 1704) +Process: 3 I/O blocked... (2000 0 1705 1705) +Process: 3 registered... (2000 0 1705 1705) +Process: 3 I/O blocked... (2000 0 1706 1706) +Process: 3 registered... (2000 0 1706 1706) +Process: 3 I/O blocked... (2000 0 1707 1707) +Process: 3 registered... (2000 0 1707 1707) +Process: 3 I/O blocked... (2000 0 1708 1708) +Process: 3 registered... (2000 0 1708 1708) +Process: 3 I/O blocked... (2000 0 1709 1709) +Process: 3 registered... (2000 0 1709 1709) +Process: 3 I/O blocked... (2000 0 1710 1710) +Process: 3 registered... (2000 0 1710 1710) +Process: 3 I/O blocked... (2000 0 1711 1711) +Process: 3 registered... (2000 0 1711 1711) +Process: 3 I/O blocked... (2000 0 1712 1712) +Process: 3 registered... (2000 0 1712 1712) +Process: 3 I/O blocked... (2000 0 1713 1713) +Process: 3 registered... (2000 0 1713 1713) +Process: 3 I/O blocked... (2000 0 1714 1714) +Process: 3 registered... (2000 0 1714 1714) +Process: 3 I/O blocked... (2000 0 1715 1715) +Process: 3 registered... (2000 0 1715 1715) +Process: 3 I/O blocked... (2000 0 1716 1716) +Process: 3 registered... (2000 0 1716 1716) +Process: 3 I/O blocked... (2000 0 1717 1717) +Process: 3 registered... (2000 0 1717 1717) +Process: 3 I/O blocked... (2000 0 1718 1718) +Process: 3 registered... (2000 0 1718 1718) +Process: 3 I/O blocked... (2000 0 1719 1719) +Process: 3 registered... (2000 0 1719 1719) +Process: 3 I/O blocked... (2000 0 1720 1720) +Process: 3 registered... (2000 0 1720 1720) +Process: 3 I/O blocked... (2000 0 1721 1721) +Process: 3 registered... (2000 0 1721 1721) +Process: 3 I/O blocked... (2000 0 1722 1722) +Process: 3 registered... (2000 0 1722 1722) +Process: 3 I/O blocked... (2000 0 1723 1723) +Process: 3 registered... (2000 0 1723 1723) +Process: 3 I/O blocked... (2000 0 1724 1724) +Process: 3 registered... (2000 0 1724 1724) +Process: 3 I/O blocked... (2000 0 1725 1725) +Process: 3 registered... (2000 0 1725 1725) +Process: 3 I/O blocked... (2000 0 1726 1726) +Process: 3 registered... (2000 0 1726 1726) +Process: 3 I/O blocked... (2000 0 1727 1727) +Process: 3 registered... (2000 0 1727 1727) +Process: 3 I/O blocked... (2000 0 1728 1728) +Process: 3 registered... (2000 0 1728 1728) +Process: 3 I/O blocked... (2000 0 1729 1729) +Process: 3 registered... (2000 0 1729 1729) +Process: 3 I/O blocked... (2000 0 1730 1730) +Process: 3 registered... (2000 0 1730 1730) +Process: 3 I/O blocked... (2000 0 1731 1731) +Process: 3 registered... (2000 0 1731 1731) +Process: 3 I/O blocked... (2000 0 1732 1732) +Process: 3 registered... (2000 0 1732 1732) +Process: 3 I/O blocked... (2000 0 1733 1733) +Process: 3 registered... (2000 0 1733 1733) +Process: 3 I/O blocked... (2000 0 1734 1734) +Process: 3 registered... (2000 0 1734 1734) +Process: 3 I/O blocked... (2000 0 1735 1735) +Process: 3 registered... (2000 0 1735 1735) +Process: 3 I/O blocked... (2000 0 1736 1736) +Process: 3 registered... (2000 0 1736 1736) +Process: 3 I/O blocked... (2000 0 1737 1737) +Process: 3 registered... (2000 0 1737 1737) +Process: 3 I/O blocked... (2000 0 1738 1738) +Process: 3 registered... (2000 0 1738 1738) +Process: 3 I/O blocked... (2000 0 1739 1739) +Process: 3 registered... (2000 0 1739 1739) +Process: 3 I/O blocked... (2000 0 1740 1740) +Process: 3 registered... (2000 0 1740 1740) +Process: 3 I/O blocked... (2000 0 1741 1741) +Process: 3 registered... (2000 0 1741 1741) +Process: 3 I/O blocked... (2000 0 1742 1742) +Process: 3 registered... (2000 0 1742 1742) +Process: 3 I/O blocked... (2000 0 1743 1743) +Process: 3 registered... (2000 0 1743 1743) +Process: 3 I/O blocked... (2000 0 1744 1744) +Process: 3 registered... (2000 0 1744 1744) +Process: 3 I/O blocked... (2000 0 1745 1745) +Process: 3 registered... (2000 0 1745 1745) +Process: 3 I/O blocked... (2000 0 1746 1746) +Process: 3 registered... (2000 0 1746 1746) +Process: 3 I/O blocked... (2000 0 1747 1747) +Process: 3 registered... (2000 0 1747 1747) +Process: 3 I/O blocked... (2000 0 1748 1748) +Process: 3 registered... (2000 0 1748 1748) +Process: 3 I/O blocked... (2000 0 1749 1749) +Process: 3 registered... (2000 0 1749 1749) +Process: 3 I/O blocked... (2000 0 1750 1750) +Process: 3 registered... (2000 0 1750 1750) +Process: 3 I/O blocked... (2000 0 1751 1751) +Process: 3 registered... (2000 0 1751 1751) +Process: 3 I/O blocked... (2000 0 1752 1752) +Process: 3 registered... (2000 0 1752 1752) +Process: 3 I/O blocked... (2000 0 1753 1753) +Process: 3 registered... (2000 0 1753 1753) +Process: 3 I/O blocked... (2000 0 1754 1754) +Process: 3 registered... (2000 0 1754 1754) +Process: 3 I/O blocked... (2000 0 1755 1755) +Process: 3 registered... (2000 0 1755 1755) +Process: 3 I/O blocked... (2000 0 1756 1756) +Process: 3 registered... (2000 0 1756 1756) +Process: 3 I/O blocked... (2000 0 1757 1757) +Process: 3 registered... (2000 0 1757 1757) +Process: 3 I/O blocked... (2000 0 1758 1758) +Process: 3 registered... (2000 0 1758 1758) +Process: 3 I/O blocked... (2000 0 1759 1759) +Process: 3 registered... (2000 0 1759 1759) +Process: 3 I/O blocked... (2000 0 1760 1760) +Process: 3 registered... (2000 0 1760 1760) +Process: 3 I/O blocked... (2000 0 1761 1761) +Process: 3 registered... (2000 0 1761 1761) +Process: 3 I/O blocked... (2000 0 1762 1762) +Process: 3 registered... (2000 0 1762 1762) +Process: 3 I/O blocked... (2000 0 1763 1763) +Process: 3 registered... (2000 0 1763 1763) +Process: 3 I/O blocked... (2000 0 1764 1764) +Process: 3 registered... (2000 0 1764 1764) +Process: 3 I/O blocked... (2000 0 1765 1765) +Process: 3 registered... (2000 0 1765 1765) +Process: 3 I/O blocked... (2000 0 1766 1766) +Process: 3 registered... (2000 0 1766 1766) +Process: 3 I/O blocked... (2000 0 1767 1767) +Process: 3 registered... (2000 0 1767 1767) +Process: 3 I/O blocked... (2000 0 1768 1768) +Process: 3 registered... (2000 0 1768 1768) +Process: 3 I/O blocked... (2000 0 1769 1769) +Process: 3 registered... (2000 0 1769 1769) +Process: 3 I/O blocked... (2000 0 1770 1770) +Process: 3 registered... (2000 0 1770 1770) +Process: 3 I/O blocked... (2000 0 1771 1771) +Process: 3 registered... (2000 0 1771 1771) +Process: 3 I/O blocked... (2000 0 1772 1772) +Process: 3 registered... (2000 0 1772 1772) +Process: 3 I/O blocked... (2000 0 1773 1773) +Process: 3 registered... (2000 0 1773 1773) +Process: 3 I/O blocked... (2000 0 1774 1774) +Process: 3 registered... (2000 0 1774 1774) +Process: 3 I/O blocked... (2000 0 1775 1775) +Process: 3 registered... (2000 0 1775 1775) +Process: 3 I/O blocked... (2000 0 1776 1776) +Process: 3 registered... (2000 0 1776 1776) +Process: 3 I/O blocked... (2000 0 1777 1777) +Process: 3 registered... (2000 0 1777 1777) +Process: 3 I/O blocked... (2000 0 1778 1778) +Process: 3 registered... (2000 0 1778 1778) +Process: 3 I/O blocked... (2000 0 1779 1779) +Process: 3 registered... (2000 0 1779 1779) +Process: 3 I/O blocked... (2000 0 1780 1780) +Process: 3 registered... (2000 0 1780 1780) +Process: 3 I/O blocked... (2000 0 1781 1781) +Process: 3 registered... (2000 0 1781 1781) +Process: 3 I/O blocked... (2000 0 1782 1782) +Process: 3 registered... (2000 0 1782 1782) +Process: 3 I/O blocked... (2000 0 1783 1783) +Process: 3 registered... (2000 0 1783 1783) +Process: 3 I/O blocked... (2000 0 1784 1784) +Process: 3 registered... (2000 0 1784 1784) +Process: 3 I/O blocked... (2000 0 1785 1785) +Process: 3 registered... (2000 0 1785 1785) +Process: 3 I/O blocked... (2000 0 1786 1786) +Process: 3 registered... (2000 0 1786 1786) +Process: 3 I/O blocked... (2000 0 1787 1787) +Process: 3 registered... (2000 0 1787 1787) +Process: 3 I/O blocked... (2000 0 1788 1788) +Process: 3 registered... (2000 0 1788 1788) +Process: 3 I/O blocked... (2000 0 1789 1789) +Process: 3 registered... (2000 0 1789 1789) +Process: 3 I/O blocked... (2000 0 1790 1790) +Process: 3 registered... (2000 0 1790 1790) +Process: 3 I/O blocked... (2000 0 1791 1791) +Process: 3 registered... (2000 0 1791 1791) +Process: 3 I/O blocked... (2000 0 1792 1792) +Process: 3 registered... (2000 0 1792 1792) +Process: 3 I/O blocked... (2000 0 1793 1793) +Process: 3 registered... (2000 0 1793 1793) +Process: 3 I/O blocked... (2000 0 1794 1794) +Process: 3 registered... (2000 0 1794 1794) +Process: 3 I/O blocked... (2000 0 1795 1795) +Process: 3 registered... (2000 0 1795 1795) +Process: 3 I/O blocked... (2000 0 1796 1796) +Process: 3 registered... (2000 0 1796 1796) +Process: 3 I/O blocked... (2000 0 1797 1797) +Process: 3 registered... (2000 0 1797 1797) +Process: 3 I/O blocked... (2000 0 1798 1798) +Process: 3 registered... (2000 0 1798 1798) +Process: 3 I/O blocked... (2000 0 1799 1799) +Process: 3 registered... (2000 0 1799 1799) +Process: 3 I/O blocked... (2000 0 1800 1800) +Process: 3 registered... (2000 0 1800 1800) +Process: 3 I/O blocked... (2000 0 1801 1801) +Process: 3 registered... (2000 0 1801 1801) +Process: 3 I/O blocked... (2000 0 1802 1802) +Process: 3 registered... (2000 0 1802 1802) +Process: 3 I/O blocked... (2000 0 1803 1803) +Process: 3 registered... (2000 0 1803 1803) +Process: 3 I/O blocked... (2000 0 1804 1804) +Process: 3 registered... (2000 0 1804 1804) +Process: 3 I/O blocked... (2000 0 1805 1805) +Process: 3 registered... (2000 0 1805 1805) +Process: 3 I/O blocked... (2000 0 1806 1806) +Process: 3 registered... (2000 0 1806 1806) +Process: 3 I/O blocked... (2000 0 1807 1807) +Process: 3 registered... (2000 0 1807 1807) +Process: 3 I/O blocked... (2000 0 1808 1808) +Process: 3 registered... (2000 0 1808 1808) +Process: 3 I/O blocked... (2000 0 1809 1809) +Process: 3 registered... (2000 0 1809 1809) +Process: 3 I/O blocked... (2000 0 1810 1810) +Process: 3 registered... (2000 0 1810 1810) +Process: 3 I/O blocked... (2000 0 1811 1811) +Process: 3 registered... (2000 0 1811 1811) +Process: 3 I/O blocked... (2000 0 1812 1812) +Process: 3 registered... (2000 0 1812 1812) +Process: 3 I/O blocked... (2000 0 1813 1813) +Process: 3 registered... (2000 0 1813 1813) +Process: 3 I/O blocked... (2000 0 1814 1814) +Process: 3 registered... (2000 0 1814 1814) +Process: 3 I/O blocked... (2000 0 1815 1815) +Process: 3 registered... (2000 0 1815 1815) +Process: 3 I/O blocked... (2000 0 1816 1816) +Process: 3 registered... (2000 0 1816 1816) +Process: 3 I/O blocked... (2000 0 1817 1817) +Process: 3 registered... (2000 0 1817 1817) +Process: 3 I/O blocked... (2000 0 1818 1818) +Process: 3 registered... (2000 0 1818 1818) +Process: 3 I/O blocked... (2000 0 1819 1819) +Process: 3 registered... (2000 0 1819 1819) +Process: 3 I/O blocked... (2000 0 1820 1820) +Process: 3 registered... (2000 0 1820 1820) +Process: 3 I/O blocked... (2000 0 1821 1821) +Process: 3 registered... (2000 0 1821 1821) +Process: 3 I/O blocked... (2000 0 1822 1822) +Process: 3 registered... (2000 0 1822 1822) +Process: 3 I/O blocked... (2000 0 1823 1823) +Process: 3 registered... (2000 0 1823 1823) +Process: 3 I/O blocked... (2000 0 1824 1824) +Process: 3 registered... (2000 0 1824 1824) +Process: 3 I/O blocked... (2000 0 1825 1825) +Process: 3 registered... (2000 0 1825 1825) +Process: 3 I/O blocked... (2000 0 1826 1826) +Process: 3 registered... (2000 0 1826 1826) +Process: 3 I/O blocked... (2000 0 1827 1827) +Process: 3 registered... (2000 0 1827 1827) +Process: 3 I/O blocked... (2000 0 1828 1828) +Process: 3 registered... (2000 0 1828 1828) +Process: 3 I/O blocked... (2000 0 1829 1829) +Process: 3 registered... (2000 0 1829 1829) +Process: 3 I/O blocked... (2000 0 1830 1830) +Process: 3 registered... (2000 0 1830 1830) +Process: 3 I/O blocked... (2000 0 1831 1831) +Process: 3 registered... (2000 0 1831 1831) +Process: 3 I/O blocked... (2000 0 1832 1832) +Process: 3 registered... (2000 0 1832 1832) +Process: 3 I/O blocked... (2000 0 1833 1833) +Process: 3 registered... (2000 0 1833 1833) +Process: 3 I/O blocked... (2000 0 1834 1834) +Process: 3 registered... (2000 0 1834 1834) +Process: 3 I/O blocked... (2000 0 1835 1835) +Process: 3 registered... (2000 0 1835 1835) +Process: 3 I/O blocked... (2000 0 1836 1836) +Process: 3 registered... (2000 0 1836 1836) +Process: 3 I/O blocked... (2000 0 1837 1837) +Process: 3 registered... (2000 0 1837 1837) +Process: 3 I/O blocked... (2000 0 1838 1838) +Process: 3 registered... (2000 0 1838 1838) +Process: 3 I/O blocked... (2000 0 1839 1839) +Process: 3 registered... (2000 0 1839 1839) +Process: 3 I/O blocked... (2000 0 1840 1840) +Process: 3 registered... (2000 0 1840 1840) +Process: 3 I/O blocked... (2000 0 1841 1841) +Process: 3 registered... (2000 0 1841 1841) +Process: 3 I/O blocked... (2000 0 1842 1842) +Process: 3 registered... (2000 0 1842 1842) +Process: 3 I/O blocked... (2000 0 1843 1843) +Process: 3 registered... (2000 0 1843 1843) +Process: 3 I/O blocked... (2000 0 1844 1844) +Process: 3 registered... (2000 0 1844 1844) +Process: 3 I/O blocked... (2000 0 1845 1845) +Process: 3 registered... (2000 0 1845 1845) +Process: 3 I/O blocked... (2000 0 1846 1846) +Process: 3 registered... (2000 0 1846 1846) +Process: 3 I/O blocked... (2000 0 1847 1847) +Process: 3 registered... (2000 0 1847 1847) +Process: 3 I/O blocked... (2000 0 1848 1848) +Process: 3 registered... (2000 0 1848 1848) +Process: 3 I/O blocked... (2000 0 1849 1849) +Process: 3 registered... (2000 0 1849 1849) +Process: 3 I/O blocked... (2000 0 1850 1850) +Process: 3 registered... (2000 0 1850 1850) +Process: 3 I/O blocked... (2000 0 1851 1851) +Process: 3 registered... (2000 0 1851 1851) +Process: 3 I/O blocked... (2000 0 1852 1852) +Process: 3 registered... (2000 0 1852 1852) +Process: 3 I/O blocked... (2000 0 1853 1853) +Process: 3 registered... (2000 0 1853 1853) +Process: 3 I/O blocked... (2000 0 1854 1854) +Process: 3 registered... (2000 0 1854 1854) +Process: 3 I/O blocked... (2000 0 1855 1855) +Process: 3 registered... (2000 0 1855 1855) +Process: 3 I/O blocked... (2000 0 1856 1856) +Process: 3 registered... (2000 0 1856 1856) +Process: 3 I/O blocked... (2000 0 1857 1857) +Process: 3 registered... (2000 0 1857 1857) +Process: 3 I/O blocked... (2000 0 1858 1858) +Process: 3 registered... (2000 0 1858 1858) +Process: 3 I/O blocked... (2000 0 1859 1859) +Process: 3 registered... (2000 0 1859 1859) +Process: 3 I/O blocked... (2000 0 1860 1860) +Process: 3 registered... (2000 0 1860 1860) +Process: 3 I/O blocked... (2000 0 1861 1861) +Process: 3 registered... (2000 0 1861 1861) +Process: 3 I/O blocked... (2000 0 1862 1862) +Process: 3 registered... (2000 0 1862 1862) +Process: 3 I/O blocked... (2000 0 1863 1863) +Process: 3 registered... (2000 0 1863 1863) +Process: 3 I/O blocked... (2000 0 1864 1864) +Process: 3 registered... (2000 0 1864 1864) +Process: 3 I/O blocked... (2000 0 1865 1865) +Process: 3 registered... (2000 0 1865 1865) +Process: 3 I/O blocked... (2000 0 1866 1866) +Process: 3 registered... (2000 0 1866 1866) +Process: 3 I/O blocked... (2000 0 1867 1867) +Process: 3 registered... (2000 0 1867 1867) +Process: 3 I/O blocked... (2000 0 1868 1868) +Process: 3 registered... (2000 0 1868 1868) +Process: 3 I/O blocked... (2000 0 1869 1869) +Process: 3 registered... (2000 0 1869 1869) +Process: 3 I/O blocked... (2000 0 1870 1870) +Process: 3 registered... (2000 0 1870 1870) +Process: 3 I/O blocked... (2000 0 1871 1871) +Process: 3 registered... (2000 0 1871 1871) +Process: 3 I/O blocked... (2000 0 1872 1872) +Process: 3 registered... (2000 0 1872 1872) +Process: 3 I/O blocked... (2000 0 1873 1873) +Process: 3 registered... (2000 0 1873 1873) +Process: 3 I/O blocked... (2000 0 1874 1874) +Process: 3 registered... (2000 0 1874 1874) +Process: 3 I/O blocked... (2000 0 1875 1875) +Process: 3 registered... (2000 0 1875 1875) +Process: 3 I/O blocked... (2000 0 1876 1876) +Process: 3 registered... (2000 0 1876 1876) +Process: 3 I/O blocked... (2000 0 1877 1877) +Process: 3 registered... (2000 0 1877 1877) +Process: 3 I/O blocked... (2000 0 1878 1878) +Process: 3 registered... (2000 0 1878 1878) +Process: 3 I/O blocked... (2000 0 1879 1879) +Process: 3 registered... (2000 0 1879 1879) +Process: 3 I/O blocked... (2000 0 1880 1880) +Process: 3 registered... (2000 0 1880 1880) +Process: 3 I/O blocked... (2000 0 1881 1881) +Process: 3 registered... (2000 0 1881 1881) +Process: 3 I/O blocked... (2000 0 1882 1882) +Process: 3 registered... (2000 0 1882 1882) +Process: 3 I/O blocked... (2000 0 1883 1883) +Process: 3 registered... (2000 0 1883 1883) +Process: 3 I/O blocked... (2000 0 1884 1884) +Process: 3 registered... (2000 0 1884 1884) +Process: 3 I/O blocked... (2000 0 1885 1885) +Process: 3 registered... (2000 0 1885 1885) +Process: 3 I/O blocked... (2000 0 1886 1886) +Process: 3 registered... (2000 0 1886 1886) +Process: 3 I/O blocked... (2000 0 1887 1887) +Process: 3 registered... (2000 0 1887 1887) +Process: 3 I/O blocked... (2000 0 1888 1888) +Process: 3 registered... (2000 0 1888 1888) +Process: 3 I/O blocked... (2000 0 1889 1889) +Process: 3 registered... (2000 0 1889 1889) +Process: 3 I/O blocked... (2000 0 1890 1890) +Process: 3 registered... (2000 0 1890 1890) +Process: 3 I/O blocked... (2000 0 1891 1891) +Process: 3 registered... (2000 0 1891 1891) +Process: 3 I/O blocked... (2000 0 1892 1892) +Process: 3 registered... (2000 0 1892 1892) +Process: 3 I/O blocked... (2000 0 1893 1893) +Process: 3 registered... (2000 0 1893 1893) +Process: 3 I/O blocked... (2000 0 1894 1894) +Process: 3 registered... (2000 0 1894 1894) +Process: 3 I/O blocked... (2000 0 1895 1895) +Process: 3 registered... (2000 0 1895 1895) +Process: 3 I/O blocked... (2000 0 1896 1896) +Process: 3 registered... (2000 0 1896 1896) +Process: 3 I/O blocked... (2000 0 1897 1897) +Process: 3 registered... (2000 0 1897 1897) +Process: 3 I/O blocked... (2000 0 1898 1898) +Process: 3 registered... (2000 0 1898 1898) +Process: 3 I/O blocked... (2000 0 1899 1899) +Process: 3 registered... (2000 0 1899 1899) +Process: 3 I/O blocked... (2000 0 1900 1900) +Process: 3 registered... (2000 0 1900 1900) +Process: 3 I/O blocked... (2000 0 1901 1901) +Process: 3 registered... (2000 0 1901 1901) +Process: 3 I/O blocked... (2000 0 1902 1902) +Process: 3 registered... (2000 0 1902 1902) +Process: 3 I/O blocked... (2000 0 1903 1903) +Process: 3 registered... (2000 0 1903 1903) +Process: 3 I/O blocked... (2000 0 1904 1904) +Process: 3 registered... (2000 0 1904 1904) +Process: 3 I/O blocked... (2000 0 1905 1905) +Process: 3 registered... (2000 0 1905 1905) +Process: 3 I/O blocked... (2000 0 1906 1906) +Process: 3 registered... (2000 0 1906 1906) +Process: 3 I/O blocked... (2000 0 1907 1907) +Process: 3 registered... (2000 0 1907 1907) +Process: 3 I/O blocked... (2000 0 1908 1908) +Process: 3 registered... (2000 0 1908 1908) +Process: 3 I/O blocked... (2000 0 1909 1909) +Process: 3 registered... (2000 0 1909 1909) +Process: 3 I/O blocked... (2000 0 1910 1910) +Process: 3 registered... (2000 0 1910 1910) +Process: 3 I/O blocked... (2000 0 1911 1911) +Process: 3 registered... (2000 0 1911 1911) +Process: 3 I/O blocked... (2000 0 1912 1912) +Process: 3 registered... (2000 0 1912 1912) +Process: 3 I/O blocked... (2000 0 1913 1913) +Process: 3 registered... (2000 0 1913 1913) +Process: 3 I/O blocked... (2000 0 1914 1914) +Process: 3 registered... (2000 0 1914 1914) +Process: 3 I/O blocked... (2000 0 1915 1915) +Process: 3 registered... (2000 0 1915 1915) +Process: 3 I/O blocked... (2000 0 1916 1916) +Process: 3 registered... (2000 0 1916 1916) +Process: 3 I/O blocked... (2000 0 1917 1917) +Process: 3 registered... (2000 0 1917 1917) +Process: 3 I/O blocked... (2000 0 1918 1918) +Process: 3 registered... (2000 0 1918 1918) +Process: 3 I/O blocked... (2000 0 1919 1919) +Process: 3 registered... (2000 0 1919 1919) +Process: 3 I/O blocked... (2000 0 1920 1920) +Process: 3 registered... (2000 0 1920 1920) +Process: 3 I/O blocked... (2000 0 1921 1921) +Process: 3 registered... (2000 0 1921 1921) +Process: 3 I/O blocked... (2000 0 1922 1922) +Process: 3 registered... (2000 0 1922 1922) +Process: 3 I/O blocked... (2000 0 1923 1923) +Process: 3 registered... (2000 0 1923 1923) +Process: 3 I/O blocked... (2000 0 1924 1924) +Process: 3 registered... (2000 0 1924 1924) +Process: 3 I/O blocked... (2000 0 1925 1925) +Process: 3 registered... (2000 0 1925 1925) +Process: 3 I/O blocked... (2000 0 1926 1926) +Process: 3 registered... (2000 0 1926 1926) +Process: 3 I/O blocked... (2000 0 1927 1927) +Process: 3 registered... (2000 0 1927 1927) +Process: 3 I/O blocked... (2000 0 1928 1928) +Process: 3 registered... (2000 0 1928 1928) +Process: 3 I/O blocked... (2000 0 1929 1929) +Process: 3 registered... (2000 0 1929 1929) +Process: 3 I/O blocked... (2000 0 1930 1930) +Process: 3 registered... (2000 0 1930 1930) +Process: 3 I/O blocked... (2000 0 1931 1931) +Process: 3 registered... (2000 0 1931 1931) +Process: 3 I/O blocked... (2000 0 1932 1932) +Process: 3 registered... (2000 0 1932 1932) +Process: 3 I/O blocked... (2000 0 1933 1933) +Process: 3 registered... (2000 0 1933 1933) +Process: 3 I/O blocked... (2000 0 1934 1934) +Process: 3 registered... (2000 0 1934 1934) +Process: 3 I/O blocked... (2000 0 1935 1935) +Process: 3 registered... (2000 0 1935 1935) +Process: 3 I/O blocked... (2000 0 1936 1936) +Process: 3 registered... (2000 0 1936 1936) +Process: 3 I/O blocked... (2000 0 1937 1937) +Process: 3 registered... (2000 0 1937 1937) +Process: 3 I/O blocked... (2000 0 1938 1938) +Process: 3 registered... (2000 0 1938 1938) +Process: 3 I/O blocked... (2000 0 1939 1939) +Process: 3 registered... (2000 0 1939 1939) +Process: 3 I/O blocked... (2000 0 1940 1940) +Process: 3 registered... (2000 0 1940 1940) +Process: 3 I/O blocked... (2000 0 1941 1941) +Process: 3 registered... (2000 0 1941 1941) +Process: 3 I/O blocked... (2000 0 1942 1942) +Process: 3 registered... (2000 0 1942 1942) +Process: 3 I/O blocked... (2000 0 1943 1943) +Process: 3 registered... (2000 0 1943 1943) +Process: 3 I/O blocked... (2000 0 1944 1944) +Process: 3 registered... (2000 0 1944 1944) +Process: 3 I/O blocked... (2000 0 1945 1945) +Process: 3 registered... (2000 0 1945 1945) +Process: 3 I/O blocked... (2000 0 1946 1946) +Process: 3 registered... (2000 0 1946 1946) +Process: 3 I/O blocked... (2000 0 1947 1947) +Process: 3 registered... (2000 0 1947 1947) +Process: 3 I/O blocked... (2000 0 1948 1948) +Process: 3 registered... (2000 0 1948 1948) +Process: 3 I/O blocked... (2000 0 1949 1949) +Process: 3 registered... (2000 0 1949 1949) +Process: 3 I/O blocked... (2000 0 1950 1950) +Process: 3 registered... (2000 0 1950 1950) +Process: 3 I/O blocked... (2000 0 1951 1951) +Process: 3 registered... (2000 0 1951 1951) +Process: 3 I/O blocked... (2000 0 1952 1952) +Process: 3 registered... (2000 0 1952 1952) +Process: 3 I/O blocked... (2000 0 1953 1953) +Process: 3 registered... (2000 0 1953 1953) +Process: 3 I/O blocked... (2000 0 1954 1954) +Process: 3 registered... (2000 0 1954 1954) +Process: 3 I/O blocked... (2000 0 1955 1955) +Process: 3 registered... (2000 0 1955 1955) +Process: 3 I/O blocked... (2000 0 1956 1956) +Process: 3 registered... (2000 0 1956 1956) +Process: 3 I/O blocked... (2000 0 1957 1957) +Process: 3 registered... (2000 0 1957 1957) +Process: 3 I/O blocked... (2000 0 1958 1958) +Process: 3 registered... (2000 0 1958 1958) +Process: 3 I/O blocked... (2000 0 1959 1959) +Process: 3 registered... (2000 0 1959 1959) +Process: 3 I/O blocked... (2000 0 1960 1960) +Process: 3 registered... (2000 0 1960 1960) +Process: 3 I/O blocked... (2000 0 1961 1961) +Process: 3 registered... (2000 0 1961 1961) +Process: 3 I/O blocked... (2000 0 1962 1962) +Process: 3 registered... (2000 0 1962 1962) +Process: 3 I/O blocked... (2000 0 1963 1963) +Process: 3 registered... (2000 0 1963 1963) +Process: 3 I/O blocked... (2000 0 1964 1964) +Process: 3 registered... (2000 0 1964 1964) +Process: 3 I/O blocked... (2000 0 1965 1965) +Process: 3 registered... (2000 0 1965 1965) +Process: 3 I/O blocked... (2000 0 1966 1966) +Process: 3 registered... (2000 0 1966 1966) +Process: 3 I/O blocked... (2000 0 1967 1967) +Process: 3 registered... (2000 0 1967 1967) +Process: 3 I/O blocked... (2000 0 1968 1968) +Process: 3 registered... (2000 0 1968 1968) +Process: 3 I/O blocked... (2000 0 1969 1969) +Process: 3 registered... (2000 0 1969 1969) +Process: 3 I/O blocked... (2000 0 1970 1970) +Process: 3 registered... (2000 0 1970 1970) +Process: 3 I/O blocked... (2000 0 1971 1971) +Process: 3 registered... (2000 0 1971 1971) +Process: 3 I/O blocked... (2000 0 1972 1972) +Process: 3 registered... (2000 0 1972 1972) +Process: 3 I/O blocked... (2000 0 1973 1973) +Process: 3 registered... (2000 0 1973 1973) +Process: 3 I/O blocked... (2000 0 1974 1974) +Process: 3 registered... (2000 0 1974 1974) +Process: 3 I/O blocked... (2000 0 1975 1975) +Process: 3 registered... (2000 0 1975 1975) +Process: 3 I/O blocked... (2000 0 1976 1976) +Process: 3 registered... (2000 0 1976 1976) +Process: 3 I/O blocked... (2000 0 1977 1977) +Process: 3 registered... (2000 0 1977 1977) +Process: 3 I/O blocked... (2000 0 1978 1978) +Process: 3 registered... (2000 0 1978 1978) +Process: 3 I/O blocked... (2000 0 1979 1979) +Process: 3 registered... (2000 0 1979 1979) +Process: 3 I/O blocked... (2000 0 1980 1980) +Process: 3 registered... (2000 0 1980 1980) +Process: 3 I/O blocked... (2000 0 1981 1981) +Process: 3 registered... (2000 0 1981 1981) +Process: 3 I/O blocked... (2000 0 1982 1982) +Process: 3 registered... (2000 0 1982 1982) +Process: 3 I/O blocked... (2000 0 1983 1983) +Process: 3 registered... (2000 0 1983 1983) +Process: 3 I/O blocked... (2000 0 1984 1984) +Process: 3 registered... (2000 0 1984 1984) +Process: 3 I/O blocked... (2000 0 1985 1985) +Process: 3 registered... (2000 0 1985 1985) +Process: 3 I/O blocked... (2000 0 1986 1986) +Process: 3 registered... (2000 0 1986 1986) +Process: 3 I/O blocked... (2000 0 1987 1987) +Process: 3 registered... (2000 0 1987 1987) +Process: 3 I/O blocked... (2000 0 1988 1988) +Process: 3 registered... (2000 0 1988 1988) +Process: 3 I/O blocked... (2000 0 1989 1989) +Process: 3 registered... (2000 0 1989 1989) +Process: 3 I/O blocked... (2000 0 1990 1990) +Process: 3 registered... (2000 0 1990 1990) +Process: 3 I/O blocked... (2000 0 1991 1991) +Process: 3 registered... (2000 0 1991 1991) +Process: 3 I/O blocked... (2000 0 1992 1992) +Process: 3 registered... (2000 0 1992 1992) +Process: 3 I/O blocked... (2000 0 1993 1993) +Process: 3 registered... (2000 0 1993 1993) +Process: 3 I/O blocked... (2000 0 1994 1994) +Process: 3 registered... (2000 0 1994 1994) +Process: 3 I/O blocked... (2000 0 1995 1995) +Process: 3 registered... (2000 0 1995 1995) +Process: 3 I/O blocked... (2000 0 1996 1996) +Process: 3 registered... (2000 0 1996 1996) +Process: 3 I/O blocked... (2000 0 1997 1997) +Process: 3 registered... (2000 0 1997 1997) +Process: 3 I/O blocked... (2000 0 1998 1998) +Process: 3 registered... (2000 0 1998 1998) +Process: 3 I/O blocked... (2000 0 1999 1999) +Process: 3 registered... (2000 0 1999 1999) diff --git a/EOPSY/lab3/task3/processesten b/EOPSY/lab3/task3/processesten new file mode 100644 index 00000000..99045725 --- /dev/null +++ b/EOPSY/lab3/task3/processesten @@ -0,0 +1,149 @@ +Process: 0 registered... (2000 500 0 0) +Process: 0 I/O blocked... (2000 500 500 500) +Process: 1 registered... (2000 500 0 0) +Process: 1 I/O blocked... (2000 500 500 500) +Process: 0 registered... (2000 500 500 500) +Process: 0 I/O blocked... (2000 500 1000 1000) +Process: 1 registered... (2000 500 500 500) +Process: 1 I/O blocked... (2000 500 1000 1000) +Process: 0 registered... (2000 500 1000 1000) +Process: 0 I/O blocked... (2000 500 1500 1500) +Process: 1 registered... (2000 500 1000 1000) +Process: 1 I/O blocked... (2000 500 1500 1500) +Process: 0 registered... (2000 500 1500 1500) +Process: 0 completed... (2000 500 2000 2000) +Process: 1 registered... (2000 500 1500 1500) +Process: 1 completed... (2000 500 2000 2000) +Process: 2 registered... (2000 500 0 0) +Process: 2 I/O blocked... (2000 500 500 500) +Process: 3 registered... (2000 0 0 0) +Process: 3 I/O blocked... (2000 0 1 1) +Process: 2 registered... (2000 500 500 500) +Process: 2 I/O blocked... (2000 500 1000 1000) +Process: 3 registered... (2000 0 1 1) +Process: 3 I/O blocked... (2000 0 2 2) +Process: 2 registered... (2000 500 1000 1000) +Process: 2 I/O blocked... (2000 500 1500 1500) +Process: 3 registered... (2000 0 2 2) +Process: 3 I/O blocked... (2000 0 3 3) +Process: 2 registered... (2000 500 1500 1500) +Process: 2 completed... (2000 500 2000 2000) +Process: 3 registered... (2000 0 3 3) +Process: 3 I/O blocked... (2000 0 3 3) +Process: 4 registered... (2000 100 0 0) +Process: 4 I/O blocked... (2000 100 100 100) +Process: 3 registered... (2000 0 3 3) +Process: 3 I/O blocked... (2000 0 4 4) +Process: 4 registered... (2000 100 100 100) +Process: 4 I/O blocked... (2000 100 200 200) +Process: 3 registered... (2000 0 4 4) +Process: 3 I/O blocked... (2000 0 5 5) +Process: 4 registered... (2000 100 200 200) +Process: 4 I/O blocked... (2000 100 300 300) +Process: 3 registered... (2000 0 5 5) +Process: 3 I/O blocked... (2000 0 6 6) +Process: 4 registered... (2000 100 300 300) +Process: 4 I/O blocked... (2000 100 400 400) +Process: 3 registered... (2000 0 6 6) +Process: 3 I/O blocked... (2000 0 7 7) +Process: 4 registered... (2000 100 400 400) +Process: 4 I/O blocked... (2000 100 500 500) +Process: 3 registered... (2000 0 7 7) +Process: 3 I/O blocked... (2000 0 8 8) +Process: 4 registered... (2000 100 500 500) +Process: 4 I/O blocked... (2000 100 600 600) +Process: 3 registered... (2000 0 8 8) +Process: 3 I/O blocked... (2000 0 9 9) +Process: 4 registered... (2000 100 600 600) +Process: 4 I/O blocked... (2000 100 700 700) +Process: 3 registered... (2000 0 9 9) +Process: 3 I/O blocked... (2000 0 10 10) +Process: 4 registered... (2000 100 700 700) +Process: 4 I/O blocked... (2000 100 800 800) +Process: 3 registered... (2000 0 10 10) +Process: 3 I/O blocked... (2000 0 11 11) +Process: 4 registered... (2000 100 800 800) +Process: 4 I/O blocked... (2000 100 900 900) +Process: 3 registered... (2000 0 11 11) +Process: 3 I/O blocked... (2000 0 12 12) +Process: 4 registered... (2000 100 900 900) +Process: 4 I/O blocked... (2000 100 1000 1000) +Process: 3 registered... (2000 0 12 12) +Process: 3 I/O blocked... (2000 0 13 13) +Process: 4 registered... (2000 100 1000 1000) +Process: 4 I/O blocked... (2000 100 1100 1100) +Process: 3 registered... (2000 0 13 13) +Process: 3 I/O blocked... (2000 0 14 14) +Process: 4 registered... (2000 100 1100 1100) +Process: 4 I/O blocked... (2000 100 1200 1200) +Process: 3 registered... (2000 0 14 14) +Process: 3 I/O blocked... (2000 0 15 15) +Process: 4 registered... (2000 100 1200 1200) +Process: 4 I/O blocked... (2000 100 1300 1300) +Process: 3 registered... (2000 0 15 15) +Process: 3 I/O blocked... (2000 0 16 16) +Process: 4 registered... (2000 100 1300 1300) +Process: 4 I/O blocked... (2000 100 1400 1400) +Process: 3 registered... (2000 0 16 16) +Process: 3 I/O blocked... (2000 0 17 17) +Process: 4 registered... (2000 100 1400 1400) +Process: 4 I/O blocked... (2000 100 1500 1500) +Process: 3 registered... (2000 0 17 17) +Process: 3 I/O blocked... (2000 0 18 18) +Process: 4 registered... (2000 100 1500 1500) +Process: 4 I/O blocked... (2000 100 1600 1600) +Process: 3 registered... (2000 0 18 18) +Process: 3 I/O blocked... (2000 0 19 19) +Process: 4 registered... (2000 100 1600 1600) +Process: 4 I/O blocked... (2000 100 1700 1700) +Process: 3 registered... (2000 0 19 19) +Process: 3 I/O blocked... (2000 0 20 20) +Process: 4 registered... (2000 100 1700 1700) +Process: 4 I/O blocked... (2000 100 1800 1800) +Process: 3 registered... (2000 0 20 20) +Process: 3 I/O blocked... (2000 0 21 21) +Process: 4 registered... (2000 100 1800 1800) +Process: 4 I/O blocked... (2000 100 1900 1900) +Process: 3 registered... (2000 0 21 21) +Process: 3 I/O blocked... (2000 0 22 22) +Process: 4 registered... (2000 100 1900 1900) +Process: 4 completed... (2000 100 2000 2000) +Process: 3 registered... (2000 0 22 22) +Process: 3 I/O blocked... (2000 0 22 22) +Process: 5 registered... (2000 200 0 0) +Process: 5 I/O blocked... (2000 200 200 200) +Process: 3 registered... (2000 0 22 22) +Process: 3 I/O blocked... (2000 0 23 23) +Process: 5 registered... (2000 200 200 200) +Process: 5 I/O blocked... (2000 200 400 400) +Process: 3 registered... (2000 0 23 23) +Process: 3 I/O blocked... (2000 0 24 24) +Process: 5 registered... (2000 200 400 400) +Process: 5 I/O blocked... (2000 200 600 600) +Process: 3 registered... (2000 0 24 24) +Process: 3 I/O blocked... (2000 0 25 25) +Process: 5 registered... (2000 200 600 600) +Process: 5 I/O blocked... (2000 200 800 800) +Process: 3 registered... (2000 0 25 25) +Process: 3 I/O blocked... (2000 0 26 26) +Process: 5 registered... (2000 200 800 800) +Process: 5 I/O blocked... (2000 200 1000 1000) +Process: 3 registered... (2000 0 26 26) +Process: 3 I/O blocked... (2000 0 27 27) +Process: 5 registered... (2000 200 1000 1000) +Process: 5 I/O blocked... (2000 200 1200 1200) +Process: 3 registered... (2000 0 27 27) +Process: 3 I/O blocked... (2000 0 28 28) +Process: 5 registered... (2000 200 1200 1200) +Process: 5 I/O blocked... (2000 200 1400 1400) +Process: 3 registered... (2000 0 28 28) +Process: 3 I/O blocked... (2000 0 29 29) +Process: 5 registered... (2000 200 1400 1400) +Process: 5 I/O blocked... (2000 200 1600 1600) +Process: 3 registered... (2000 0 29 29) +Process: 3 I/O blocked... (2000 0 30 30) +Process: 5 registered... (2000 200 1600 1600) +Process: 5 I/O blocked... (2000 200 1800 1800) +Process: 3 registered... (2000 0 30 30) +Process: 3 I/O blocked... (2000 0 31 31) +Process: 5 registered... (2000 200 1800 1800) diff --git a/EOPSY/lab3/task3/processestwo b/EOPSY/lab3/task3/processestwo new file mode 100644 index 00000000..ba298264 --- /dev/null +++ b/EOPSY/lab3/task3/processestwo @@ -0,0 +1,16 @@ +Process: 0 registered... (2000 500 0 0) +Process: 0 I/O blocked... (2000 500 500 500) +Process: 1 registered... (2000 500 0 0) +Process: 1 I/O blocked... (2000 500 500 500) +Process: 0 registered... (2000 500 500 500) +Process: 0 I/O blocked... (2000 500 1000 1000) +Process: 1 registered... (2000 500 500 500) +Process: 1 I/O blocked... (2000 500 1000 1000) +Process: 0 registered... (2000 500 1000 1000) +Process: 0 I/O blocked... (2000 500 1500 1500) +Process: 1 registered... (2000 500 1000 1000) +Process: 1 I/O blocked... (2000 500 1500 1500) +Process: 0 registered... (2000 500 1500 1500) +Process: 0 completed... (2000 500 2000 2000) +Process: 1 registered... (2000 500 1500 1500) +Process: 1 completed... (2000 500 2000 2000) diff --git a/EOPSY/lab3/task3/resultsfive b/EOPSY/lab3/task3/resultsfive new file mode 100644 index 00000000..e46d5659 --- /dev/null +++ b/EOPSY/lab3/task3/resultsfive @@ -0,0 +1,11 @@ +Scheduling Type: Batch (Nonpreemptive) +Scheduling Name: First-Come First-Served +Simulation Run Time: 10000 +Mean: 2000 +Standard Deviation: 0 +Process # CPU Time IO Blocking CPU Completed CPU Blocked +0 2000 (ms) 500 (ms) 2000 (ms) 3 times +1 2000 (ms) 500 (ms) 2000 (ms) 3 times +2 2000 (ms) 500 (ms) 2000 (ms) 3 times +3 2000 (ms) 0 (ms) 2000 (ms) 2001 times +4 2000 (ms) 100 (ms) 2000 (ms) 19 times diff --git a/EOPSY/lab3/task3/resultsten b/EOPSY/lab3/task3/resultsten new file mode 100644 index 00000000..6b061898 --- /dev/null +++ b/EOPSY/lab3/task3/resultsten @@ -0,0 +1,16 @@ +Scheduling Type: Batch (Nonpreemptive) +Scheduling Name: First-Come First-Served +Simulation Run Time: 10000 +Mean: 2000 +Standard Deviation: 0 +Process # CPU Time IO Blocking CPU Completed CPU Blocked +0 2000 (ms) 500 (ms) 2000 (ms) 3 times +1 2000 (ms) 500 (ms) 2000 (ms) 3 times +2 2000 (ms) 500 (ms) 2000 (ms) 3 times +3 2000 (ms) 0 (ms) 31 (ms) 33 times +4 2000 (ms) 100 (ms) 2000 (ms) 19 times +5 2000 (ms) 200 (ms) 1969 (ms) 9 times +6 2000 (ms) 300 (ms) 0 (ms) 0 times +7 2000 (ms) 400 (ms) 0 (ms) 0 times +8 2000 (ms) 500 (ms) 0 (ms) 0 times +9 2000 (ms) 600 (ms) 0 (ms) 0 times diff --git a/EOPSY/lab3/task3/resultstwo b/EOPSY/lab3/task3/resultstwo new file mode 100644 index 00000000..bc95877d --- /dev/null +++ b/EOPSY/lab3/task3/resultstwo @@ -0,0 +1,8 @@ +Scheduling Type: Batch (Nonpreemptive) +Scheduling Name: First-Come First-Served +Simulation Run Time: 4000 +Mean: 2000 +Standard Deviation: 0 +Process # CPU Time IO Blocking CPU Completed CPU Blocked +0 2000 (ms) 500 (ms) 2000 (ms) 3 times +1 2000 (ms) 500 (ms) 2000 (ms) 3 times diff --git a/EOPSY/lab3/task3/work/COPYING.TXT b/EOPSY/lab3/task3/work/COPYING.TXT new file mode 100644 index 00000000..60549be5 --- /dev/null +++ b/EOPSY/lab3/task3/work/COPYING.TXT @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 19yy + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/EOPSY/lab3/task3/work/Common.class b/EOPSY/lab3/task3/work/Common.class new file mode 100644 index 00000000..7273770b Binary files /dev/null and b/EOPSY/lab3/task3/work/Common.class differ diff --git a/EOPSY/lab3/task3/work/Common.java b/EOPSY/lab3/task3/work/Common.java new file mode 100644 index 00000000..d40baf09 --- /dev/null +++ b/EOPSY/lab3/task3/work/Common.java @@ -0,0 +1,56 @@ +public class Common { + + static public int s2i (String s) { + int i = 0; + + try { + i = Integer.parseInt(s.trim()); + } catch (NumberFormatException nfe) { + System.out.println("NumberFormatException: " + nfe.getMessage()); + } + return i; + } + + static public double R1 () { + java.util.Random generator = new java.util.Random(System.currentTimeMillis()); + double U = generator.nextDouble(); + while (U < 0 || U >= 1) { + U = generator.nextDouble(); + } + double V = generator.nextDouble(); + while (V < 0 || V >= 1) { + V = generator.nextDouble(); + } + double X = Math.sqrt((8/Math.E)) * (V - 0.5)/U; + if (!(R2(X,U))) { return -1; } + if (!(R3(X,U))) { return -1; } + if (!(R4(X,U))) { return -1; } + return X; + } + + static public boolean R2 (double X, double U) { + if ((X * X) <= (5 - 4 * Math.exp(.25) * U)) { + return true; + } else { + return false; + } + } + + static public boolean R3 (double X, double U) { + if ((X * X) >= (4 * Math.exp(-1.35) / U + 1.4)) { + return false; + } else { + return true; + } + } + + static public boolean R4 (double X, double U) { + if ((X * X) < (-4 * Math.log(U))) { + return true; + } else { + return false; + } + } + +} + diff --git a/EOPSY/lab3/task3/work/Makefile b/EOPSY/lab3/task3/work/Makefile new file mode 100644 index 00000000..c934ac31 --- /dev/null +++ b/EOPSY/lab3/task3/work/Makefile @@ -0,0 +1,24 @@ + +default: info + + +help: + less README.tjk + +compile: + javac -nowarn *.java + +run: + java Scheduling scheduling.conf + +setup: + ./setUp + +info: + @echo "" + @echo "Use 'make' with one argument:" + @echo "" + @echo " make help" + @echo " make compile" + @echo " make run" + @echo "" diff --git a/EOPSY/lab3/task3/work/Process.class b/EOPSY/lab3/task3/work/Process.class new file mode 100644 index 00000000..54bff524 Binary files /dev/null and b/EOPSY/lab3/task3/work/Process.class differ diff --git a/EOPSY/lab3/task3/work/Process.java b/EOPSY/lab3/task3/work/Process.java new file mode 100644 index 00000000..213fd87e --- /dev/null +++ b/EOPSY/lab3/task3/work/Process.java @@ -0,0 +1,15 @@ +public class Process { + public int cputime; + public int ioblocking; + public int cpudone; + public int ionext; + public int numblocked; + + public Process(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; + } +} diff --git a/EOPSY/lab3/task3/work/README.tjk b/EOPSY/lab3/task3/work/README.tjk new file mode 100644 index 00000000..cd3397ad --- /dev/null +++ b/EOPSY/lab3/task3/work/README.tjk @@ -0,0 +1,199 @@ + + + WORKPLACE ORGANIZATION: +mkdir ../work +cd ../work +cp ../ftp/* . +gzip -d sched.tgz +tar -xvf sched.tar +rm sched.tar + + + READING: +less/vi README.tjk +netscape/lynx install_unix.html +netscape/lynx user_guide.html + + + COMPILE: +javac -nowarn *.java + + + RUN: +java Scheduling scheduling.conf + + + FILES: +input file name: scheduling.conf +output file name: Summary-Processes +log file name: Summary-Processes + + +--[ YOUR TASK ]------------------------------------------------------- + +Create a configuration file in which all processes run an average +of 2000 milliseconds with a standard deviation of zero, and which +are blocked for input or output every 500 milliseconds. Run the +simulation for 10000 milliseconds with 2 processes. Examine the +two output files. Try again for 5 processes. Try again for 10 +processes. Explain what's happening. + +---------------------------------------------------------------------- + +The Configuration File + + The configuration file (scheduling.conf) is used to specify various + parameters for the simulation, including: + * the number of processes, + * the mean runtime for a process, + * the standard deviation in runtime for a process, + * for each process, how long the process runs before it blocks for + input or output, and + * how long the simulation should run. + + Configuration File Options + + There are a number of options which can be specified in the + configuration file. These are summarized in the table below. + + Keyword Values Description + numprocess n The number of processes to create for the simulation. + meandev n The average length of time in milliseconds that a process + should execute before terminating. + standdev n The number of standard deviations from the average length + of time a process should execute before terminating. + process n The amount of time in milliseconds that the process should + execute before blocking for input or output. There should be a + separate process directive for each process specified by the + numprocess directive. + runtime n The maximum amount of time the simulation should run in + milliseconds. + +---------------------------------------------------------------------- + + Sample Configuration File + + The "scheduling.conf" configuration file looks like this: + +// # of Process +numprocess 3 + +// mean deivation +meandev 1100 + +// standard deviation +standdev 510 + +// process # I/O blocking +process 100 +process 500 +process 30 + +// duration of the simulation in milliseconds +runtime 5000 + + +---------------------------------------------------------------------- + +The Summary-Results File + + The Summary-Results file contains a summary report describing the + simulation and includes one line of summary information for each + process. The fields and columns in the report are described in the + following table. + + Field Description + Scheduling Type: The type of the scheduling algorithm used. The value + displayed is "hard coded" in the SchedulingAlgorithm.java file. + Scheduling Name: The name of the scheduling algorithm used. The value + displayed is "hard coded" in the SchedulingAlgorithm.java file. + Simulation Run Time: The number of milliseconds that the simulation + ran. This may be less than or equal to the total amount of time + specified by the "runtime" configuration parameter. + Mean: The average amount of runtime for the processes as specified by + the "meandev" configuration parameter. + Standard Deviation: The standard deviation from the average amount of + runtime for the processes as specified by the "standdev" configuration + parameter. + Process # The process number assigned to the process by the simulator. + The process number is between 0 and n-1, where n is the number + specified by the "numprocess" configuration parameter. + CPU Time The randomly generated total runtime for the process in + milliseconds. This is determined by the "meandev" and "standdev" + parameters in the configuration file. + IO Blocking The amount of time the process runs before it blocks for + input or output. This is specified for each process by a "process" + directive in the configuration file. + CPU Completed The amount of runtime in milliseconds completed for the + process. Note that this may be less than the CPU Time for the process + if the simulator runs out of time as specified by the "runtime" + configuration parameter. + CPU Blocked The number of times the process blocked for input or + output during the simulation. + + Sample Summary-Results File + + The output "Summary-Results" file looks something like this: + +Scheduling Type: Batch (Nonpreemptive) +Scheduling Name: First-Come First-Served +Simulation Run Time: 2750 +Mean: 1100 +Standard Deviation: 510 +Process # CPU Time IO Blocking CPU Completed CPU Blocked +0 1372 (ms) 100 (ms) 1372 (ms) 13 times +1 689 (ms) 500 (ms) 689 (ms) 1 times +2 689 (ms) 30 (ms) 689 (ms) 22 times + +---------------------------------------------------------------------- + +The Summary-Processes File + + The Summary-Processes file contains a log of the actions taken by the + scheduling algorithm as it considers each process in the scheduling + queue. + + Each line in the log file is of the following form: + +Process: process-number process-status... (cpu-time block-time accumulated-time + accumulated-time) + + The fields in the line are described in the table below. + + Field Description + process-number The process number assigned to the process by the + simulator. This is a number between 0 and n-1, where n is the value + specified for the "numprocess" configuration parameter. + process-status The status of the process at this point in time. If + "registered" then the process is under consideration by the scheduling + algorithm. If "I/O blocked", then the scheduling algorithm has noticed + that the process is blocked for input or output. If "completed", then + the scheduling algorithm has noticed that the process has met or + exceeded its allocated execution time. + cpu-time The total amount of run time allowed for this process. This + number is randomly generated for the process based on the "meandev" + and "standdev" values specified in the configuration file. + block-time The amount of time in milliseconds to execute before + blocking process. This number is specified for the process by the + "process" directive in the configuration file. + accumulated-time The total amount of time process has executed in + milliseconds. (This number appears twice in the log file; one should + be removed). + + Sample Summary-Processes File + + The output "Summary-Processes" file looks something like this: + +Process: 0 registered... (1372 100 0 0) +Process: 0 I/O blocked... (1372 100 100 100) +Process: 1 registered... (689 500 0 0) +Process: 1 I/O blocked... (689 500 500 500) +Process: 0 registered... (1372 100 100 100) +Process: 0 I/O blocked... (1372 100 200 200) +Process: 1 registered... (689 500 500 500) +Process: 1 completed... (689 500 689 689) +Process: 0 registered... (1372 100 200 200) +Process: 0 I/O blocked... (1372 100 300 300) +Process: 2 registered... (689 30 0 0) +Process: 2 I/O blocked... (689 30 30 30) + diff --git a/EOPSY/lab3/task3/work/Results.class b/EOPSY/lab3/task3/work/Results.class new file mode 100644 index 00000000..a41a4a97 Binary files /dev/null and b/EOPSY/lab3/task3/work/Results.class differ diff --git a/EOPSY/lab3/task3/work/Results.java b/EOPSY/lab3/task3/work/Results.java new file mode 100644 index 00000000..f6198df5 --- /dev/null +++ b/EOPSY/lab3/task3/work/Results.java @@ -0,0 +1,11 @@ +public class Results { + public String schedulingType; + public String schedulingName; + public int compuTime; + + public Results (String schedulingType, String schedulingName, int compuTime) { + this.schedulingType = schedulingType; + this.schedulingName = schedulingName; + this.compuTime = compuTime; + } +} diff --git a/EOPSY/lab3/task3/work/Scheduling.class b/EOPSY/lab3/task3/work/Scheduling.class new file mode 100644 index 00000000..9ed7e25b Binary files /dev/null and b/EOPSY/lab3/task3/work/Scheduling.class differ diff --git a/EOPSY/lab3/task3/work/Scheduling.java b/EOPSY/lab3/task3/work/Scheduling.java new file mode 100644 index 00000000..a2835b6f --- /dev/null +++ b/EOPSY/lab3/task3/work/Scheduling.java @@ -0,0 +1,144 @@ +// This file contains the main() function for the Scheduling +// simulation. Init() initializes most of the variables by +// reading from a provided file. SchedulingAlgorithm.Run() is +// called from main() to run the simulation. Summary-Results +// is where the summary results are written, and Summary-Processes +// is where the process scheduling summary is written. + +// Created by Alexander Reeder, 2001 January 06 + +import java.io.*; +import java.util.*; + +public class Scheduling { + + private static int processnum = 5; + private static int meanDev = 1000; + private static int standardDev = 100; + private static int runtime = 1000; + private static Vector processVector = new Vector(); + private static Results result = new Results("null","null",0); + private static String resultsFile = "Summary-Results"; + + private static void Init(String file) { + File f = new File(file); + String line; + String tmp; + int cputime = 0; + int ioblocking = 0; + double X = 0.0; + + try { + //BufferedReader in = new BufferedReader(new FileReader(f)); + DataInputStream in = new DataInputStream(new FileInputStream(f)); + while ((line = in.readLine()) != null) { + if (line.startsWith("numprocess")) { + StringTokenizer st = new StringTokenizer(line); + st.nextToken(); + processnum = Common.s2i(st.nextToken()); + } + if (line.startsWith("meandev")) { + StringTokenizer st = new StringTokenizer(line); + st.nextToken(); + meanDev = Common.s2i(st.nextToken()); + } + if (line.startsWith("standdev")) { + StringTokenizer st = new StringTokenizer(line); + st.nextToken(); + standardDev = Common.s2i(st.nextToken()); + } + if (line.startsWith("process")) { + StringTokenizer st = new StringTokenizer(line); + st.nextToken(); + ioblocking = Common.s2i(st.nextToken()); + X = Common.R1(); + while (X == -1.0) { + X = Common.R1(); + } + X = X * standardDev; + cputime = (int) X + meanDev; + processVector.addElement(new sProcess(cputime, ioblocking, 0, 0, 0)); + } + if (line.startsWith("runtime")) { + StringTokenizer st = new StringTokenizer(line); + st.nextToken(); + runtime = Common.s2i(st.nextToken()); + } + } + in.close(); + } catch (IOException e) { /* Handle exceptions */ } + } + + private static void debug() { + int i = 0; + + System.out.println("processnum " + processnum); + System.out.println("meandevm " + meanDev); + System.out.println("standdev " + standardDev); + int size = processVector.size(); + for (i = 0; i < size; i++) { + sProcess process = (sProcess) processVector.elementAt(i); + System.out.println("process " + i + " " + process.cputime + " " + process.ioblocking + " " + process.cpudone + " " + process.numblocked); + } + System.out.println("runtime " + runtime); + } + + public static void main(String[] args) { + int i = 0; + + if (args.length != 1) { + System.out.println("Usage: 'java Scheduling '"); + System.exit(-1); + } + File f = new File(args[0]); + if (!(f.exists())) { + System.out.println("Scheduling: error, file '" + f.getName() + "' does not exist."); + System.exit(-1); + } + if (!(f.canRead())) { + System.out.println("Scheduling: error, read of " + f.getName() + " failed."); + System.exit(-1); + } + System.out.println("Working..."); + Init(args[0]); + if (processVector.size() < processnum) { + i = 0; + while (processVector.size() < processnum) { + double X = Common.R1(); + while (X == -1.0) { + X = Common.R1(); + } + X = X * standardDev; + int cputime = (int) X + meanDev; + processVector.addElement(new sProcess(cputime,i*100,0,0,0)); + i++; + } + } + result = SchedulingAlgorithm.Run(runtime, processVector, result); + try { + //BufferedWriter out = new BufferedWriter(new FileWriter(resultsFile)); + PrintStream out = new PrintStream(new FileOutputStream(resultsFile)); + out.println("Scheduling Type: " + result.schedulingType); + out.println("Scheduling Name: " + result.schedulingName); + out.println("Simulation Run Time: " + result.compuTime); + out.println("Mean: " + meanDev); + out.println("Standard Deviation: " + standardDev); + out.println("Process #\tCPU Time\tIO Blocking\tCPU Completed\tCPU Blocked"); + for (i = 0; i < processVector.size(); i++) { + sProcess process = (sProcess) processVector.elementAt(i); + out.print(Integer.toString(i)); + if (i < 100) { out.print("\t\t"); } else { out.print("\t"); } + out.print(Integer.toString(process.cputime)); + if (process.cputime < 100) { out.print(" (ms)\t\t"); } else { out.print(" (ms)\t"); } + out.print(Integer.toString(process.ioblocking)); + if (process.ioblocking < 100) { out.print(" (ms)\t\t"); } else { out.print(" (ms)\t"); } + out.print(Integer.toString(process.cpudone)); + if (process.cpudone < 100) { out.print(" (ms)\t\t"); } else { out.print(" (ms)\t"); } + out.println(process.numblocked + " times"); + } + out.close(); + } catch (IOException e) { /* Handle exceptions */ } + System.out.println("Completed."); + } +} + diff --git a/EOPSY/lab3/task3/work/SchedulingAlgorithm.class b/EOPSY/lab3/task3/work/SchedulingAlgorithm.class new file mode 100644 index 00000000..aa9a28c2 Binary files /dev/null and b/EOPSY/lab3/task3/work/SchedulingAlgorithm.class differ diff --git a/EOPSY/lab3/task3/work/SchedulingAlgorithm.java b/EOPSY/lab3/task3/work/SchedulingAlgorithm.java new file mode 100644 index 00000000..47059ce7 --- /dev/null +++ b/EOPSY/lab3/task3/work/SchedulingAlgorithm.java @@ -0,0 +1,70 @@ +// Run() is called from Scheduling.main() and is where +// the scheduling algorithm written by the user resides. +// User modification should occur within the Run() function. + +import java.util.Vector; +import java.io.*; + +public class SchedulingAlgorithm { + + public static Results Run(int runtime, Vector processVector, Results result) { + int i = 0; + int comptime = 0; + int currentProcess = 0; + int previousProcess = 0; + int size = processVector.size(); + int completed = 0; + String resultsFile = "Summary-Processes"; + + result.schedulingType = "Batch (Nonpreemptive)"; + result.schedulingName = "First-Come First-Served"; + try { + //BufferedWriter out = new BufferedWriter(new FileWriter(resultsFile)); + //OutputStream out = new FileOutputStream(resultsFile); + PrintStream out = new PrintStream(new FileOutputStream(resultsFile)); + sProcess process = (sProcess) processVector.elementAt(currentProcess); + out.println("Process: " + currentProcess + " registered... (" + process.cputime + " " + process.ioblocking + " " + process.cpudone + " " + process.cpudone + ")"); + while (comptime < runtime) { + if (process.cpudone == process.cputime) { + completed++; + out.println("Process: " + currentProcess + " completed... (" + process.cputime + " " + process.ioblocking + " " + process.cpudone + " " + process.cpudone + ")"); + if (completed == size) { + result.compuTime = comptime; + out.close(); + return result; + } + for (i = size - 1; i >= 0; i--) { + process = (sProcess) processVector.elementAt(i); + if (process.cpudone < process.cputime) { + currentProcess = i; + } + } + process = (sProcess) processVector.elementAt(currentProcess); + out.println("Process: " + currentProcess + " registered... (" + process.cputime + " " + process.ioblocking + " " + process.cpudone + " " + process.cpudone + ")"); + } + if (process.ioblocking == process.ionext) { + out.println("Process: " + currentProcess + " I/O blocked... (" + process.cputime + " " + process.ioblocking + " " + process.cpudone + " " + process.cpudone + ")"); + process.numblocked++; + process.ionext = 0; + previousProcess = currentProcess; + for (i = size - 1; i >= 0; i--) { + process = (sProcess) processVector.elementAt(i); + if (process.cpudone < process.cputime && previousProcess != i) { + currentProcess = i; + } + } + process = (sProcess) processVector.elementAt(currentProcess); + out.println("Process: " + currentProcess + " registered... (" + process.cputime + " " + process.ioblocking + " " + process.cpudone + " " + process.cpudone + ")"); + } + process.cpudone++; + if (process.ioblocking > 0) { + process.ionext++; + } + comptime++; + } + out.close(); + } catch (IOException e) { /* Handle exceptions */ } + result.compuTime = comptime; + return result; + } +} diff --git a/EOPSY/lab3/task3/work/Summary-Processes b/EOPSY/lab3/task3/work/Summary-Processes new file mode 100644 index 00000000..79c3844e --- /dev/null +++ b/EOPSY/lab3/task3/work/Summary-Processes @@ -0,0 +1,30 @@ +Process: 0 registered... (2001 500 0 0) +Process: 0 I/O blocked... (2001 500 500 500) +Process: 1 registered... (2001 500 0 0) +Process: 1 I/O blocked... (2001 500 500 500) +Process: 0 registered... (2001 500 500 500) +Process: 0 I/O blocked... (2001 500 1000 1000) +Process: 1 registered... (2001 500 500 500) +Process: 1 I/O blocked... (2001 500 1000 1000) +Process: 0 registered... (2001 500 1000 1000) +Process: 0 I/O blocked... (2001 500 1500 1500) +Process: 1 registered... (2001 500 1000 1000) +Process: 1 I/O blocked... (2001 500 1500 1500) +Process: 0 registered... (2001 500 1500 1500) +Process: 0 I/O blocked... (2001 500 2000 2000) +Process: 1 registered... (2001 500 1500 1500) +Process: 1 I/O blocked... (2001 500 2000 2000) +Process: 0 registered... (2001 500 2000 2000) +Process: 0 completed... (2001 500 2001 2001) +Process: 1 registered... (2001 500 2000 2000) +Process: 1 completed... (2001 500 2001 2001) +Process: 2 registered... (2001 500 0 0) +Process: 2 I/O blocked... (2001 500 500 500) +Process: 2 registered... (2001 500 500 500) +Process: 2 I/O blocked... (2001 500 1000 1000) +Process: 2 registered... (2001 500 1000 1000) +Process: 2 I/O blocked... (2001 500 1500 1500) +Process: 2 registered... (2001 500 1500 1500) +Process: 2 I/O blocked... (2001 500 2000 2000) +Process: 2 registered... (2001 500 2000 2000) +Process: 2 completed... (2001 500 2001 2001) diff --git a/EOPSY/lab3/task3/work/Summary-Results b/EOPSY/lab3/task3/work/Summary-Results new file mode 100644 index 00000000..fcc1d0d7 --- /dev/null +++ b/EOPSY/lab3/task3/work/Summary-Results @@ -0,0 +1,9 @@ +Scheduling Type: Batch (Nonpreemptive) +Scheduling Name: First-Come First-Served +Simulation Run Time: 6003 +Mean: 2001 +Standard Deviation: 0 +Process # CPU Time IO Blocking CPU Completed CPU Blocked +0 2001 (ms) 500 (ms) 2001 (ms) 4 times +1 2001 (ms) 500 (ms) 2001 (ms) 4 times +2 2001 (ms) 500 (ms) 2001 (ms) 4 times diff --git a/EOPSY/lab3/task3/work/description.txt b/EOPSY/lab3/task3/work/description.txt new file mode 100644 index 00000000..1d5b4034 --- /dev/null +++ b/EOPSY/lab3/task3/work/description.txt @@ -0,0 +1,8 @@ +The scheduling simulator illustrates the behavior of scheduling +algorithms against a simulated mix of process loads. The user can +specify the number of processes, the mean and standard deviation +for compute time and I/O blocking time for each process, and the +duration of the simulation. At the end of the simulation a +statistical summary is presented. Students may also be asked to +write their own scheduling algorithms to be used with process +loads defined by the instructor. diff --git a/EOPSY/lab3/task3/work/install_unix.html b/EOPSY/lab3/task3/work/install_unix.html new file mode 100644 index 00000000..2ed3f10c --- /dev/null +++ b/EOPSY/lab3/task3/work/install_unix.html @@ -0,0 +1,512 @@ + + +MOSS | Scheduling Simlulator | Installation | + + +Unix + + + + + +

MOSS Scheduling Simulator + + +
Installation on Unix/Linux/Solaris/HP-UX Systems

+ + +

Purpose

+ +

+This document provides instructions for the installation +of the MOSS Scheduling Simulator on + + +Unix + +operating systems. This procedure should be the same or similar on + + +Unix, Linux, Solaris, HP-UX and other Unix-compatible + +systems. +The MOSS software +is designed for use with +Andrew S. Tanenbaum, +Modern Operating Systems, 2nd Edition +(Prentice Hall, 2001). +The Scheduling Simulator was written by +Alex Reeder +(alexr@e-sa.org). +This installation guide was written by +Ray Ontko +(rayo@ontko.com). +

+This installation guide only provides information about installing +the software and testing the configuration for + +Unix-like operating systems. To install on Windows +operating systems, please read the +Installation Guide for +Win95/98/Me/NT/2000 Systems. + + +For more detailed information about the simulator, please read the +User Guide. +

+

Requirements

+ +The following software components are required +to install and use the MOSS Scheduling +Simulator. +
    + + +
  • X-windows environment for running Java Application Window Toolkit (AWT) programs + +
  • Java Development Kit (JDK) 1.0 or greater +
  • Text program editor (e.g., notepad) +
+ +

Pre-Installation

+

+Before installation, you should verify: +

+
    +
  • that you have a working java runtime environment, +
  • that you have a working java development environment, and +
  • that the working directory is in the classpath for the runtime environment. +
+

+If you're using a standard command-line java compiler, the following +instructions will help determine if your environment is configured +correctly. +

+
    +
  1. Verify that you have java installed and configured in your environment. + + +
    +$ java -version
    +
    + +You should see a message like this with possibly a different version number. +
    +java version "1.1.8"
    +
    +If you get a message like: + + +
    +java: Command not found.
    +
    + +Then java may not be installed on your system, or may not be configured +for your use. +

    +If you think that Java may already be installed on your system +but may not be in your "path", you can find it by + + +

    +$ find /usr -name java -print
    +
    +On my system, for example, the following is returned. +
    +/usr/lib/netscape/477/communicator/java
    +/usr/lib/netscape/477/netscape/java
    +/usr/lib/jdk1.1/bin/java
    +/usr/lib/jdk1.1/bin/ia32/green_threads/java
    +/usr/share/java
    +/usr/bin/java
    +/usr/src/kernel-source-2.2.17/include/config/binfmt/java
    +
    +On my system, I also searched for "javac" and found +that it exists in /usr/bin/java. I'll use this jdk for my +installation. + +

    +If Java isn't available on your system, you should check with +your instructor or system administrator. If you administer your +own system, then you should be able to find a copy of Java +for your operating system. +

    +If you find that java is installed but not configured for +your use, then perhaps you need to add it to your path. Consult +your instructor or system administrator if you need help adding this +to your path. +

    +

    + +
  2. Verify that the java compiler is installed and configured in +your environment. + + +
    +$ javac
    +
    + +If you're using a standard java command-line compiler, you should +see a message similar to this. +
    +use: javac [-g][-O][-debug][-depend][-nowarn][-verbose][-classpath path][-nowrite][-deprecation][-d dir][-J] file.java...
    +
    +If you get a message like: + + +
    +javac: Command not found.
    +
    + +then the java compiler may not be installed on your system, or +may not be configured for your use. Consult your instructor +or system administrator. +

    + +
  3. Verify that that the current directory is in your classpath. + + +
    +$ echo $CLASSPATH
    +
    +You should see a list of directories separated by colons (":") +or possibly just a blank line. If you don't see the directory +"." (a single period, which stands for the current directory), then +you should add it to the claspath. +

    +Determine which shell you're using: +

    +
    +$ echo $SHELL
    +
    + +

    +If you're using sh, ksh, or bash: +

    +
    +$ CLASSPATH=.:$CLASSPATH
    +$ export CLASSPATH
    +
    + +

    +If you're using csh, or tcsh: +

    +
    +% set CLASSPATH=.:$CLASSPATH
    +
    + +

    + +
+

+If you have a working java runtime environment, a working java +compiler, and the current directory is in your path, then you're +ready to proceed with the installation. +

+ + +

Installation

+ +Installation of the software can be accomplished with +these simple steps: +
    +
  1. + + +Create a directory in which you wish to install the +simulator (e.g., "moss/sched"). +
    +$ cd
    +$ mkdir moss
    +$ cd moss
    +$ mkdir sched
    +$ cd sched
    +
    + +

    + +
  2. + + +Download the compressed tar archive (sched.tgz) into +the directory. +The latest release for this file can always be found at +http://www.ontko.com/moss/sched/sched.tgz. + +

    + +
  3. + + +Expand the compressed tar archive. +
    +$ tar -xzf sched.tgz
    +
    +or +
    +$ gunzip sched.tgz
    +$ tar xf sched.tar
    +
    + +

    + +
+

Files

+

+The directory should now contain the following files: +

+ + + + + + + + + +
Files +Description +
+ + +sched.tgz +Compressed tar + +archive which contains all the other files. +
Common.java +
Process.java +
Results.java +
Scheduling.java +
SchedulingAlgorithm.java +
sProcess.java +
+Java source files (*.java) +
Common.class +
Process.class +
Results.class +
Scheduling.class +
SchedulingAlgorithm.class +
sProcess.class +
+Compiled Java class files (*.class) +
scheduling.conf +Sample configuration file +
install_unix.html +
install_windows.html +
user_guide.html +
+Documentation +
COPYING.TXTGnu General Public License: Terms and Conditions +for Copying, Distribution, and Modification +
+ +

Compilation

+ +

+The distribution includes compiled class files as +well as the source java files. You should not need +to recompile unless you decide to change the code. +If you wish to compile the code, +the following commands should work if you're using +a Java compiler that accepts the normal "javac" command +line. + + +

+To determine which shell you're using: +

+
+$ echo $SHELL
+
+ +

+If you're using sh, ksh, bash: +

+
+$ CLASSPATH=.
+$ export CLASSPATH
+$ javac -nowarn *.java
+
+ +

+If you're using csh, tcsh: +

+
+% set CLASSPATH=.
+% javac -nowarn *.java
+
+ + +The -nowarn flag supresses warning messges, of which +there may be several. For backward compatability we use only +those features of Java which have been present from the beginning, +some of which are deprecated and are usually reported by the +compiler with warning messages. + +

Test

+ +

+To test the program, enter the following commands. + + + +

+$ java Scheduling scheduling.conf
+
+ + +

+The program will simply run the simulation based on the +information provided in scheduling.conf and write its +output to the Summary-Results and +Summary-Processes files. You should see the following +output. +

+Working...
+Completed.
+
+
+ +

+The simulation configuration information is read from a file called +"scheduling.conf". +The "scheduling.conf" file looks something like this: +

+// # of Process	
+numprocess 3
+
+// mean deivation
+meandev 1100
+
+// standard deviation
+standdev 510
+
+// process    # I/O blocking
+process 100
+process 500
+process 30
+
+// duration of the simulation in milliseconds
+runtime 5000
+
+
+ +

+If things are working correctly, the "Summary-Results" file should look +something like this: + +

+Scheduling Type: Batch (Nonpreemptive)
+Scheduling Name: First-Come First-Served
+Simulation Run Time: 2750
+Mean: 1100
+Standard Deviation: 510
+Process #	CPU Time	IO Blocking	CPU Completed	CPU Blocked
+0		1372 (ms)	100 (ms)	1372 (ms)	13 times
+1		689 (ms)	500 (ms)	689 (ms)	1 times
+2		689 (ms)	30 (ms)		689 (ms)	22 times
+
+
+ +and the "Summary-Processes" file should look something like +this: + +
+Process: 0 registered... (1372 100 0 0)
+Process: 0 I/O blocked... (1372 100 100 100)
+Process: 1 registered... (689 500 0 0)
+Process: 1 I/O blocked... (689 500 500 500)
+Process: 0 registered... (1372 100 100 100)
+Process: 0 I/O blocked... (1372 100 200 200)
+Process: 1 registered... (689 500 500 500)
+Process: 1 completed... (689 500 689 689)
+Process: 0 registered... (1372 100 200 200)
+Process: 0 I/O blocked... (1372 100 300 300)
+Process: 2 registered... (689 30 0 0)
+Process: 2 I/O blocked... (689 30 30 30)
+Process: 0 registered... (1372 100 300 300)
+Process: 0 I/O blocked... (1372 100 400 400)
+Process: 2 registered... (689 30 30 30)
+Process: 2 I/O blocked... (689 30 60 60)
+Process: 0 registered... (1372 100 400 400)
+Process: 0 I/O blocked... (1372 100 500 500)
+Process: 2 registered... (689 30 60 60)
+Process: 2 I/O blocked... (689 30 90 90)
+Process: 0 registered... (1372 100 500 500)
+Process: 0 I/O blocked... (1372 100 600 600)
+Process: 2 registered... (689 30 90 90)
+Process: 2 I/O blocked... (689 30 120 120)
+Process: 0 registered... (1372 100 600 600)
+Process: 0 I/O blocked... (1372 100 700 700)
+Process: 2 registered... (689 30 120 120)
+Process: 2 I/O blocked... (689 30 150 150)
+Process: 0 registered... (1372 100 700 700)
+Process: 0 I/O blocked... (1372 100 800 800)
+Process: 2 registered... (689 30 150 150)
+Process: 2 I/O blocked... (689 30 180 180)
+Process: 0 registered... (1372 100 800 800)
+Process: 0 I/O blocked... (1372 100 900 900)
+Process: 2 registered... (689 30 180 180)
+Process: 2 I/O blocked... (689 30 210 210)
+Process: 0 registered... (1372 100 900 900)
+Process: 0 I/O blocked... (1372 100 1000 1000)
+Process: 2 registered... (689 30 210 210)
+Process: 2 I/O blocked... (689 30 240 240)
+Process: 0 registered... (1372 100 1000 1000)
+Process: 0 I/O blocked... (1372 100 1100 1100)
+Process: 2 registered... (689 30 240 240)
+Process: 2 I/O blocked... (689 30 270 270)
+Process: 0 registered... (1372 100 1100 1100)
+Process: 0 I/O blocked... (1372 100 1200 1200)
+Process: 2 registered... (689 30 270 270)
+Process: 2 I/O blocked... (689 30 300 300)
+Process: 0 registered... (1372 100 1200 1200)
+Process: 0 I/O blocked... (1372 100 1300 1300)
+Process: 2 registered... (689 30 300 300)
+Process: 2 I/O blocked... (689 30 330 330)
+Process: 0 registered... (1372 100 1300 1300)
+Process: 0 completed... (1372 100 1372 1372)
+Process: 2 registered... (689 30 330 330)
+Process: 2 I/O blocked... (689 30 360 360)
+Process: 2 registered... (689 30 360 360)
+Process: 2 I/O blocked... (689 30 390 390)
+Process: 2 registered... (689 30 390 390)
+Process: 2 I/O blocked... (689 30 420 420)
+Process: 2 registered... (689 30 420 420)
+Process: 2 I/O blocked... (689 30 450 450)
+Process: 2 registered... (689 30 450 450)
+Process: 2 I/O blocked... (689 30 480 480)
+Process: 2 registered... (689 30 480 480)
+Process: 2 I/O blocked... (689 30 510 510)
+Process: 2 registered... (689 30 510 510)
+Process: 2 I/O blocked... (689 30 540 540)
+Process: 2 registered... (689 30 540 540)
+Process: 2 I/O blocked... (689 30 570 570)
+Process: 2 registered... (689 30 570 570)
+Process: 2 I/O blocked... (689 30 600 600)
+Process: 2 registered... (689 30 600 600)
+Process: 2 I/O blocked... (689 30 630 630)
+Process: 2 registered... (689 30 630 630)
+Process: 2 I/O blocked... (689 30 660 660)
+Process: 2 registered... (689 30 660 660)
+Process: 2 completed... (689 30 689 689)
+
+
+ +

+The program and its input and output files are described +more fully in the MOSS Scheduling Simulator +User Guide. +

+© Copyright 2001, Prentice-Hall, Inc. +This program is free software; it is distributed under the +terms of the Gnu General Public License. +See COPYING.TXT, +included with this distribution. +

+Please send suggestions, corrections, and comments to +Ray Ontko (rayo@ontko.com). +

+Last updated: July 7, 2001 + + diff --git a/EOPSY/lab3/task3/work/install_windows.html b/EOPSY/lab3/task3/work/install_windows.html new file mode 100644 index 00000000..acf1418f --- /dev/null +++ b/EOPSY/lab3/task3/work/install_windows.html @@ -0,0 +1,467 @@ + + +MOSS | Scheduling Simlulator | Installation | + +Windows + + + + + + +

MOSS Scheduling Simulator + +
Installation on Windows 95/98/Me/NT/2000 Systems

+ + + +

Purpose

+ +

+This document provides instructions for the installation +of the MOSS Scheduling Simulator on + +Microsoft Windows + + +operating systems. This procedure should be the same or similar on + +Windows 95, 98, Me, NT, and 2000 + + +systems. +The MOSS software +is designed for use with +Andrew S. Tanenbaum, +Modern Operating Systems, 2nd Edition +(Prentice Hall, 2001). +The Scheduling Simulator was written by +Alex Reeder +(alexr@e-sa.org). +This installation guide was written by +Ray Ontko +(rayo@ontko.com). +

+This installation guide only provides information about installing +the software and testing the configuration for + + +Windows operating systems. To install on Unix-like +operating systems, please read the +Installation Guide for +Unix/Linux/Solaris/HP-UX Systems. + +For more detailed information about the simulator, please read the +User Guide. +

+

Requirements

+ +The following software components are required +to install and use the MOSS Scheduling +Simulator. +
    + +
  • Microsoft Windows 95, 98, Me, NT, or 2000 + + +
  • Java Development Kit (JDK) 1.0 or greater +
  • Text program editor (e.g., notepad) +
+ +

Pre-Installation

+

+Before installation, you should verify: +

+
    +
  • that you have a working java runtime environment, +
  • that you have a working java development environment, and +
  • that the working directory is in the classpath for the runtime environment. +
+

+If you're using a standard command-line java compiler, the following +instructions will help determine if your environment is configured +correctly. +

+
    +
  1. Verify that you have java installed and configured in your environment. + +
    +C:\WINDOWS> java -version
    +
    + + +You should see a message like this with possibly a different version number. +
    +java version "1.1.8"
    +
    +If you get a message like: + +
    +Bad command or file name
    +
    + + +Then java may not be installed on your system, or may not be configured +for your use. +

    +If you think that Java may already be installed on your system +but may not be in your "path", you can find it by + +choosing Start -> Find -> Files or Folders +and enter "java.exe" in the "Named:" field and click the Find Now button. +If found, make note of the directory folder in which it resides (e.g., +"C:\jdk1.1.8\bin"). +

    +While you're at it, also seach for javac.exe to see if the Java +compiler is installed and whether it's in the same directory as +the java.exe file. + + +

    +If Java isn't available on your system, you should check with +your instructor or system administrator. If you administer your +own system, then you should be able to find a copy of Java +for your operating system. +

    +If you find that java is installed but not configured for +your use, then perhaps you need to add it to your path. Consult +your instructor or system administrator if you need help adding this +to your path. +

    +

    + +
  2. Verify that the java compiler is installed and configured in +your environment. + +
    +C:\WINDOWS> javac
    +
    + + +If you're using a standard java command-line compiler, you should +see a message similar to this. +
    +use: javac [-g][-O][-debug][-depend][-nowarn][-verbose][-classpath path][-nowrite][-deprecation][-d dir][-J] file.java...
    +
    +If you get a message like: + +
    +Bad command or file name
    +
    + + +then the java compiler may not be installed on your system, or +may not be configured for your use. Consult your instructor +or system administrator. +

    + +
  3. Verify that that the current directory is in your classpath. + +
    +C:\WINDOWS> echo "%CLASSPATH%"
    +
    +You should see a list of directories separated by semi-colons (";") +or possibly just "". If you don't see the directory "." (a single +period, which stands for the current directory), then you should +add it to the classpath. +
    +C:\WINDOWS> set CLASSPATH=.;%CLASSPATH%
    +
    + + +

    + +
+

+If you have a working java runtime environment, a working java +compiler, and the current directory is in your path, then you're +ready to proceed with the installation. +

+ + +

Installation

+ +Installation of the software can be accomplished with +these simple steps: +
    +
  1. + +Create a directory folder in which you wish to install +the simulator (e.g., "C:\moss\sched"). You can do +this using the Windows explorer, or from the MS-DOS +prompt. To create the directory from the MS-DOS +prompt: +
    +C:\WINDOWS> cd \ 
    +C:\> mkdir moss
    +C:\> cd moss
    +C:\moss> mkdir sched
    +C:\moss> cd sched
    +C:\moss\sched>
    +
    + + +

    + +
  2. + +Download the self-extracting ZIP archive (sched.exe) into +the directory folder. +The latest release for this file can always be found at +http://www.ontko.com/moss/sched/sched.exe. + + +

    + +
  3. + +Double-click on the file you downloaded (sched.exe), +or invoke it using Start -> Run..., or invoke it +from an MS-DOS command prompt: +
    +C:\moss\sched> sched.exe
    +
    + + +

    + +
+

Files

+

+The directory should now contain the following files: +

+ + + + + + + + + +
Files +Description +
+ +sched.exe +Self-extracting ZIP + + +archive which contains all the other files. +
Common.java +
Process.java +
Results.java +
Scheduling.java +
SchedulingAlgorithm.java +
sProcess.java +
+Java source files (*.java) +
Common.class +
Process.class +
Results.class +
Scheduling.class +
SchedulingAlgorithm.class +
sProcess.class +
+Compiled Java class files (*.class) +
scheduling.conf +Sample configuration file +
install_unix.html +
install_windows.html +
user_guide.html +
+Documentation +
COPYING.TXTGnu General Public License: Terms and Conditions +for Copying, Distribution, and Modification +
+ +

Compilation

+ +

+The distribution includes compiled class files as +well as the source java files. You should not need +to recompile unless you decide to change the code. +If you wish to compile the code, +the following commands should work if you're using +a Java compiler that accepts the normal "javac" command +line. + +

+C:\moss\sched> javac -nowarn *.java
+
+ + + +The -nowarn flag supresses warning messges, of which +there may be several. For backward compatability we use only +those features of Java which have been present from the beginning, +some of which are deprecated and are usually reported by the +compiler with warning messages. + +

Test

+ +

+To test the program, enter the following commands. + + +

+C:\moss\sched> java Scheduling scheduling.conf
+
+ + + +

+The program will simply run the simulation based on the +information provided in scheduling.conf and write its +output to the Summary-Results and +Summary-Processes files. You should see the following +output. +

+Working...
+Completed.
+
+
+ +

+The simulation configuration information is read from a file called +"scheduling.conf". +The "scheduling.conf" file looks something like this: +

+// # of Process	
+numprocess 3
+
+// mean deivation
+meandev 1100
+
+// standard deviation
+standdev 510
+
+// process    # I/O blocking
+process 100
+process 500
+process 30
+
+// duration of the simulation in milliseconds
+runtime 5000
+
+
+ +

+If things are working correctly, the "Summary-Results" file should look +something like this: + +

+Scheduling Type: Batch (Nonpreemptive)
+Scheduling Name: First-Come First-Served
+Simulation Run Time: 2750
+Mean: 1100
+Standard Deviation: 510
+Process #	CPU Time	IO Blocking	CPU Completed	CPU Blocked
+0		1372 (ms)	100 (ms)	1372 (ms)	13 times
+1		689 (ms)	500 (ms)	689 (ms)	1 times
+2		689 (ms)	30 (ms)		689 (ms)	22 times
+
+
+ +and the "Summary-Processes" file should look something like +this: + +
+Process: 0 registered... (1372 100 0 0)
+Process: 0 I/O blocked... (1372 100 100 100)
+Process: 1 registered... (689 500 0 0)
+Process: 1 I/O blocked... (689 500 500 500)
+Process: 0 registered... (1372 100 100 100)
+Process: 0 I/O blocked... (1372 100 200 200)
+Process: 1 registered... (689 500 500 500)
+Process: 1 completed... (689 500 689 689)
+Process: 0 registered... (1372 100 200 200)
+Process: 0 I/O blocked... (1372 100 300 300)
+Process: 2 registered... (689 30 0 0)
+Process: 2 I/O blocked... (689 30 30 30)
+Process: 0 registered... (1372 100 300 300)
+Process: 0 I/O blocked... (1372 100 400 400)
+Process: 2 registered... (689 30 30 30)
+Process: 2 I/O blocked... (689 30 60 60)
+Process: 0 registered... (1372 100 400 400)
+Process: 0 I/O blocked... (1372 100 500 500)
+Process: 2 registered... (689 30 60 60)
+Process: 2 I/O blocked... (689 30 90 90)
+Process: 0 registered... (1372 100 500 500)
+Process: 0 I/O blocked... (1372 100 600 600)
+Process: 2 registered... (689 30 90 90)
+Process: 2 I/O blocked... (689 30 120 120)
+Process: 0 registered... (1372 100 600 600)
+Process: 0 I/O blocked... (1372 100 700 700)
+Process: 2 registered... (689 30 120 120)
+Process: 2 I/O blocked... (689 30 150 150)
+Process: 0 registered... (1372 100 700 700)
+Process: 0 I/O blocked... (1372 100 800 800)
+Process: 2 registered... (689 30 150 150)
+Process: 2 I/O blocked... (689 30 180 180)
+Process: 0 registered... (1372 100 800 800)
+Process: 0 I/O blocked... (1372 100 900 900)
+Process: 2 registered... (689 30 180 180)
+Process: 2 I/O blocked... (689 30 210 210)
+Process: 0 registered... (1372 100 900 900)
+Process: 0 I/O blocked... (1372 100 1000 1000)
+Process: 2 registered... (689 30 210 210)
+Process: 2 I/O blocked... (689 30 240 240)
+Process: 0 registered... (1372 100 1000 1000)
+Process: 0 I/O blocked... (1372 100 1100 1100)
+Process: 2 registered... (689 30 240 240)
+Process: 2 I/O blocked... (689 30 270 270)
+Process: 0 registered... (1372 100 1100 1100)
+Process: 0 I/O blocked... (1372 100 1200 1200)
+Process: 2 registered... (689 30 270 270)
+Process: 2 I/O blocked... (689 30 300 300)
+Process: 0 registered... (1372 100 1200 1200)
+Process: 0 I/O blocked... (1372 100 1300 1300)
+Process: 2 registered... (689 30 300 300)
+Process: 2 I/O blocked... (689 30 330 330)
+Process: 0 registered... (1372 100 1300 1300)
+Process: 0 completed... (1372 100 1372 1372)
+Process: 2 registered... (689 30 330 330)
+Process: 2 I/O blocked... (689 30 360 360)
+Process: 2 registered... (689 30 360 360)
+Process: 2 I/O blocked... (689 30 390 390)
+Process: 2 registered... (689 30 390 390)
+Process: 2 I/O blocked... (689 30 420 420)
+Process: 2 registered... (689 30 420 420)
+Process: 2 I/O blocked... (689 30 450 450)
+Process: 2 registered... (689 30 450 450)
+Process: 2 I/O blocked... (689 30 480 480)
+Process: 2 registered... (689 30 480 480)
+Process: 2 I/O blocked... (689 30 510 510)
+Process: 2 registered... (689 30 510 510)
+Process: 2 I/O blocked... (689 30 540 540)
+Process: 2 registered... (689 30 540 540)
+Process: 2 I/O blocked... (689 30 570 570)
+Process: 2 registered... (689 30 570 570)
+Process: 2 I/O blocked... (689 30 600 600)
+Process: 2 registered... (689 30 600 600)
+Process: 2 I/O blocked... (689 30 630 630)
+Process: 2 registered... (689 30 630 630)
+Process: 2 I/O blocked... (689 30 660 660)
+Process: 2 registered... (689 30 660 660)
+Process: 2 completed... (689 30 689 689)
+
+
+ +

+The program and its input and output files are described +more fully in the MOSS Scheduling Simulator +User Guide. +

+© Copyright 2001, Prentice-Hall, Inc. +This program is free software; it is distributed under the +terms of the Gnu General Public License. +See COPYING.TXT, +included with this distribution. +

+Please send suggestions, corrections, and comments to +Ray Ontko (rayo@ontko.com). +

+Last updated: July 7, 2001 + + diff --git a/EOPSY/lab3/task3/work/sProcess.class b/EOPSY/lab3/task3/work/sProcess.class new file mode 100644 index 00000000..e4652ed6 Binary files /dev/null and b/EOPSY/lab3/task3/work/sProcess.class differ diff --git a/EOPSY/lab3/task3/work/sProcess.java b/EOPSY/lab3/task3/work/sProcess.java new file mode 100644 index 00000000..c675ee75 --- /dev/null +++ b/EOPSY/lab3/task3/work/sProcess.java @@ -0,0 +1,15 @@ +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; + } +} diff --git a/EOPSY/lab3/task3/work/scheduling.conf b/EOPSY/lab3/task3/work/scheduling.conf new file mode 100644 index 00000000..b41a5da2 --- /dev/null +++ b/EOPSY/lab3/task3/work/scheduling.conf @@ -0,0 +1,16 @@ +// # of Process +numprocess 3 + +// mean deivation +meandev 2001 + +// standard deviation +standdev 0 + +// process # I/O blocking +process 500 +process 500 +process 500 + +// duration of the simulation in milliseconds +runtime 10000 diff --git a/EOPSY/lab3/task3/work/setUp b/EOPSY/lab3/task3/work/setUp new file mode 100755 index 00000000..712df807 --- /dev/null +++ b/EOPSY/lab3/task3/work/setUp @@ -0,0 +1,9 @@ +echo "Creating ../work subdirectory" +mkdir ../work +cd ../work +cp ../ftp/* . +gzip -d sched.tgz +tar -xvf sched.tar +rm sched.tar +echo "" +echo "Now, go to the directory ../work and call 'make'" diff --git a/EOPSY/lab3/task3/work/stdout.txt b/EOPSY/lab3/task3/work/stdout.txt new file mode 100644 index 00000000..c98a1922 --- /dev/null +++ b/EOPSY/lab3/task3/work/stdout.txt @@ -0,0 +1,2 @@ +Working... +Completed. diff --git a/EOPSY/lab3/task3/work/user_guide.html b/EOPSY/lab3/task3/work/user_guide.html new file mode 100644 index 00000000..7574ff39 --- /dev/null +++ b/EOPSY/lab3/task3/work/user_guide.html @@ -0,0 +1,574 @@ + + +Moss | Scheduling Simulator | User Guide + + +

+MOSS Scheduling Simulator +
User Guide

+ +

Purpose

+ +

+This document is a user guide for the MOSS +Scheduling Simulator. It explains how to use the simulator +and describes the various input and output files used +by the simulator. +The MOSS software +is designed for use with +Andrew S. Tanenbaum, +Modern Operating Systems, 2nd Edition +(Prentice Hall, 2001). +The Scheduling Simulator was written by +Alex Reeder +(alexr@e-sa.org). +This user guide was written by +Ray Ontko +(rayo@ontko.com). + +

+This user guide assumes that you have already installed and tested +the simulator. If you are looking for installation information, +please read the +Installation Guide for +Unix/Linux/Solaris/HP-UX Systems or the +Installation Guide for +Win95/98/Me/NT/2000 Systems. +

+ +

Introduction

+

+The scheduling simulator illustrates the behavior of scheduling +algorithms against a simulated mix of process loads. The user can +specify the number of processes, the mean and standard deviation +for compute time and I/O blocking time for each process, and the +duration of the simulation. At the end of the simulation a +statistical summary is presented. Students may also be asked to +write their own scheduling algorithms to be used with process +loads defined by the instructor. + + +

Running the Simulator

+ +

+The program reads +a configuration file (scheduling.conf) +and writes two output files (Summary-Results +and Summary-Processes). +

+To run the program, enter the following command line. + +

+$ java Scheduling scheduling.conf
+
+ +

+The program will display "Working..." while the simulation +is working, and "Completed." when the simulation is complete. +

+
+Working...
+Completed.
+
+
+

+The simulator reads parameters from the configuration file +("scheduling.conf"). +It creates a +specified number of processes, each of which blocks for +input or output after a number of milliseconds that can be specified +for each process. Each process is allowed to run for a +randomly generated amount of time, with the amount of time +constrained by a specified average (mean) in milliseconds, +and standard deviations from that average. The simulation +may also be bounded in the total length of its run. +

+After reading the configuration file, the +scheduling algorithm then "runs" the processes, causing +each to block for input or output after the specified interval +until all processes have completed their randomly generated +amount of runtime, or until the maximum amount of runtime for +the simulation is exceeded. +

+As the simulation proceeds, a log file ("Summary-Processes") +is generated which shows the activity of the scheduling algorithm +as it considers each process in the process queue. +

+After the simulation halts, a summary report ("Summary-Results") +is generated which shows statistics for each process and for the +simulation as a whole. +

+ +

The Configuration File

+ +

+The configuration file (scheduling.conf) +is used to specify various parameters for the +simulation, including: +

+
    +
  • the number of processes, +
  • the mean runtime for a process, +
  • the standard deviation in runtime for a process, +
  • for each process, how long the process runs before it blocks for input or +output, and +
  • how long the simulation should run. +
+ +

Configuration File Options

+ +

There are a number of options which can +be specified in the configuration file. These are +summarized in the table below. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
KeywordValuesDescription
numprocessnThe number of processes to create for +the simulation.
meandevnThe average length of time in milliseconds +that a process should execute before terminating.
standdevnThe number of standard deviations from the +average length of time a process should execute before terminating. +
processnThe amount of time in milliseconds that +the process should execute before blocking for input or output. +There should be a separate process directive for +each process specified by the numprocess directive.
runtimenThe maximum amount of time the simulation should run +in milliseconds.
+ +

Sample Configuration File

+

+The "scheduling.conf" configuration file looks like this: + +

+// # of Process	
+numprocess 3
+
+// mean deivation
+meandev 1100
+
+// standard deviation
+standdev 510
+
+// process    # I/O blocking
+process 100
+process 500
+process 30
+
+// duration of the simulation in milliseconds
+runtime 5000
+
+
+ +

The Summary-Results File

+ +

+The Summary-Results file contains a summary report describing +the simulation and includes one line of summary information +for each process. The fields and columns in the report +are described in the following table. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
Scheduling Type:The type of the scheduling algorithm used. +The value displayed is "hard coded" in the SchedulingAlgorithm.java +file.
Scheduling Name:The name of the scheduling algorithm used. +The value displayed is "hard coded" in the SchedulingAlgorithm.java +file.
Simulation Run Time:The number of milliseconds that the simulation +ran. This may be less than or equal to the total amount of +time specified by the "runtime" configuration parameter.
Mean:The average amount of runtime for the processes +as specified by the "meandev" configuration parameter.
Standard Deviation:The standard deviation from the average +amount of runtime for the processes as specified by the +"standdev" configuration parameter.
Process #The process number assigned to the process +by the simulator. The process number is between 0 and n-1, +where n is the number specified by the "numprocess" configuration +parameter.
CPU TimeThe randomly generated total runtime for the +process in milliseconds. This is determined by the +"meandev" and "standdev" parameters in the configuration +file.
IO BlockingThe amount of time the process runs before it +blocks for input or output. This is specified for each process +by a "process" directive in the configuration file.
CPU CompletedThe amount of runtime in milliseconds completed for +the process. Note that this may be less than the CPU Time +for the process if the simulator runs out of time as specified +by the "runtime" configuration parameter.
CPU BlockedThe number of times the process blocked for +input or output during the simulation.
+ +

Sample Summary-Results File

+ +

+The output "Summary-Results" file looks something like this: +

+
+Scheduling Type: Batch (Nonpreemptive)
+Scheduling Name: First-Come First-Served
+Simulation Run Time: 2750
+Mean: 1100
+Standard Deviation: 510
+Process #	CPU Time	IO Blocking	CPU Completed	CPU Blocked
+0		1372 (ms)	100 (ms)	1372 (ms)	13 times
+1		689 (ms)	500 (ms)	689 (ms)	1 times
+2		689 (ms)	30 (ms)		689 (ms)	22 times
+
+
+ +

The Summary-Processes File

+ +

+The Summary-Processes file contains a log of the actions +taken by the scheduling algorithm as it considers each +process in the scheduling queue. +

+

+Each line in the log file is of the following form: +

+Process: process-number process-status... (cpu-time block-time accumulated-time accumulated-time)
+
+

+The fields in the line are described in the table below. +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FieldDescription
process-numberThe process number assigned to the process by the simulator. +This is a number between 0 and n-1, where n is the +value specified for the "numprocess" configuration parameter.
process-statusThe status of the process at this point +in time. If "registered" then the process is under consideration +by the scheduling algorithm. If "I/O blocked", then the +scheduling algorithm has noticed that the process is blocked +for input or output. +If "completed", then the scheduling algorithm has noticed +that the process has met or exceeded its allocated execution +time.
cpu-timeThe total amount of run time allowed for this +process. This number is randomly generated for the process +based on the +"meandev" and "standdev" values specified in the configuration +file.
block-timeThe amount of time in milliseconds to execute +before blocking process. This number is specified for the process +by the "process" directive in the configuration file.
accumulated-timeThe total amount of time process has executed in +milliseconds. (This number appears twice in the log file; one +should be removed). +
+ +

Sample Summary-Processes File

+ +

+The output "Summary-Processes" file looks something like this: +

+
+Process: 0 registered... (1372 100 0 0)
+Process: 0 I/O blocked... (1372 100 100 100)
+Process: 1 registered... (689 500 0 0)
+Process: 1 I/O blocked... (689 500 500 500)
+Process: 0 registered... (1372 100 100 100)
+Process: 0 I/O blocked... (1372 100 200 200)
+Process: 1 registered... (689 500 500 500)
+Process: 1 completed... (689 500 689 689)
+Process: 0 registered... (1372 100 200 200)
+Process: 0 I/O blocked... (1372 100 300 300)
+Process: 2 registered... (689 30 0 0)
+Process: 2 I/O blocked... (689 30 30 30)
+Process: 0 registered... (1372 100 300 300)
+Process: 0 I/O blocked... (1372 100 400 400)
+Process: 2 registered... (689 30 30 30)
+Process: 2 I/O blocked... (689 30 60 60)
+Process: 0 registered... (1372 100 400 400)
+Process: 0 I/O blocked... (1372 100 500 500)
+Process: 2 registered... (689 30 60 60)
+Process: 2 I/O blocked... (689 30 90 90)
+Process: 0 registered... (1372 100 500 500)
+Process: 0 I/O blocked... (1372 100 600 600)
+Process: 2 registered... (689 30 90 90)
+Process: 2 I/O blocked... (689 30 120 120)
+Process: 0 registered... (1372 100 600 600)
+Process: 0 I/O blocked... (1372 100 700 700)
+Process: 2 registered... (689 30 120 120)
+Process: 2 I/O blocked... (689 30 150 150)
+Process: 0 registered... (1372 100 700 700)
+Process: 0 I/O blocked... (1372 100 800 800)
+Process: 2 registered... (689 30 150 150)
+Process: 2 I/O blocked... (689 30 180 180)
+Process: 0 registered... (1372 100 800 800)
+Process: 0 I/O blocked... (1372 100 900 900)
+Process: 2 registered... (689 30 180 180)
+Process: 2 I/O blocked... (689 30 210 210)
+Process: 0 registered... (1372 100 900 900)
+Process: 0 I/O blocked... (1372 100 1000 1000)
+Process: 2 registered... (689 30 210 210)
+Process: 2 I/O blocked... (689 30 240 240)
+Process: 0 registered... (1372 100 1000 1000)
+Process: 0 I/O blocked... (1372 100 1100 1100)
+Process: 2 registered... (689 30 240 240)
+Process: 2 I/O blocked... (689 30 270 270)
+Process: 0 registered... (1372 100 1100 1100)
+Process: 0 I/O blocked... (1372 100 1200 1200)
+Process: 2 registered... (689 30 270 270)
+Process: 2 I/O blocked... (689 30 300 300)
+Process: 0 registered... (1372 100 1200 1200)
+Process: 0 I/O blocked... (1372 100 1300 1300)
+Process: 2 registered... (689 30 300 300)
+Process: 2 I/O blocked... (689 30 330 330)
+Process: 0 registered... (1372 100 1300 1300)
+Process: 0 completed... (1372 100 1372 1372)
+Process: 2 registered... (689 30 330 330)
+Process: 2 I/O blocked... (689 30 360 360)
+Process: 2 registered... (689 30 360 360)
+Process: 2 I/O blocked... (689 30 390 390)
+Process: 2 registered... (689 30 390 390)
+Process: 2 I/O blocked... (689 30 420 420)
+Process: 2 registered... (689 30 420 420)
+Process: 2 I/O blocked... (689 30 450 450)
+Process: 2 registered... (689 30 450 450)
+Process: 2 I/O blocked... (689 30 480 480)
+Process: 2 registered... (689 30 480 480)
+Process: 2 I/O blocked... (689 30 510 510)
+Process: 2 registered... (689 30 510 510)
+Process: 2 I/O blocked... (689 30 540 540)
+Process: 2 registered... (689 30 540 540)
+Process: 2 I/O blocked... (689 30 570 570)
+Process: 2 registered... (689 30 570 570)
+Process: 2 I/O blocked... (689 30 600 600)
+Process: 2 registered... (689 30 600 600)
+Process: 2 I/O blocked... (689 30 630 630)
+Process: 2 registered... (689 30 630 630)
+Process: 2 I/O blocked... (689 30 660 660)
+Process: 2 registered... (689 30 660 660)
+Process: 2 completed... (689 30 689 689)
+
+
+ +

Suggested Exercises

+ +
    +
  1. Create a configuration file in which all processes run +an average of 2000 milliseconds with a standard deviation of +zero, and which are blocked for input or output every 500 milliseconds. +Run the simulation for 10000 milliseconds with 2 processes. +Examine the two output files. Try again for 5 processes. Try again for +10 processes. Explain what's happening. +

    +
  2. Implement a round-robin scheduling algorithm. (Hint: +see the Run() method in SchedulingAlgorithm.java). +

    +
+ +

To Do

+ +
    +
  1. Consider changing the configuration parameter "meandev" +to "run_time_average". The word "dev" +doesn't belong here. It would be nice if this were +the average amount of time a process runs before +blocking for input or output instead of the total runtime. +

    + +
  2. Consider changing the configuration parameter "standdev" +to "run_time_stddev". +It would be nice if this were the +number of standard deviations from the average time a +process runs before blocking for input or output instead +of the total runtime. +

    + +
  3. Consider renaming the "Run()" method in SchedulingAlgorithm +to "run()". By convention in java, method names begin with +a lowercase letter. Also, add some internal documentation +to SchedulingAlgorithm to facilitate understanding by students +and instructors, and add external documentation regarding +the implementation of new scheduling algorithms to this user guide. +

    + +
  4. Consider adding a configuration parameter for "block_time_average" +which would be the average amount of time in milliseconds that a process +remains blocked for input or output before resuming execution. +This would help eliminate the need for the "process" directive. +

    + +
  5. Consider adding a configuration parameter for "block_time_stddev" +which would be the number of standard deviations from the average +time a process remains blocked for input out output before +resuming execution. This would help eliminate the need for the +"process" directive. +

    + +
  6. Consider adding a configuration parameter for "quantum" which +specifies the number of milliseconds that a process is allowed to +execute before being re-considered by the scheduling algorithm. +

    + +
  7. Consider modifying the format of the Summary-Processes log file. +The total cpu time for the process is repeated in the last column +and should be eliminated. It would be nice if the total elapsed +milliseconds (system clock) were present at the beginning of the line +so that we can see when things happened exactly during the simulation. +If we switch to the meanings of the various parameters as suggested +above, we may want to rethink the overall format of the lines as +well. +

    + +
  8. Consider adding a configuration parameter for "summary_file" so that +the name for the Summary-Results file can be specified +in the configuration file. +

    + +
  9. Consider adding a configuration parameter for "log_file" so +that the name for the Summary-Processes file can be +specified in the configuration file. +

    + +
  10. Consider adding a graphical user +interface that allowed the user to view the simulation +as it proceeded. This might show a summary of the +number of blocked processes and executable processes, +the percentage of idle time, and even the current status +of each process. This might be enabled by a configuration +parameter "show_graphics true". A "step" button might +allow the simulation to proceed 1000 milliseconds at a +time, or a "run" button might allow it to update every +1000 milliseconds until the simulation completes. A +"reset" button might restart the simulation to its original +values, and there might be menu options to allow the user +to override the parameter values given in the configuration file. +

    + +
+ +

Copyright

+ +© Copyright 2001, Prentice-Hall, Inc. +

+This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. +

+This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. +

+You should have received a copy of the GNU General Public License +along with this program (see COPYING.TXT); +if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +

+ +Please send suggestions, corrections, and comments to +Ray Ontko +(rayo@ontko.com). +

+Last updated: May 23, 2001 + + diff --git a/EOPSY/lab4/EOPSY_LAB_4_KRZYSZTOF_RUDNICKI.pdf b/EOPSY/lab4/EOPSY_LAB_4_KRZYSZTOF_RUDNICKI.pdf new file mode 100644 index 00000000..4d4ab195 Binary files /dev/null and b/EOPSY/lab4/EOPSY_LAB_4_KRZYSZTOF_RUDNICKI.pdf differ diff --git a/EOPSY/lab4/report/mm1.png b/EOPSY/lab4/report/mm1.png new file mode 100644 index 00000000..b00a00e2 Binary files /dev/null and b/EOPSY/lab4/report/mm1.png differ diff --git a/EOPSY/lab4/report/mm2.png b/EOPSY/lab4/report/mm2.png new file mode 100644 index 00000000..6f27d5de Binary files /dev/null and b/EOPSY/lab4/report/mm2.png differ diff --git a/EOPSY/lab4/report/mm3.png b/EOPSY/lab4/report/mm3.png new file mode 100644 index 00000000..d567bafc Binary files /dev/null and b/EOPSY/lab4/report/mm3.png differ diff --git a/EOPSY/lab4/report/mm4.png b/EOPSY/lab4/report/mm4.png new file mode 100644 index 00000000..79df857f Binary files /dev/null and b/EOPSY/lab4/report/mm4.png differ diff --git a/EOPSY/lab4/report/mm5.png b/EOPSY/lab4/report/mm5.png new file mode 100644 index 00000000..94e6c2b4 Binary files /dev/null and b/EOPSY/lab4/report/mm5.png differ diff --git a/EOPSY/lab4/report/mm6.png b/EOPSY/lab4/report/mm6.png new file mode 100644 index 00000000..5034d008 Binary files /dev/null and b/EOPSY/lab4/report/mm6.png differ diff --git a/EOPSY/lab4/report/mm7.png b/EOPSY/lab4/report/mm7.png new file mode 100644 index 00000000..8be5e189 Binary files /dev/null and b/EOPSY/lab4/report/mm7.png differ diff --git a/EOPSY/lab4/report/report.aux b/EOPSY/lab4/report/report.aux new file mode 100644 index 00000000..cbd59309 --- /dev/null +++ b/EOPSY/lab4/report/report.aux @@ -0,0 +1,51 @@ +\relax +\providecommand\hyper@newdestlabel[2]{} +\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} +\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined +\global\let\oldcontentsline\contentsline +\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} +\global\let\oldnewlabel\newlabel +\gdef\newlabel#1#2{\newlabelxx{#1}#2} +\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} +\AtEndDocument{\ifx\hyper@anchor\@undefined +\let\contentsline\oldcontentsline +\let\newlabel\oldnewlabel +\fi} +\fi} +\global\let\hyper@last\relax +\gdef\HyperFirstAtBeginDocument#1{#1} +\providecommand\HyField@AuxAddToFields[1]{} +\providecommand\HyField@AuxAddToCoFields[2]{} +\citation{Page Replacement Algorithms} +\citation{Page Replacement Algorithms} +\citation{Page Replacement Algorithms} +\citation{pageWiki} +\@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{1}{section.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {1.1}Page replacement algorithms}{1}{subsection.1.1}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{First in First out}{1}{section*.1}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces PageFault.java file}}{1}{figure.1}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{Optimal Page Replacement}{1}{section*.2}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{Least Recently Used}{1}{section*.3}\protected@file@percent } +\citation{mmuWiki} +\@writefile{toc}{\contentsline {subsection}{\numberline {1.2}Other}{2}{subsection.1.2}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{Memory Management Unit}{2}{section*.4}\protected@file@percent } +\@writefile{toc}{\contentsline {paragraph}{Page fault}{2}{section*.5}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {2}Laboratory}{2}{section.2}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Instruction}{2}{subsection.2.1}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Configuration}{2}{subsection.2.2}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {2}{\ignorespaces memory.conf file}}{3}{figure.2}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {3}{\ignorespaces commands file}}{4}{figure.3}\protected@file@percent } +\@writefile{toc}{\contentsline {subsection}{\numberline {2.3}Procedure}{5}{subsection.2.3}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {4}{\ignorespaces tracefile}}{6}{figure.4}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {5}{\ignorespaces Very start of application}}{8}{figure.5}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {6}{\ignorespaces First step correctly mapped}}{9}{figure.6}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {7}{\ignorespaces 16th page correctly mapped}}{10}{figure.7}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {8}{\ignorespaces First page fault on 32th step}}{11}{figure.8}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {9}{\ignorespaces First in First out, we map page 0 physical to the page we just got page fault on}}{12}{figure.9}\protected@file@percent } +\@writefile{lof}{\contentsline {figure}{\numberline {10}{\ignorespaces Again first in, first out}}{13}{figure.10}\protected@file@percent } +\bibcite{mmuWiki}{1} +\@writefile{lof}{\contentsline {figure}{\numberline {11}{\ignorespaces Final view of application}}{14}{figure.11}\protected@file@percent } +\@writefile{toc}{\contentsline {section}{\numberline {3}Finishing comments}{14}{section.3}\protected@file@percent } +\bibcite{faultWiki}{2} +\bibcite{Page Replacement Algorithms}{3} +\bibcite{pageWiki}{4} diff --git a/EOPSY/lab4/report/report.fdb_latexmk b/EOPSY/lab4/report/report.fdb_latexmk new file mode 100644 index 00000000..44476e60 --- /dev/null +++ b/EOPSY/lab4/report/report.fdb_latexmk @@ -0,0 +1,94 @@ +# Fdb version 3 +["pdflatex"] 1651873378 "report.tex" "report.pdf" "report" 1651873378 + "/etc/texmf/web2c/texmf.cnf" 1649511474 475 c0e671620eb5563b2130f56340a5fde8 "" + "/usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map" 1577235249 3524 cb3e574dea2d1052e39280babc910dc8 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/jknappen/ec/tcti1000.tfm" 1136768653 2048 3777f70f4372b17e2d3fda2b5684af05 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmbx10.tfm" 1136768653 1328 c834bbb027764024c09d3d2bf908b5f0 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm" 1136768653 1324 c910af8c371558dc20f2d7822f66fe64 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm" 1136768653 1524 4414a8315f39513458b80dfc63bff03a "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm" 1136768653 1512 f21f83efb36853c0b70002322c1ab3ad "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi8.tfm" 1136768653 1520 eccf95517727cb11801f4f1aee3a21b4 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr12.tfm" 1136768653 1288 655e228510b4c2a1abe905c368440826 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr17.tfm" 1136768653 1292 296a67155bdbfc32aa9c636f21e91433 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr6.tfm" 1136768653 1300 b62933e007d01cfd073f79b963c01526 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr8.tfm" 1136768653 1292 21c1c5bfeaebccffdb478fd231a0997d "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm" 1136768653 1124 6c73e740cf17375f03eec0ee63599741 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm" 1136768653 1116 933a60c408fc0a863a92debe84b2d294 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy8.tfm" 1136768653 1120 8b7d695260f3cff42e636090a8002094 "" + "/usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmti10.tfm" 1136768653 1480 aa8e34af0eb6a2941b776984cf1dfdc4 "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb" 1248133631 34811 78b52f49e893bcba91bd7581cdc144c0 "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb" 1248133631 32080 340ef9bf63678554ee606688e7b5339d "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb" 1248133631 36299 5f9df58c2139e7edcf37c8fca4bd384d "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb" 1248133631 35752 024fb6c41858982481f6968b5fc26508 "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb" 1248133631 32722 d7379af29a190c3f453aba36302ff5a9 "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb" 1248133631 32362 179c33bbf43f19adbb3825bb4e36e57a "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb" 1248133631 32569 5e5ddc8df908dea60932f3c484a54c0d "" + "/usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmti10.pfb" 1248133631 37944 359e864bd06cde3b1cf57bb20757fb06 "" + "/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii" 1461363279 71627 94eb9990bed73c364d7f53f960cc8c5b "" + "/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty" 1575674566 24708 5584a51a7101caf7e6bbf1fc27d8f7b1 "" + "/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty" 1576625341 40635 c40361e206be584d448876bba8a64a3b "" + "/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty" 1576016050 33961 6b5c75130e435b2bfdb9f480a09a39f9 "" + "/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty" 1576625273 7734 b98cbb34c81f667027c1e3ebdbfce34b "" + "/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty" 1576625223 8371 9d55b8bd010bc717624922fb3477d92e "" + "/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty" 1573336935 6902 30fdaf7dc5636b8e3afa306210c45cae "" + "/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty" 1572645307 1057 525c2192b5febbd8c1f662c9468335bb "" + "/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty" 1575499628 8356 7bbb2c2373aa810be568c29e333da8ed "" + "/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty" 1576625065 31769 002a487f55041f8e805cfbf6385ffd97 "" + "/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty" 1576878844 5412 d5a2436094cd7be85769db90f29250a6 "" + "/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty" 1576624944 13807 952b0226d4efca026f0e19dd266dcc22 "" + "/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty" 1576624883 18552 1e1cc7b75da0dfaacce7cdcb27d306bf "" + "/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty" 1576015897 19007 15924f7228aca6c6d184b115f4baa231 "" + "/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty" 1576624663 7008 f92eaa0a3872ed622bbf538217cd2ab7 "" + "/usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty" 1576191570 19336 ce7ae9438967282886b3b036cfad1e4d "" + "/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty" 1576625391 3935 57aa3c3e203a5c2effb4d2bd2efbc323 "" + "/usr/share/texlive/texmf-dist/tex/latex/base/article.cls" 1580683321 20023 e427dd9e17e239bf926ef3aab67fe35e "" + "/usr/share/texlive/texmf-dist/tex/latex/base/omlcmr.fd" 1580683321 2471 93c7889092ef3d83d375b915c5381dfe "" + "/usr/share/texlive/texmf-dist/tex/latex/base/omscmr.fd" 1580683321 2470 59e43b502a8bea3a12f4954945302e40 "" + "/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo" 1580683321 8446 9874cccac5fee462272c582807dbbf56 "" + "/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty" 1579991033 13886 d1306dcf79a944f6988e688c1785f9ce "" + "/usr/share/texlive/texmf-dist/tex/latex/float/float.sty" 1137110151 6749 16d2656a1984957e674b149555f1ea1d "" + "/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty" 1578002852 41601 9cf6c5257b1bc7af01a58859749dd37a "" + "/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg" 1465944070 1224 978390e9c2234eab29404bc21b268d1e "" + "/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def" 1515537368 17334 520b9b85ad8a2a48eda3f643e27a5179 "" + "/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty" 1580683321 16932 04729abe63b66ec59ea56edcd722b058 "" + "/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty" 1580683321 9067 1b996612394a52e1efe89c8bfe8a5892 "" + "/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty" 1580683321 2590 e3b24ff953e5b58d924f163d25380312 "" + "/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty" 1580683321 3976 d7fa7d81d2870d509d25b17d0245e735 "" + "/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty" 1580250785 17914 4c28a13fc3d975e6e81c9bea1d697276 "" + "/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def" 1579642962 50630 3d9728faf8630190cf601ce2cbe470d9 "" + "/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty" 1579642962 238752 60dd338d71b6a4ab2192131f73dc908b "" + "/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty" 1579642962 13244 0070bcab7b5a88187847128d22faf4d8 "" + "/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def" 1579642962 14134 32b36577d311ddb6522413c7581ee968 "" + "/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty" 1575152344 22520 c4c2dab203104295e1e618be7e5c0f5b "" + "/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def" 1580854751 25404 9d60f463a00d154207ec0048dee27cf0 "" + "/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1279039959 678 4792914a8f45be57bb98413425e4c7af "" + "/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty" 1575499565 5766 13a9e8766c47f30327caf893ece86ac8 "" + "/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg" 1568236792 1830 bbaba8afaf42cc048ec4d4ff73467521 "" + "/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty" 1568236792 80511 830f3f1d3ab7448dd84233e9c2f6462c "" + "/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty" 1568236792 204271 6a0ce6b8dafb6c4a13b9036ab1717c77 "" + "/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty" 1568236792 77022 32914f01b528131c47be2a1040d3856d "" + "/usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty" 1574631863 19963 36fd8e818f9f0f32e2db8413d4970122 "" + "/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty" 1576624809 9878 9e94e8fa600d95f9c7731bb21dfb67a4 "" + "/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty" 1575674187 9715 b051d5b493d9fe5f4bc251462d039e5f "" + "/usr/share/texlive/texmf-dist/tex/latex/url/url.sty" 1388531844 12796 8edb7d69a20b857904dd0ea757c14ec9 "" + "/usr/share/texlive/texmf-dist/web2c/texmf.cnf" 1581979058 38841 ce3692aa899bb693b90b87eaa5d4d84e "" + "/usr/share/texmf/fonts/enc/dvips/cm-super/cm-super-ts1.enc" 1565080000 2900 1537cc8184ad1792082cd229ecc269f4 "" + "/usr/share/texmf/fonts/type1/public/cm-super/sfti1000.pfb" 1565080000 186554 e8f0fa8ca05e038f257a06405232745f "" + "/usr/share/texmf/web2c/texmf.cnf" 1581979058 38841 ce3692aa899bb693b90b87eaa5d4d84e "" + "/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1649511498 4770781 1ed1abab22da9c3e2cc82e4db562318b "" + "/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1649511522 8256308 efb305160d4d659dcd0c4df67bdfa340 "" + "mm1.png" 1651872367 13028 31af420353ece32f7494128003dbffaf "" + "mm2.png" 1651872375 13116 c3e873b1ba354ba43d7b6eb9470b0bd6 "" + "mm3.png" 1651872399 13219 94c9555ab465af789980738d5f1c2536 "" + "mm4.png" 1651872411 13219 831ca09a484aef81b028f35bcb2477a5 "" + "mm5.png" 1651872418 13185 8d670ae1494b8c40c74135a114fafefa "" + "mm6.png" 1651872426 13206 35c1d3862e02fa30a217bc45585960f1 "" + "mm7.png" 1651872466 14687 d757d7ec7fd0db9517bbf4d9bce1e180 "" + "report.aux" 1651873378 3899 9d93be87e479de6fc8cb4c757de8f751 "pdflatex" + "report.out" 1651873378 455 4916b4a3abc871847d3be1481c7d301d "pdflatex" + "report.tex" 1651873377 9779 3df555b282997bb28c357aee6eddcac8 "" + (generated) + "report.pdf" + "report.aux" + "report.log" + "report.out" diff --git a/EOPSY/lab4/report/report.fls b/EOPSY/lab4/report/report.fls new file mode 100644 index 00000000..c455e7b1 --- /dev/null +++ b/EOPSY/lab4/report/report.fls @@ -0,0 +1,164 @@ +PWD /home/kuchy/Zlew/Studia/NieNotatki/Projekty/nie_inzynierka/Programowanie/EOPSY/eopsy_rudnicki_lab/lab4/report +INPUT /etc/texmf/web2c/texmf.cnf +INPUT /usr/share/texmf/web2c/texmf.cnf +INPUT /usr/share/texlive/texmf-dist/web2c/texmf.cnf +INPUT /var/lib/texmf/web2c/pdftex/pdflatex.fmt +INPUT report.tex +OUTPUT report.log +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/article.cls +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/size10.clo +INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg +INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def +INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/url/url.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def +INPUT /usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def +INPUT /usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def +INPUT /usr/share/texlive/texmf-dist/tex/latex/float/float.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/float/float.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def +INPUT /usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def +INPUT report.aux +INPUT report.aux +OUTPUT report.aux +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty +INPUT /usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty +INPUT report.out +INPUT report.out +INPUT report.out +INPUT report.out +OUTPUT report.pdf +INPUT ./report.out +INPUT ./report.out +OUTPUT report.out +INPUT /usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +INPUT /usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +INPUT /usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +INPUT /usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +INPUT /usr/share/texlive/texmf-dist/fonts/map/fontname/texfonts.map +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr17.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr12.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr8.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr6.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi12.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi8.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmmi6.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy10.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy8.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmsy6.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmr12.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmbx10.tfm +INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/omscmr.fd +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/omscmr.fd +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/public/cm/cmti10.tfm +INPUT /usr/share/texlive/texmf-dist/fonts/tfm/jknappen/ec/tcti1000.tfm +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/omlcmr.fd +INPUT /usr/share/texlive/texmf-dist/tex/latex/base/omlcmr.fd +INPUT /var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map +INPUT mm1.png +INPUT ./mm1.png +INPUT ./mm1.png +INPUT mm2.png +INPUT ./mm2.png +INPUT ./mm2.png +INPUT mm3.png +INPUT ./mm3.png +INPUT ./mm3.png +INPUT mm4.png +INPUT ./mm4.png +INPUT ./mm4.png +INPUT mm5.png +INPUT ./mm5.png +INPUT ./mm5.png +INPUT mm6.png +INPUT ./mm6.png +INPUT ./mm6.png +INPUT mm7.png +INPUT ./mm7.png +INPUT ./mm7.png +INPUT report.aux +INPUT ./report.out +INPUT ./report.out +INPUT /usr/share/texmf/fonts/enc/dvips/cm-super/cm-super-ts1.enc +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb +INPUT /usr/share/texlive/texmf-dist/fonts/type1/public/amsfonts/cm/cmti10.pfb +INPUT /usr/share/texmf/fonts/type1/public/cm-super/sfti1000.pfb diff --git a/EOPSY/lab4/report/report.log b/EOPSY/lab4/report/report.log new file mode 100644 index 00000000..8260961a --- /dev/null +++ b/EOPSY/lab4/report/report.log @@ -0,0 +1,436 @@ +This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Debian) (preloaded format=pdflatex 2022.4.9) 6 MAY 2022 23:42 +entering extended mode + restricted \write18 enabled. + file:line:error style messages enabled. + %&-line parsing enabled. +**report.tex +(./report.tex +LaTeX2e <2020-02-02> patch level 2 +L3 programming layer <2020-02-14> (/usr/share/texlive/texmf-dist/tex/latex/base/article.cls +Document Class: article 2019/12/20 v1.4l Standard LaTeX document class +(/usr/share/texlive/texmf-dist/tex/latex/base/size10.clo +File: size10.clo 2019/12/20 v1.4l Standard LaTeX file (size option) +) +\c@part=\count167 +\c@section=\count168 +\c@subsection=\count169 +\c@subsubsection=\count170 +\c@paragraph=\count171 +\c@subparagraph=\count172 +\c@figure=\count173 +\c@table=\count174 +\abovecaptionskip=\skip47 +\belowcaptionskip=\skip48 +\bibindent=\dimen134 +) (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty (/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty +Package: keyval 2014/10/28 v1.15 key=value parser (DPC) +\KV@toks@=\toks14 +) +\lst@mode=\count175 +\lst@gtempboxa=\box45 +\lst@token=\toks15 +\lst@length=\count176 +\lst@currlwidth=\dimen135 +\lst@column=\count177 +\lst@pos=\count178 +\lst@lostspace=\dimen136 +\lst@width=\dimen137 +\lst@newlines=\count179 +\lst@lineno=\count180 +\lst@maxwidth=\dimen138 + (/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty +File: lstmisc.sty 2019/09/10 1.8c (Carsten Heinz) +\c@lstnumber=\count181 +\lst@skipnumbers=\count182 +\lst@framebox=\box46 +) (/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg +File: listings.cfg 2019/09/10 1.8c listings configuration +)) +Package: listings 2019/09/10 1.8c (Carsten Heinz) + (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty +Package: hyperref 2020/01/14 v7.00d Hypertext links for LaTeX + (/usr/share/texlive/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty +Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO) +) (/usr/share/texlive/texmf-dist/tex/generic/iftex/iftex.sty +Package: iftex 2019/11/07 v1.0c TeX engine tests +) (/usr/share/texlive/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty +Package: pdftexcmds 2019/11/24 v0.31 Utility functions of pdfTeX for LuaTeX (HO) + (/usr/share/texlive/texmf-dist/tex/generic/infwarerr/infwarerr.sty +Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO) +) +Package pdftexcmds Info: \pdf@primitive is available. +Package pdftexcmds Info: \pdf@ifprimitive is available. +Package pdftexcmds Info: \pdfdraftmode found. +) (/usr/share/texlive/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty +Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO) +) (/usr/share/texlive/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty +Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO) +) (/usr/share/texlive/texmf-dist/tex/generic/pdfescape/pdfescape.sty +Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO) +) (/usr/share/texlive/texmf-dist/tex/latex/hycolor/hycolor.sty +Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO) +) (/usr/share/texlive/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty +Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO) +) (/usr/share/texlive/texmf-dist/tex/latex/auxhook/auxhook.sty +Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO) +) (/usr/share/texlive/texmf-dist/tex/latex/kvoptions/kvoptions.sty +Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO) +) +\@linkdim=\dimen139 +\Hy@linkcounter=\count183 +\Hy@pagecounter=\count184 + (/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def +File: pd1enc.def 2020/01/14 v7.00d Hyperref: PDFDocEncoding definition (HO) +Now handling font encoding PD1 ... +... no UTF-8 mapping file for font encoding PD1 +) (/usr/share/texlive/texmf-dist/tex/generic/intcalc/intcalc.sty +Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO) +) (/usr/share/texlive/texmf-dist/tex/generic/etexcmds/etexcmds.sty +Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO) +) +\Hy@SavedSpaceFactor=\count185 +\pdfmajorversion=\count186 +Package hyperref Info: Hyper figures OFF on input line 4547. +Package hyperref Info: Link nesting OFF on input line 4552. +Package hyperref Info: Hyper index ON on input line 4555. +Package hyperref Info: Plain pages OFF on input line 4562. +Package hyperref Info: Backreferencing OFF on input line 4567. +Package hyperref Info: Implicit mode ON; LaTeX internals redefined. +Package hyperref Info: Bookmarks ON on input line 4800. +\c@Hy@tempcnt=\count187 + (/usr/share/texlive/texmf-dist/tex/latex/url/url.sty +\Urlmuskip=\muskip16 +Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc. +) +LaTeX Info: Redefining \url on input line 5159. +\XeTeXLinkMargin=\dimen140 + (/usr/share/texlive/texmf-dist/tex/generic/bitset/bitset.sty +Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO) + (/usr/share/texlive/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty +Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO) +)) +\Fld@menulength=\count188 +\Field@Width=\dimen141 +\Fld@charsize=\dimen142 +Package hyperref Info: Hyper figures OFF on input line 6430. +Package hyperref Info: Link nesting OFF on input line 6435. +Package hyperref Info: Hyper index ON on input line 6438. +Package hyperref Info: backreferencing OFF on input line 6445. +Package hyperref Info: Link coloring OFF on input line 6450. +Package hyperref Info: Link coloring with OCG OFF on input line 6455. +Package hyperref Info: PDF/A mode OFF on input line 6460. +LaTeX Info: Redefining \ref on input line 6500. +LaTeX Info: Redefining \pageref on input line 6504. + (/usr/share/texlive/texmf-dist/tex/generic/atbegshi/atbegshi.sty +Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO) +) +\Hy@abspage=\count189 +\c@Item=\count190 +\c@Hfootnote=\count191 +) +Package hyperref Info: Driver (autodetected): hpdftex. + (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def +File: hpdftex.def 2020/01/14 v7.00d Hyperref driver for pdfTeX + (/usr/share/texlive/texmf-dist/tex/latex/atveryend/atveryend.sty +Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO) +Package atveryend Info: \enddocument detected (standard20110627). +) +\Fld@listcount=\count192 +\c@bookmark@seq@number=\count193 + (/usr/share/texlive/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty +Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO) + (/usr/share/texlive/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty +Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO) +) +Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 286. +) +\Hy@SectionHShift=\skip49 +) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty +Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR) + (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty +Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR) + +(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty +Package: trig 2016/01/03 v1.10 sin cos tan (DPC) +) (/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration +) +Package graphics Info: Driver file: pdftex.def on input line 105. + (/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def +File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex +)) +\Gin@req@height=\dimen143 +\Gin@req@width=\dimen144 +) (/usr/share/texlive/texmf-dist/tex/latex/float/float.sty +Package: float 2001/11/08 v1.3d Float enhancements (AL) +\c@float@type=\count194 +\float@exts=\toks16 +\float@box=\box47 +\@float@everytoks=\toks17 +\@floatcapt=\box48 +) (/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +Package: geometry 2020/01/02 v5.9 Page Geometry + (/usr/share/texlive/texmf-dist/tex/generic/iftex/ifvtex.sty +Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead. +) +\Gm@cnth=\count195 +\Gm@cntv=\count196 +\c@Gm@tempcnt=\count197 +\Gm@bindingoffset=\dimen145 +\Gm@wd@mp=\dimen146 +\Gm@odd@mp=\dimen147 +\Gm@even@mp=\dimen148 +\Gm@layoutwidth=\dimen149 +\Gm@layoutheight=\dimen150 +\Gm@layouthoffset=\dimen151 +\Gm@layoutvoffset=\dimen152 +\Gm@dimlist=\toks18 +) (/usr/share/texlive/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def +File: l3backend-pdfmode.def 2020-02-03 L3 backend support: PDF mode +\l__kernel_color_stack_int=\count198 +\l__pdf_internal_box=\box49 +) (./report.aux) +\openout1 = `report.aux'. + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 7. +LaTeX Font Info: ... okay on input line 7. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 7. +LaTeX Font Info: ... okay on input line 7. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 7. +LaTeX Font Info: ... okay on input line 7. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 7. +LaTeX Font Info: ... okay on input line 7. +LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 7. +LaTeX Font Info: ... okay on input line 7. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 7. +LaTeX Font Info: ... okay on input line 7. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 7. +LaTeX Font Info: ... okay on input line 7. +LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 7. +LaTeX Font Info: ... okay on input line 7. +\c@lstlisting=\count199 +\AtBeginShipoutBox=\box50 +Package hyperref Info: Link coloring OFF on input line 7. + (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty +Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section + (/usr/share/texlive/texmf-dist/tex/latex/refcount/refcount.sty +Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO) +) (/usr/share/texlive/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty +Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO) +) +\c@section@level=\count266 +) +LaTeX Info: Redefining \ref on input line 7. +LaTeX Info: Redefining \pageref on input line 7. +LaTeX Info: Redefining \nameref on input line 7. + (./report.out) (./report.out) +\@outlinefile=\write3 +\openout3 = `report.out'. + + (/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +\scratchcounter=\count267 +\scratchdimen=\dimen153 +\scratchbox=\box51 +\nofMPsegments=\count268 +\nofMParguments=\count269 +\everyMPshowfont=\toks19 +\MPscratchCnt=\count270 +\MPscratchDim=\dimen154 +\MPnumerator=\count271 +\makeMPintoPDFobject=\count272 +\everyMPtoPDFconversion=\toks20 +) (/usr/share/texlive/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty +Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf +Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 485. + (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live +)) +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +*geometry* verbose mode - [ preamble ] result: +* driver: pdftex +* paper: +* layout: +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: +* h-part:(L,W,R)=(90.3375pt, 433.62001pt, 90.3375pt) +* v-part:(T,H,B)=(90.3375pt, 614.295pt, 90.3375pt) +* \paperwidth=614.295pt +* \paperheight=794.96999pt +* \textwidth=433.62001pt +* \textheight=614.295pt +* \oddsidemargin=18.0675pt +* \evensidemargin=18.0675pt +* \topmargin=-18.9325pt +* \headheight=12.0pt +* \headsep=25.0pt +* \topskip=10.0pt +* \footskip=30.0pt +* \marginparwidth=65.0pt +* \marginparsep=11.0pt +* \columnsep=10.0pt +* \skip\footins=9.0pt plus 4.0pt minus 2.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <12> on input line 12. +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <8> on input line 12. +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <6> on input line 12. +(/usr/share/texlive/texmf-dist/tex/latex/listings/lstlang1.sty +File: lstlang1.sty 2019/09/10 1.8c listings language file +) +LaTeX Font Info: Trying to load font information for OMS+cmr on input line 22. + (/usr/share/texlive/texmf-dist/tex/latex/base/omscmr.fd +File: omscmr.fd 2019/12/16 v2.5j Standard LaTeX font definitions +) +LaTeX Font Info: Font shape `OMS/cmr/m/n' in size <10> not available +(Font) Font shape `OMS/cmsy/m/n' tried instead on input line 22. +LaTeX Font Info: Trying to load font information for OML+cmr on input line 27. + (/usr/share/texlive/texmf-dist/tex/latex/base/omlcmr.fd +File: omlcmr.fd 2019/12/16 v2.5j Standard LaTeX font definitions +) +LaTeX Font Info: Font shape `OML/cmr/m/it' in size <10> not available +(Font) Font shape `OML/cmm/m/it' tried instead on input line 27. +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <7> on input line 29. +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <5> on input line 29. + [1 + +{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}pdfTeX warning (ext4): destination with the same identifier (name{figure.1}) has been already used, duplicate ignored + +\AtBegShi@Output ...ipout \box \AtBeginShipoutBox + \fi \fi +l.62 \subsection + {Other}] +LaTeX Font Info: Font shape `OML/cmr/m/n' in size <10> not available +(Font) Font shape `OML/cmm/m/it' tried instead on input line 102. + [2] [3pdfTeX warning (ext4): destination with the same identifier (name{figure.2}) has been already used, duplicate ignored + +\AtBegShi@Output ...ipout \box \AtBeginShipoutBox + \fi \fi +l.242 \end{figure} + ] [4pdfTeX warning (ext4): destination with the same identifier (name{figure.3}) has been already used, duplicate ignored + +\AtBegShi@Output ...ipout \box \AtBeginShipoutBox + \fi \fi +l.242 \end{figure} + ] [5] + +File: mm1.png Graphic file (type png) + +Package pdftex.def Info: mm1.png used on input line 256. +(pdftex.def) Requested size: 433.62001pt x 506.79997pt. + [6pdfTeX warning (ext4): destination with the same identifier (name{figure.4}) has been already used, duplicate ignored + +\AtBegShi@Output ...ipout \box \AtBeginShipoutBox + \fi \fi +l.257 \end{figure} + ] + +File: mm2.png Graphic file (type png) + +Package pdftex.def Info: mm2.png used on input line 260. +(pdftex.def) Requested size: 433.62001pt x 506.79997pt. + [7] + +File: mm3.png Graphic file (type png) + +Package pdftex.def Info: mm3.png used on input line 264. +(pdftex.def) Requested size: 433.62001pt x 506.79997pt. + [8pdfTeX warning (ext4): destination with the same identifier (name{figure.5}) has been already used, duplicate ignored + +\AtBegShi@Output ...ipout \box \AtBeginShipoutBox + \fi \fi +l.265 \end{figure} + <./mm1.png>] + +File: mm4.png Graphic file (type png) + +Package pdftex.def Info: mm4.png used on input line 268. +(pdftex.def) Requested size: 433.62001pt x 506.79997pt. + [9pdfTeX warning (ext4): destination with the same identifier (name{figure.6}) has been already used, duplicate ignored + +\AtBegShi@Output ...ipout \box \AtBeginShipoutBox + \fi \fi +l.269 \end{figure} + <./mm2.png>] + +File: mm5.png Graphic file (type png) + +Package pdftex.def Info: mm5.png used on input line 273. +(pdftex.def) Requested size: 433.62001pt x 506.79997pt. + [10pdfTeX warning (ext4): destination with the same identifier (name{figure.7}) has been already used, duplicate ignored + +\AtBegShi@Output ...ipout \box \AtBeginShipoutBox + \fi \fi +l.274 \end{figure} + <./mm3.png>] + +File: mm6.png Graphic file (type png) + +Package pdftex.def Info: mm6.png used on input line 277. +(pdftex.def) Requested size: 433.62001pt x 506.79997pt. + [11pdfTeX warning (ext4): destination with the same identifier (name{figure.8}) has been already used, duplicate ignored + +\AtBegShi@Output ...ipout \box \AtBeginShipoutBox + \fi \fi +l.278 \end{figure} + <./mm4.png>] + +File: mm7.png Graphic file (type png) + +Package pdftex.def Info: mm7.png used on input line 281. +(pdftex.def) Requested size: 433.62001pt x 455.41608pt. + [12pdfTeX warning (ext4): destination with the same identifier (name{figure.9}) has been already used, duplicate ignored + +\AtBegShi@Output ...ipout \box \AtBeginShipoutBox + \fi \fi +l.282 \end{figure} + <./mm5.png>] [13pdfTeX warning (ext4): destination with the same identifier (name{figure.10}) has been already used, duplicate ignored + +\AtBegShi@Output ...ipout \box \AtBeginShipoutBox + \fi \fi +l.283 \section + {Finishing comments} <./mm6.png>] [14pdfTeX warning (ext4): destination with the same identifier (name{figure.11}) has been already used, duplicate ignored + +\AtBegShi@Output ...ipout \box \AtBeginShipoutBox + \fi \fi +l.291 \bibitem{faultWiki} + \href{https://en.wikipedia.org/wiki/Page_fault}{[... <./mm7.png>] +Package atveryend Info: Empty hook `BeforeClearDocument' on input line 299. + [15] +Package atveryend Info: Empty hook `AfterLastShipout' on input line 299. + (./report.aux) +Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 299. +Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 299. +Package rerunfilecheck Info: File `report.out' has not changed. +(rerunfilecheck) Checksum: 4916B4A3ABC871847D3BE1481C7D301D;455. +Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 299. + ) +Here is how much of TeX's memory you used: + 7738 strings out of 481239 + 114084 string characters out of 5920378 + 628834 words of memory out of 5000000 + 22707 multiletter control sequences out of 15000+600000 + 537316 words of font info for 40 fonts, out of 8000000 for 9000 + 1141 hyphenation exceptions out of 8191 + 34i,6n,42p,226b,1493s stack positions out of 5000i,500n,10000p,200000b,80000s +{/usr/share/texmf/fonts/enc/dvips/cm-super/cm-super-ts1.enc} +Output written on report.pdf (15 pages, 205194 bytes). +PDF statistics: + 380 PDF objects out of 1000 (max. 8388607) + 336 compressed objects within 4 object streams + 196 named destinations out of 1000 (max. 500000) + 100 words of extra memory for PDF output out of 10000 (max. 10000000) + diff --git a/EOPSY/lab4/report/report.out b/EOPSY/lab4/report/report.out new file mode 100644 index 00000000..67691293 --- /dev/null +++ b/EOPSY/lab4/report/report.out @@ -0,0 +1,8 @@ +\BOOKMARK [1][-]{section.1}{Introduction}{}% 1 +\BOOKMARK [2][-]{subsection.1.1}{Page replacement algorithms}{section.1}% 2 +\BOOKMARK [2][-]{subsection.1.2}{Other}{section.1}% 3 +\BOOKMARK [1][-]{section.2}{Laboratory}{}% 4 +\BOOKMARK [2][-]{subsection.2.1}{Instruction}{section.2}% 5 +\BOOKMARK [2][-]{subsection.2.2}{Configuration}{section.2}% 6 +\BOOKMARK [2][-]{subsection.2.3}{Procedure}{section.2}% 7 +\BOOKMARK [1][-]{section.3}{Finishing comments}{}% 8 diff --git a/EOPSY/lab4/report/report.pdf b/EOPSY/lab4/report/report.pdf new file mode 100644 index 00000000..4d4ab195 Binary files /dev/null and b/EOPSY/lab4/report/report.pdf differ diff --git a/EOPSY/lab4/report/report.synctex.gz b/EOPSY/lab4/report/report.synctex.gz new file mode 100644 index 00000000..1486228c Binary files /dev/null and b/EOPSY/lab4/report/report.synctex.gz differ diff --git a/EOPSY/lab4/report/report.tex b/EOPSY/lab4/report/report.tex new file mode 100644 index 00000000..1bfbfa94 --- /dev/null +++ b/EOPSY/lab4/report/report.tex @@ -0,0 +1,299 @@ +\documentclass{article} +\usepackage{listings} +\usepackage{hyperref} +\usepackage{graphicx} +\usepackage{float} +\usepackage[margin=1.25in]{geometry} +\begin{document} +\title{EOPSY Lab 4 Report} +\author{Krzysztof Rudnicki, 307585} +\date{\today} +\maketitle +\section{Introduction} +\subsection{Page replacement algorithms} +\paragraph{First in First out} +What page replacament algorithm is being used? \\ +We use FIFO (First in First out) page replacement algorithm for those laboratories as indicated +by the PageFault.java file line 18 +\begin{figure}[H] +\caption{PageFault.java file} +\begin{lstlisting}[language=Java] +[...] +public class PageFault { + + /** + * The page replacement algorithm for the memory management sumulator. + * This method gets called whenever a page needs to be replaced. + *

+ * The page replacement algorithm included with the simulator is + * FIFO (first-in first-out). A while or for loop should be used + * to search through the current memory contents for a canidate + * replacement page. In the case of FIFO the while loop is used + * to find the proper page while making sure that virtPageNum is + * not exceeded. +[...] +\end{lstlisting} +\end{figure} +All pages are stored in memory in a queue. Oldest page (First that came in) is +in front of this queue. \\ When we need to replace the page we remove the page that +is first in queue (so the one that came in as a first one, first in, first out) +\\ +It is easy to explain and implement but in practical application it performs +poorly. It is still used but usually we use modified version of it. +\cite{Page Replacement Algorithms} +\paragraph{Optimal Page Replacement} +We replace pages which in the future will not be used for the longest time. +This is purely theoretical algorithm. It is perfect but not doable in practice +since operating systems can not know future requests. \\ +It is used as a benchmark against which we compare other algorithms. +\cite{Page Replacement Algorithms} +\paragraph{Least Recently Used} +We replace page which was not used for the longest time. \\ +It is based on the idea that we will in future work on pages which we used +heavily in the past. In theory its performance can be close to optimal one but +in practice it is expensive to implement. \\ +Most expensive way of implementing this algorithm is using linked lists. Most +recently used pages in front, least recently used in the back. Every time we +reference memory we have to move elements in list which takes a lot of time. \\ +We can also use operating system counter \\ +This algorithm is often used in different cheaper modified versions. +\cite{Page Replacement Algorithms} +\cite{pageWiki} +\subsection{Other} +\paragraph{Memory Management Unit} +Hardware unit which translates virtual memory to physical one. +\cite{mmuWiki} +\paragraph{Page fault} +Exception raised when process wants to access page without preparations. +Preparation consists of adding the mapping to process's virtual address space +and/or loading page from a disk. MMU detects the fault but it is up to kernel +and/or loading page from a disk. + +\section{Laboratory} +\subsection{Instruction} +\begin{enumerate} + \item Map 8 pages of physical memory to the first 8 pages of virtual + memory + \item Go through each virtual page and read from one virtual memory + address +\end{enumerate} +\subsection{Configuration} +In memory.conf file I changed the memset and mapped first 8 pages of virtual +memory to first 8 pages of physical memory (we could use any physical memory +pages we wanted so I settled for this for sake of simplicity) +\begin{figure}[H] +\caption{memory.conf file} +\begin{lstlisting} +// memset virt page # physical page # R (read from) +// M (modified) inMemTime (ns) lastTouchTime (ns) +memset 0 0 0 0 0 0 +memset 1 1 0 0 0 0 +memset 2 2 0 0 0 0 +memset 3 3 0 0 0 0 +memset 4 4 0 0 0 0 +memset 5 5 0 0 0 0 +memset 6 6 0 0 0 0 +memset 7 7 0 0 0 0 + +// enable_logging 'true' or 'false' +// When true specify a log_file or leave blank for stdout +enable_logging true + +// log_file +// Where is the name of the file you want output +// to be print to. +log_file tracefile + +// page size, defaults to 2^14 and cannot be greater than 2^26 +// pagesize or <'power' num (base 2)> +pagesize 16384 + +// addressradix sets the radix +// in which numerical values are displayed +// 2 is the default value +// addressradix +addressradix 16 + +// numpages sets the number of pages (physical and virtual) +// 64 is the default value +// numpages must be at least 2 and no more than 64 +// numpages +numpages 64 +\end{lstlisting} +\end{figure} +We want to access each virtual page and read from one virtualk memory address of +each page. \\ +To achieve this we need to read from pages in increments of pagesize. Which is +set by default to 16384 and I do not change that. \\ +We have 64 pages so the last address we will read from will be address +\[ 64 \cdot 16384 = 1048576 \] +And since we start from address number 0 we need to substract +\[ 1048576 - 16384 = 1032192 \] +And so the last address we will read from is \textbf{1032192} \\ +We modify the commands file accordingly +\begin{figure} + \caption{commands file} +\begin{lstlisting} +READ 0 +READ 16384 +READ 32768 +READ 49152 +READ 65536 +READ 81920 +READ 98304 +READ 114688 +READ 131072 +READ 147456 +READ 163840 +READ 180224 +READ 196608 +READ 212992 +READ 229376 +READ 245760 +READ 262144 +READ 278528 +READ 294912 +READ 311296 +READ 327680 +READ 344064 +READ 360448 +READ 376832 +READ 393216 +READ 409600 +[...] +READ 704512 +READ 720896 +READ 737280 +READ 753664 +READ 770048 +READ 786432 +READ 802816 +READ 819200 +READ 835584 +READ 851968 +READ 868352 +READ 884736 +READ 901120 +READ 917504 +READ 933888 +READ 950272 +READ 966656 +READ 983040 +READ 999424 +READ 1015808 +READ 1032192 +\end{lstlisting} +\end{figure} +\subsection{Procedure} +After modifying config files I run the simulation using make compile and make +run in work directory and go step by step through the program. +\begin{figure}[H] + \caption{tracefile} +\begin{lstlisting} +READ 0 ... okay +READ 4000 ... okay +READ 8000 ... okay +READ c000 ... okay +READ 10000 ... okay +READ 14000 ... okay +READ 18000 ... okay +READ 1c000 ... okay +READ 20000 ... okay +READ 24000 ... okay +READ 28000 ... okay +READ 2c000 ... okay +READ 30000 ... okay +READ 34000 ... okay +READ 38000 ... okay +READ 3c000 ... okay +READ 40000 ... okay +READ 44000 ... okay +[...] +READ 54000 ... okay +READ 58000 ... okay +READ 5c000 ... okay +READ 60000 ... okay +READ 64000 ... okay +READ 68000 ... okay +READ 6c000 ... okay +READ 70000 ... okay +READ 74000 ... okay +READ 78000 ... okay +READ 7c000 ... okay +READ 80000 ... page fault +READ 84000 ... page fault +READ 88000 ... page fault +READ 8c000 ... page fault +READ 90000 ... page fault +READ 94000 ... page fault +READ 98000 ... page fault +READ 9c000 ... page fault +READ a0000 ... page fault +READ a4000 ... page fault +[...] +READ e4000 ... page fault +READ e8000 ... page fault +READ ec000 ... page fault +READ f0000 ... page fault +READ f4000 ... page fault +READ f8000 ... page fault +READ fc000 ... page fault% +\end{lstlisting} +\end{figure} +As we can see mapping first 8 pages was successful. Their mapping was specified +in memory.conf file and they were mapped as expected. \\ +Then pages up to 32 were also mapped correctly \\ +Then we get to page number 32 and we get page fault. We do not have mapping +between this page and physical page so we use algorithm of first in first out +and map page 32 to page 0, which was mapped to virtual page 0 in the first step. +\\ +This process gets repeated up to the last page. We take the virtual page which +was mapped to physical one as a first one and we map it to virtual page which +got page fault error. \\ +This can be observed on following screens: +\begin{figure}[H] + \caption{Very start of application} + \includegraphics[width=\linewidth]{mm1} +\end{figure} +\begin{figure}[H] + \caption{First step correctly mapped} + \includegraphics[width=\linewidth]{mm2} +\end{figure} +\begin{figure}[H] + \caption{16th page correctly mapped} + \includegraphics[width=\linewidth]{mm3} +\end{figure} +\begin{figure}[H] + \caption{First page fault on 32th step} + \includegraphics[width=\linewidth]{mm4} +\end{figure} +\begin{figure}[H] + \caption{First in First out, we map page 0 physical to the page we just + got page fault on} + \includegraphics[width=\linewidth]{mm5} +\end{figure} +\begin{figure}[H] + \caption{Again first in, first out} + \includegraphics[width=\linewidth]{mm6} +\end{figure} +\begin{figure}[H] + \caption{Final view of application} + \includegraphics[width=\linewidth]{mm7} +\end{figure} +\section{Finishing comments} +Both by looking at the source code and simulation results we can say that the +simulation uses First in First out algorithm. First 8 pages were mapped +correctly because of the memory.conf file, pages up to 32 were mapped correctly +because they are mapped by default by the application. \\ +Then we got page faults which were resolved by first in first out algorithm. +\begin{thebibliography}{9} + \bibitem{mmuWiki} \href{https://en.wikipedia.org/wiki/Memory_management_unit}{Wiki Memory Management Unit} + \bibitem{faultWiki} \href{https://en.wikipedia.org/wiki/Page_fault}{[Wiki Page Fault]} +\bibitem{Page Replacement Algorithms} +\href{https://www.geeksforgeeks.org/page-replacement-algorithms-in-operating-systems/}{[Geeks +for Geeks page replacament algorithms]} +\bibitem{pageWiki} +\href{https://en.wikipedia.org/wiki/Page_replacement_algorithm}{Wikipedia Page +replacament algorithm} +\end{thebibliography} +\end{document} diff --git a/EOPSY/lab4/task4/README b/EOPSY/lab4/task4/README new file mode 100644 index 00000000..818dd2da --- /dev/null +++ b/EOPSY/lab4/task4/README @@ -0,0 +1 @@ +Change directory to ./ftp and submit "make setup". diff --git a/EOPSY/lab4/task4/ftp/Makefile b/EOPSY/lab4/task4/ftp/Makefile new file mode 100644 index 00000000..59bad64c --- /dev/null +++ b/EOPSY/lab4/task4/ftp/Makefile @@ -0,0 +1,24 @@ + +default: info + + +help: + less README.tjk + +compile: + javac -nowarn *.java + +run: + java MemoryManagement commands memory.conf + +setup: + ./setUp + +info: + @echo "" + @echo "Use 'make' with one argument:" + @echo "" + @echo " make help" + @echo " make compile" + @echo " make run" + @echo "" diff --git a/EOPSY/lab4/task4/ftp/README.tjk b/EOPSY/lab4/task4/ftp/README.tjk new file mode 100644 index 00000000..e77b9a16 --- /dev/null +++ b/EOPSY/lab4/task4/ftp/README.tjk @@ -0,0 +1,45 @@ + + + WORKPLACE ORGANIZATION: +mkdir ../work +cd ../work +cp ../ftp/* . +gzip -d memory.tgz +tar -xvf memory.tar +rm memory.tar + + + READING: +more/less/vi/vim README.tjk +netscape/lynx/links install_unix.html +netscape/lynx/links user_guide.html + + + COMPILE: +javac -nowarn *.java + + + RUN: +java MemoryManagement commands memory.conf + + + FILES: +input file name: commands +initial content of the VM map: memory.conf +output file name: tracefile + + +--[ YOUR TASK ]------------------------------------------------------- + +Create a command file that maps any 8 pages of physical memory to the +first 8 pages of virtual memory, and then reads from one virtual memory +address on each of the 64 virtual pages. Step through the simulator one +operation at a time and see if you can predict which virtual memory +addresses cause page faults. What page replacement algorithm is being +used? + +Locate in the sources and describe to the instructor the page +replacement algorithm. + +---------------------------------------------------------------------- + diff --git a/EOPSY/lab4/task4/ftp/memory.tgz b/EOPSY/lab4/task4/ftp/memory.tgz new file mode 100644 index 00000000..98483c9d Binary files /dev/null and b/EOPSY/lab4/task4/ftp/memory.tgz differ diff --git a/EOPSY/lab4/task4/ftp/setUp b/EOPSY/lab4/task4/ftp/setUp new file mode 100755 index 00000000..8a9877bb --- /dev/null +++ b/EOPSY/lab4/task4/ftp/setUp @@ -0,0 +1,9 @@ +echo "Creating ../work subdirectory" +mkdir ../work 2>/dev/null +cd ../work +cp ../ftp/* . +gzip -d memory.tgz +tar -xvf memory.tar +rm memory.tar +echo "" +echo "Now, go to the directory ../work and submit 'make'" diff --git a/EOPSY/lab4/task4/work/Common.class b/EOPSY/lab4/task4/work/Common.class new file mode 100644 index 00000000..bde546be Binary files /dev/null and b/EOPSY/lab4/task4/work/Common.class differ diff --git a/EOPSY/lab4/task4/work/Common.java b/EOPSY/lab4/task4/work/Common.java new file mode 100644 index 00000000..ef146424 --- /dev/null +++ b/EOPSY/lab4/task4/work/Common.java @@ -0,0 +1,58 @@ +public class Common { + + static public long s2l ( String s ) + { + long i = 0; + + try { + i = Long.parseLong(s.trim()); + } catch (NumberFormatException nfe) { + System.out.println("NumberFormatException: " + nfe.getMessage()); + } + + return i; + } + + static public int s2i ( String s ) + { + int i = 0; + + try { + i = Integer.parseInt(s.trim()); + } catch (NumberFormatException nfe) { + System.out.println("NumberFormatException: " + nfe.getMessage()); + } + + return i; + } + + static public byte s2b ( String s ) + { + int i = 0; + byte b = 0; + + try { + i = Integer.parseInt(s.trim()); + } catch (NumberFormatException nfe) { + System.out.println("NumberFormatException: " + nfe.getMessage()); + } + b = (byte) i; + return b; + } + + public static long randomLong( long MAX ) + { + long i = -1; + + java.util.Random generator = new + java.util.Random(System.currentTimeMillis()); + while (i > MAX || i < 0) + { + int intOne = generator.nextInt(); + int intTwo = generator.nextInt(); + i = (long) intOne + intTwo; + } + return i; + } +} + diff --git a/EOPSY/lab4/task4/work/ControlPanel.class b/EOPSY/lab4/task4/work/ControlPanel.class new file mode 100644 index 00000000..c99a93a2 Binary files /dev/null and b/EOPSY/lab4/task4/work/ControlPanel.class differ diff --git a/EOPSY/lab4/task4/work/ControlPanel.java b/EOPSY/lab4/task4/work/ControlPanel.java new file mode 100644 index 00000000..a0c1832c --- /dev/null +++ b/EOPSY/lab4/task4/work/ControlPanel.java @@ -0,0 +1,1852 @@ +import java.applet.*; +import java.awt.*; + +public class ControlPanel extends Frame +{ + Kernel kernel ; + Button runButton = new Button("run"); + Button stepButton = new Button("step"); + Button resetButton = new Button("reset"); + Button exitButton = new Button("exit"); + Button b0 = new Button("page " + (0)); + Button b1 = new Button("page " + (1)); + Button b2 = new Button("page " + (2)); + Button b3 = new Button("page " + (3)); + Button b4 = new Button("page " + (4)); + Button b5 = new Button("page " + (5)); + Button b6 = new Button("page " + (6)); + Button b7 = new Button("page " + (7)); + Button b8 = new Button("page " + (8)); + Button b9 = new Button("page " + (9)); + Button b10 = new Button("page " + (10)); + Button b11 = new Button("page " + (11)); + Button b12 = new Button("page " + (12)); + Button b13 = new Button("page " + (13)); + Button b14 = new Button("page " + (14)); + Button b15 = new Button("page " + (15)); + Button b16 = new Button("page " + (16)); + Button b17 = new Button("page " + (17)); + Button b18 = new Button("page " + (18)); + Button b19 = new Button("page " + (19)); + Button b20 = new Button("page " + (20)); + Button b21 = new Button("page " + (21)); + Button b22 = new Button("page " + (22)); + Button b23 = new Button("page " + (23)); + Button b24 = new Button("page " + (24)); + Button b25 = new Button("page " + (25)); + Button b26 = new Button("page " + (26)); + Button b27 = new Button("page " + (27)); + Button b28 = new Button("page " + (28)); + Button b29 = new Button("page " + (29)); + Button b30 = new Button("page " + (30)); + Button b31 = new Button("page " + (31)); + Button b32 = new Button("page " + (32)); + Button b33 = new Button("page " + (33)); + Button b34 = new Button("page " + (34)); + Button b35 = new Button("page " + (35)); + Button b36 = new Button("page " + (36)); + Button b37 = new Button("page " + (37)); + Button b38 = new Button("page " + (38)); + Button b39 = new Button("page " + (39)); + Button b40 = new Button("page " + (40)); + Button b41 = new Button("page " + (41)); + Button b42 = new Button("page " + (42)); + Button b43 = new Button("page " + (43)); + Button b44 = new Button("page " + (44)); + Button b45 = new Button("page " + (45)); + Button b46 = new Button("page " + (46)); + Button b47 = new Button("page " + (47)); + Button b48 = new Button("page " + (48)); + Button b49 = new Button("page " + (49)); + Button b50 = new Button("page " + (50)); + Button b51 = new Button("page " + (51)); + Button b52 = new Button("page " + (52)); + Button b53 = new Button("page " + (53)); + Button b54 = new Button("page " + (54)); + Button b55 = new Button("page " + (55)); + Button b56 = new Button("page " + (56)); + Button b57 = new Button("page " + (57)); + Button b58 = new Button("page " + (58)); + Button b59 = new Button("page " + (59)); + Button b60 = new Button("page " + (60)); + Button b61 = new Button("page " + (61)); + Button b62 = new Button("page " + (62)); + Button b63 = new Button("page " + (63)); + Label statusValueLabel = new Label("STOP" , Label.LEFT) ; + Label timeValueLabel = new Label("0" , Label.LEFT) ; + Label instructionValueLabel = new Label("NONE" , Label.LEFT) ; + Label addressValueLabel = new Label("NULL" , Label.LEFT) ; + Label pageFaultValueLabel = new Label("NO" , Label.LEFT) ; + Label virtualPageValueLabel = new Label("x" , Label.LEFT) ; + Label physicalPageValueLabel = new Label("0" , Label.LEFT) ; + Label RValueLabel = new Label("0" , Label.LEFT) ; + Label MValueLabel = new Label("0" , Label.LEFT) ; + Label inMemTimeValueLabel = new Label("0" , Label.LEFT) ; + Label lastTouchTimeValueLabel = new Label("0" , Label.LEFT) ; + Label lowValueLabel = new Label("0" , Label.LEFT) ; + Label highValueLabel = new Label("0" , Label.LEFT) ; + Label l0 = new Label(null, Label.CENTER); + Label l1 = new Label(null, Label.CENTER); + Label l2 = new Label(null, Label.CENTER); + Label l3 = new Label(null, Label.CENTER); + Label l4 = new Label(null, Label.CENTER); + Label l5 = new Label(null, Label.CENTER); + Label l6 = new Label(null, Label.CENTER); + Label l7 = new Label(null, Label.CENTER); + Label l8 = new Label(null, Label.CENTER); + Label l9 = new Label(null, Label.CENTER); + Label l10 = new Label(null, Label.CENTER); + Label l11 = new Label(null, Label.CENTER); + Label l12 = new Label(null, Label.CENTER); + Label l13 = new Label(null, Label.CENTER); + Label l14 = new Label(null, Label.CENTER); + Label l15 = new Label(null, Label.CENTER); + Label l16 = new Label(null, Label.CENTER); + Label l17 = new Label(null, Label.CENTER); + Label l18 = new Label(null, Label.CENTER); + Label l19 = new Label(null, Label.CENTER); + Label l20 = new Label(null, Label.CENTER); + Label l21 = new Label(null, Label.CENTER); + Label l22 = new Label(null, Label.CENTER); + Label l23 = new Label(null, Label.CENTER); + Label l24 = new Label(null, Label.CENTER); + Label l25 = new Label(null, Label.CENTER); + Label l26 = new Label(null, Label.CENTER); + Label l27 = new Label(null, Label.CENTER); + Label l28 = new Label(null, Label.CENTER); + Label l29 = new Label(null, Label.CENTER); + Label l30 = new Label(null, Label.CENTER); + Label l31 = new Label(null, Label.CENTER); + Label l32 = new Label(null, Label.CENTER); + Label l33 = new Label(null, Label.CENTER); + Label l34 = new Label(null, Label.CENTER); + Label l35 = new Label(null, Label.CENTER); + Label l36 = new Label(null, Label.CENTER); + Label l37 = new Label(null, Label.CENTER); + Label l38 = new Label(null, Label.CENTER); + Label l39 = new Label(null, Label.CENTER); + Label l40 = new Label(null, Label.CENTER); + Label l41 = new Label(null, Label.CENTER); + Label l42 = new Label(null, Label.CENTER); + Label l43 = new Label(null, Label.CENTER); + Label l44 = new Label(null, Label.CENTER); + Label l45 = new Label(null, Label.CENTER); + Label l46 = new Label(null, Label.CENTER); + Label l47 = new Label(null, Label.CENTER); + Label l48 = new Label(null, Label.CENTER); + Label l49 = new Label(null, Label.CENTER); + Label l50 = new Label(null, Label.CENTER); + Label l51 = new Label(null, Label.CENTER); + Label l52 = new Label(null, Label.CENTER); + Label l53 = new Label(null, Label.CENTER); + Label l54 = new Label(null, Label.CENTER); + Label l55 = new Label(null, Label.CENTER); + Label l56 = new Label(null, Label.CENTER); + Label l57 = new Label(null, Label.CENTER); + Label l58 = new Label(null, Label.CENTER); + Label l59 = new Label(null, Label.CENTER); + Label l60 = new Label(null, Label.CENTER); + Label l61 = new Label(null, Label.CENTER); + Label l62 = new Label(null, Label.CENTER); + Label l63 = new Label(null, Label.CENTER); + + public ControlPanel() + { + super(); + } + + public ControlPanel( String title ) + { + super(title); + } + + public void init( Kernel useKernel , String commands , String config ) + { + kernel = useKernel ; + kernel.setControlPanel( this ); + setLayout( null ); + setBackground( Color.white ); + setForeground( Color.black ); + resize( 635 , 545 ); + setFont( new Font( "Courier", 0, 12 ) ); + + runButton.setForeground( Color.blue ); + runButton.setBackground( Color.lightGray ); + runButton.reshape( 0,25,70,15 ); + add( runButton ); + + stepButton.setForeground( Color.blue ); + stepButton.setBackground( Color.lightGray ); + stepButton.reshape( 70,25,70,15 ); + add( stepButton ); + + resetButton.setForeground( Color.blue ); + resetButton.setBackground( Color.lightGray ); + resetButton.reshape( 140,25,70,15 ); + add( resetButton ); + + exitButton.setForeground( Color.blue ); + exitButton.setBackground( Color.lightGray ); + exitButton.reshape( 210,25,70,15 ); + add( exitButton ); + + b0.reshape(0, (0+2)*15+25, 70, 15); + b0.setForeground( Color.magenta ); + b0.setBackground( Color.lightGray ); + add ( b0 ); + + b1.reshape(0, (1+2)*15+25, 70, 15); + b1.setForeground( Color.magenta ); + b1.setBackground( Color.lightGray ); + add ( b1 ); + + b2.reshape(0, (2+2)*15+25, 70, 15); + b2.setForeground( Color.magenta ); + b2.setBackground( Color.lightGray ); + add ( b2 ); + + b3.reshape(0, (3+2)*15+25, 70, 15); + b3.setForeground( Color.magenta ); + b3.setBackground( Color.lightGray ); + add ( b3 ); + + b4.reshape(0, (4+2)*15+25, 70, 15); + b4.setForeground( Color.magenta ); + b4.setBackground( Color.lightGray ); + add ( b4 ); + + b5.reshape(0, (5+2)*15+25, 70, 15); + b5.setForeground( Color.magenta ); + b5.setBackground( Color.lightGray ); + add ( b5 ); + + b6.reshape(0, (6+2)*15+25, 70, 15); + b6.setForeground( Color.magenta ); + b6.setBackground( Color.lightGray ); + add ( b6 ); + + b7.reshape(0, (7+2)*15+25, 70, 15); + b7.setForeground( Color.magenta ); + b7.setBackground( Color.lightGray ); + add ( b7 ); + + b8.reshape(0, (8+2)*15+25, 70, 15); + b8.setForeground( Color.magenta ); + b8.setBackground( Color.lightGray ); + add ( b8 ); + + b9.reshape(0, (9+2)*15+25, 70, 15); + b9.setForeground( Color.magenta ); + b9.setBackground( Color.lightGray ); + add ( b9 ); + + b10.reshape(0, (10+2)*15+25, 70, 15); + b10.setForeground( Color.magenta ); + b10.setBackground( Color.lightGray ); + add ( b10 ); + + b11.reshape(0, (11+2)*15+25, 70, 15); + b11.setForeground( Color.magenta ); + b11.setBackground( Color.lightGray ); + add ( b11 ); + + b12.reshape(0, (12+2)*15+25, 70, 15); + b12.setForeground( Color.magenta ); + b12.setBackground( Color.lightGray ); + add ( b12 ); + + b13.reshape(0, (13+2)*15+25, 70, 15); + b13.setForeground( Color.magenta ); + b13.setBackground( Color.lightGray ); + add ( b13 ); + + b14.reshape(0, (14+2)*15+25, 70, 15); + b14.setForeground( Color.magenta ); + b14.setBackground( Color.lightGray ); + add ( b14 ); + + b15.reshape(0, (15+2)*15+25, 70, 15); + b15.setForeground( Color.magenta ); + b15.setBackground( Color.lightGray ); + add ( b15 ); + + b16.reshape(0, (16+2)*15+25, 70, 15); + b16.setForeground( Color.magenta ); + b16.setBackground( Color.lightGray ); + add ( b16 ); + + b17.reshape(0, (17+2)*15+25, 70, 15); + b17.setForeground( Color.magenta ); + b17.setBackground( Color.lightGray ); + add ( b17 ); + + b18.reshape(0, (18+2)*15+25, 70, 15); + b18.setForeground( Color.magenta ); + b18.setBackground( Color.lightGray ); + add ( b18 ); + + b19.reshape(0, (19+2)*15+25, 70, 15); + b19.setForeground( Color.magenta ); + b19.setBackground( Color.lightGray ); + add ( b19 ); + + b20.reshape(0, (20+2)*15+25, 70, 15); + b20.setForeground( Color.magenta ); + b20.setBackground( Color.lightGray ); + add ( b20 ); + + b21.reshape(0, (21+2)*15+25, 70, 15); + b21.setForeground( Color.magenta ); + b21.setBackground( Color.lightGray ); + add ( b21 ); + + b22.reshape(0, (22+2)*15+25, 70, 15); + b22.setForeground( Color.magenta ); + b22.setBackground( Color.lightGray ); + add ( b22 ); + + b23.reshape(0, (23+2)*15+25, 70, 15); + b23.setForeground( Color.magenta ); + b23.setBackground( Color.lightGray ); + add ( b23 ); + + b24.reshape(0, (24+2)*15+25, 70, 15); + b24.setForeground( Color.magenta ); + b24.setBackground( Color.lightGray ); + add ( b24 ); + + b25.reshape(0, (25+2)*15+25, 70, 15); + b25.setForeground( Color.magenta ); + b25.setBackground( Color.lightGray ); + add ( b25 ); + + b26.reshape(0, (26+2)*15+25, 70, 15); + b26.setForeground( Color.magenta ); + b26.setBackground( Color.lightGray ); + add ( b26 ); + + b27.reshape(0, (27+2)*15+25, 70, 15); + b27.setForeground( Color.magenta ); + b27.setBackground( Color.lightGray ); + add ( b27 ); + + b28.reshape(0, (28+2)*15+25, 70, 15); + b28.setForeground( Color.magenta ); + b28.setBackground( Color.lightGray ); + add ( b28 ); + + b29.reshape(0, (29+2)*15+25, 70, 15); + b29.setForeground( Color.magenta ); + b29.setBackground( Color.lightGray ); + add ( b29 ); + + b30.reshape(0, (30+2)*15+25, 70, 15); + b30.setForeground( Color.magenta ); + b30.setBackground( Color.lightGray ); + add ( b30 ); + + b31.reshape(0, (31+2)*15+25, 70, 15); + b31.setForeground( Color.magenta ); + b31.setBackground( Color.lightGray ); + add ( b31 ); + + b32.reshape(140, (0+2)*15+25, 70, 15); + b32.setForeground( Color.magenta ); + b32.setBackground( Color.lightGray ); + add ( b32 ); + + b33.reshape(140, (1+2)*15+25, 70, 15); + b33.setForeground( Color.magenta ); + b33.setBackground( Color.lightGray ); + add ( b33 ); + + b34.reshape(140, (2+2)*15+25, 70, 15); + b34.setForeground( Color.magenta ); + b34.setBackground( Color.lightGray ); + add ( b34 ); + + b35.reshape(140, (3+2)*15+25, 70, 15); + b35.setForeground( Color.magenta ); + b35.setBackground( Color.lightGray ); + add ( b35 ); + + b36.reshape(140, (4+2)*15+25, 70, 15); + b36.setForeground( Color.magenta ); + b36.setBackground( Color.lightGray ); + add ( b36 ); + + b37.reshape(140, (5+2)*15+25, 70, 15); + b37.setForeground( Color.magenta ); + b37.setBackground( Color.lightGray ); + add ( b37 ); + + b38.reshape(140, (6+2)*15+25, 70, 15); + b38.setForeground( Color.magenta ); + b38.setBackground( Color.lightGray ); + add ( b38 ); + + b39.reshape(140, (7+2)*15+25, 70, 15); + b39.setForeground( Color.magenta ); + b39.setBackground( Color.lightGray ); + add ( b39 ); + + b40.reshape(140, (8+2)*15+25, 70, 15); + b40.setForeground( Color.magenta ); + b40.setBackground( Color.lightGray ); + add ( b40 ); + + b41.reshape(140, (9+2)*15+25, 70, 15); + b41.setForeground( Color.magenta ); + b41.setBackground( Color.lightGray ); + add ( b41 ); + + b42.reshape(140, (10+2)*15+25, 70, 15); + b42.setForeground( Color.magenta ); + b42.setBackground( Color.lightGray ); + add ( b42 ); + + b43.reshape(140, (11+2)*15+25, 70, 15); + b43.setForeground( Color.magenta ); + b43.setBackground( Color.lightGray ); + add ( b43 ); + + b44.reshape(140, (12+2)*15+25, 70, 15); + b44.setForeground( Color.magenta ); + b44.setBackground( Color.lightGray ); + add ( b44 ); + + b45.reshape(140, (13+2)*15+25, 70, 15); + b45.setForeground( Color.magenta ); + b45.setBackground( Color.lightGray ); + add ( b45 ); + + b46.reshape(140, (14+2)*15+25, 70, 15); + b46.setForeground( Color.magenta ); + b46.setBackground( Color.lightGray ); + add ( b46 ); + + b47.reshape(140, (15+2)*15+25, 70, 15); + b47.setForeground( Color.magenta ); + b47.setBackground( Color.lightGray ); + add ( b47 ); + + b48.reshape(140, (16+2)*15+25, 70, 15); + b48.setForeground( Color.magenta ); + b48.setBackground( Color.lightGray ); + add ( b48 ); + + b49.reshape(140, (17+2)*15+25, 70, 15); + b49.setForeground( Color.magenta ); + b49.setBackground( Color.lightGray ); + add ( b49 ); + + b50.reshape(140, (18+2)*15+25, 70, 15); + b50.setForeground( Color.magenta ); + b50.setBackground( Color.lightGray ); + add ( b50 ); + + b51.reshape(140, (19+2)*15+25, 70, 15); + b51.setForeground( Color.magenta ); + b51.setBackground( Color.lightGray ); + add ( b51 ); + + b52.reshape(140, (20+2)*15+25, 70, 15); + b52.setForeground( Color.magenta ); + b52.setBackground( Color.lightGray ); + add ( b52 ); + + b53.reshape(140, (21+2)*15+25, 70, 15); + b53.setForeground( Color.magenta ); + b53.setBackground( Color.lightGray ); + add ( b53 ); + + b54.reshape(140, (22+2)*15+25, 70, 15); + b54.setForeground( Color.magenta ); + b54.setBackground( Color.lightGray ); + add ( b54 ); + + b55.reshape(140, (23+2)*15+25, 70, 15); + b55.setForeground( Color.magenta ); + b55.setBackground( Color.lightGray ); + add ( b55 ); + + b56.reshape(140, (24+2)*15+25, 70, 15); + b56.setForeground( Color.magenta ); + b56.setBackground( Color.lightGray ); + add ( b56 ); + + b57.reshape(140, (25+2)*15+25, 70, 15); + b57.setForeground( Color.magenta ); + b57.setBackground( Color.lightGray ); + add ( b57 ); + + b58.reshape(140, (26+2)*15+25, 70, 15); + b58.setForeground( Color.magenta ); + b58.setBackground( Color.lightGray ); + add ( b58 ); + + b59.reshape(140, (27+2)*15+25, 70, 15); + b59.setForeground( Color.magenta ); + b59.setBackground( Color.lightGray ); + add ( b59 ); + + b60.reshape(140, (28+2)*15+25, 70, 15); + b60.setForeground( Color.magenta ); + b60.setBackground( Color.lightGray ); + add ( b60 ); + + b61.reshape(140, (29+2)*15+25, 70, 15); + b61.setForeground( Color.magenta ); + b61.setBackground( Color.lightGray ); + add ( b61 ); + + b62.reshape(140, (30+2)*15+25, 70, 15); + b62.setForeground( Color.magenta ); + b62.setBackground( Color.lightGray ); + add ( b62 ); + + b63.reshape(140, (31+2)*15+25, 70, 15); + b63.setForeground( Color.magenta ); + b63.setBackground( Color.lightGray ); + add ( b63 ); + + statusValueLabel.reshape( 345,0+25,100,15 ); + add( statusValueLabel ); + + timeValueLabel.reshape( 345,15+25,100,15 ); + add( timeValueLabel ); + + instructionValueLabel.reshape( 385,45+25,100,15 ); + add( instructionValueLabel ); + + addressValueLabel.reshape(385,60+25,230,15); + add( addressValueLabel ); + + pageFaultValueLabel.reshape( 385,90+25,100,15 ); + add( pageFaultValueLabel ); + + virtualPageValueLabel.reshape( 395,120+25,200,15 ); + add( virtualPageValueLabel ); + + physicalPageValueLabel.reshape( 395,135+25,200,15 ); + add( physicalPageValueLabel ); + + RValueLabel.reshape( 395,150+25,200,15 ); + add( RValueLabel ); + + MValueLabel.reshape( 395,165+25,200,15 ); + add( MValueLabel ); + + inMemTimeValueLabel.reshape(395,180+25,200,15 ); + add( inMemTimeValueLabel ); + + lastTouchTimeValueLabel.reshape( 395,195+25,200,15 ); + add( lastTouchTimeValueLabel ); + + lowValueLabel.reshape( 395,210+25,230,15 ); + add( lowValueLabel ); + + highValueLabel.reshape( 395,225+25,230,15 ); + add( highValueLabel ); + + Label virtualOneLabel = new Label( "virtual" , Label.CENTER) ; + virtualOneLabel.reshape(0,15+25,70,15); + add(virtualOneLabel); + + Label virtualTwoLabel = new Label( "virtual" , Label.CENTER) ; + virtualTwoLabel.reshape(140,15+25,70,15); + add(virtualTwoLabel); + + Label physicalOneLabel = new Label( "physical" , Label.CENTER) ; + physicalOneLabel.reshape(70,15+25,70,15); + add(physicalOneLabel); + + Label physicalTwoLabel = new Label( "physical" , Label.CENTER) ; + physicalTwoLabel.reshape(210,15+25,70,15); + add(physicalTwoLabel); + + Label statusLabel = new Label("status: " , Label.LEFT) ; + statusLabel.reshape(285,0+25,65,15); + add(statusLabel); + + Label timeLabel = new Label("time: " , Label.LEFT) ; + timeLabel.reshape(285,15+25,50,15); + add(timeLabel); + + Label instructionLabel = new Label("instruction: " , Label.LEFT) ; + instructionLabel.reshape(285,45+25,100,15); + add(instructionLabel); + + Label addressLabel = new Label("address: " , Label.LEFT) ; + addressLabel.reshape(285,60+25,85,15); + add(addressLabel); + + Label pageFaultLabel = new Label("page fault: " , Label.LEFT) ; + pageFaultLabel.reshape(285,90+25,100,15); + add(pageFaultLabel); + + Label virtualPageLabel = new Label("virtual page: " , Label.LEFT) ; + virtualPageLabel.reshape(285,120+25,110,15); + add(virtualPageLabel); + + Label physicalPageLabel = new Label("physical page: " , Label.LEFT) ; + physicalPageLabel.reshape(285,135+25,110,15); + add(physicalPageLabel); + + Label RLabel = new Label("R: ", Label.LEFT) ; + RLabel.reshape(285,150+25,110,15); + add(RLabel); + + Label MLabel = new Label("M: " , Label.LEFT) ; + MLabel.reshape(285,165+25,110,15); + add(MLabel); + + Label inMemTimeLabel = new Label("inMemTime: " , Label.LEFT) ; + inMemTimeLabel.reshape(285,180+25,110,15); + add(inMemTimeLabel); + + Label lastTouchTimeLabel = new Label("lastTouchTime: " , Label.LEFT) ; + lastTouchTimeLabel.reshape(285,195+25,110,15); + add(lastTouchTimeLabel); + + Label lowLabel = new Label("low: " , Label.LEFT) ; + lowLabel.reshape(285,210+25,110,15); + add(lowLabel); + + Label highLabel = new Label("high: " , Label.LEFT) ; + highLabel.reshape(285,225+25,110,15); + add(highLabel); + + l0.reshape( 70, (2)*15+25, 60, 15 ); + l0.setForeground( Color.red ); + l0.setFont( new Font( "Courier", 0, 10 ) ); + add( l0 ); + + l1.reshape( 70, (3)*15+25, 60, 15 ); + l1.setForeground( Color.red ); + l1.setFont( new Font( "Courier", 0, 10 ) ); + add( l1 ); + + l2.reshape( 70, (4)*15+25, 60, 15 ); + l2.setForeground( Color.red ); + l2.setFont( new Font( "Courier", 0, 10 ) ); + add( l2 ); + + l3.reshape( 70, (5)*15+25, 60, 15 ); + l3.setForeground( Color.red ); + l3.setFont( new Font( "Courier", 0, 10 ) ); + add( l3 ); + + l4.reshape( 70, (6)*15+25, 60, 15 ); + l4.setForeground( Color.red ); + l4.setFont( new Font( "Courier", 0, 10 ) ); + add( l4 ); + + l5.reshape( 70, (7)*15+25, 60, 15 ); + l5.setForeground( Color.red ); + l5.setFont( new Font( "Courier", 0, 10 ) ); + add( l5 ); + + l6.reshape( 70, (8)*15+25, 60, 15 ); + l6.setForeground( Color.red ); + l6.setFont( new Font( "Courier", 0, 10 ) ); + add( l6 ); + + l7.reshape( 70, (9)*15+25, 60, 15 ); + l7.setForeground( Color.red ); + l7.setFont( new Font( "Courier", 0, 10 ) ); + add( l7 ); + + l8.reshape( 70, (10)*15+25, 60, 15 ); + l8.setForeground( Color.red ); + l8.setFont( new Font( "Courier", 0, 10 ) ); + add( l8 ); + + l9.reshape( 70, (11)*15+25, 60, 15 ); + l9.setForeground( Color.red ); + l9.setFont( new Font( "Courier", 0, 10 ) ); + add( l9 ); + + l10.reshape( 70, (12)*15+25, 60, 15 ); + l10.setForeground( Color.red ); + l10.setFont( new Font( "Courier", 0, 10 ) ); + add( l10 ); + + l11.reshape( 70, (13)*15+25, 60, 15 ); + l11.setForeground( Color.red ); + l11.setFont( new Font( "Courier", 0, 10 ) ); + add( l11 ); + + l12.reshape( 70, (14)*15+25, 60, 15 ); + l12.setForeground( Color.red ); + l12.setFont( new Font( "Courier", 0, 10 ) ); + add( l12 ); + + l13.reshape( 70, (15)*15+25, 60, 15 ); + l13.setForeground( Color.red ); + l13.setFont( new Font( "Courier", 0, 10 ) ); + add( l13 ); + + l14.reshape( 70, (16)*15+25, 60, 15 ); + l14.setForeground( Color.red ); + l14.setFont( new Font( "Courier", 0, 10 ) ); + add( l14 ); + + l15.reshape( 70, (17)*15+25, 60, 15 ); + l15.setForeground( Color.red ); + l15.setFont( new Font( "Courier", 0, 10 ) ); + add( l15 ); + + l16.reshape( 70, (18)*15+25, 60, 15 ); + l16.setForeground( Color.red ); + l16.setFont( new Font( "Courier", 0, 10 ) ); + add( l16 ); + + l17.reshape( 70, (19)*15+25, 60, 15 ); + l17.setForeground( Color.red ); + l17.setFont( new Font( "Courier", 0, 10 ) ); + add( l17 ); + + l18.reshape( 70, (20)*15+25, 60, 15 ); + l18.setForeground( Color.red ); + l18.setFont( new Font( "Courier", 0, 10 ) ); + add( l18 ); + + l19.reshape( 70, (21)*15+25, 60, 15 ); + l19.setForeground( Color.red ); + l19.setFont( new Font( "Courier", 0, 10 ) ); + add( l19 ); + + l20.reshape( 70, (22)*15+25, 60, 15 ); + l20.setForeground( Color.red ); + l20.setFont( new Font( "Courier", 0, 10 ) ); + add( l20 ); + + l21.reshape( 70, (23)*15+25, 60, 15 ); + l21.setForeground( Color.red ); + l21.setFont( new Font( "Courier", 0, 10 ) ); + add( l21 ); + + l22.reshape( 70, (24)*15+25, 60, 15 ); + l22.setForeground( Color.red ); + l22.setFont( new Font( "Courier", 0, 10 ) ); + add( l22 ); + + l23.reshape( 70, (25)*15+25, 60, 15 ); + l23.setForeground( Color.red ); + l23.setFont( new Font( "Courier", 0, 10 ) ); + add( l23 ); + + l24.reshape( 70, (26)*15+25, 60, 15 ); + l24.setForeground( Color.red ); + l24.setFont( new Font( "Courier", 0, 10 ) ); + add( l24 ); + + l25.reshape( 70, (27)*15+25, 60, 15 ); + l25.setForeground( Color.red ); + l25.setFont( new Font( "Courier", 0, 10 ) ); + add( l25 ); + + l26.reshape( 70, (28)*15+25, 60, 15 ); + l26.setForeground( Color.red ); + l26.setFont( new Font( "Courier", 0, 10 ) ); + add( l26 ); + + l27.reshape( 70, (29)*15+25, 60, 15 ); + l27.setForeground( Color.red ); + l27.setFont( new Font( "Courier", 0, 10 ) ); + add( l27 ); + + l28.reshape( 70, (30)*15+25, 60, 15 ); + l28.setForeground( Color.red ); + l28.setFont( new Font( "Courier", 0, 10 ) ); + add( l28 ); + + l29.reshape( 70, (31)*15+25, 60, 15 ); + l29.setForeground( Color.red ); + l29.setFont( new Font( "Courier", 0, 10 ) ); + add( l29 ); + + l30.reshape( 70, (32)*15+25, 60, 15 ); + l30.setForeground( Color.red ); + l30.setFont( new Font( "Courier", 0, 10 ) ); + add( l30 ); + + l31.reshape( 70, (33)*15+25, 60, 15 ); + l31.setForeground( Color.red ); + l31.setFont( new Font( "Courier", 0, 10 ) ); + add( l31 ); + + l32.reshape( 210, (2)*15+25, 60, 15 ); + l32.setForeground( Color.red ); + l32.setFont( new Font( "Courier", 0, 10 ) ); + add( l32 ); + + l33.reshape( 210, (3)*15+25, 60, 15 ); + l33.setForeground( Color.red ); + l33.setFont( new Font( "Courier", 0, 10 ) ); + add( l33 ); + + l34.reshape( 210, (4)*15+25, 60, 15 ); + l34.setForeground( Color.red ); + l34.setFont( new Font( "Courier", 0, 10 ) ); + add( l34 ); + + l35.reshape( 210, (5)*15+25, 60, 15 ); + l35.setForeground( Color.red ); + l35.setFont( new Font( "Courier", 0, 10 ) ); + add( l35 ); + + l36.reshape( 210, (6)*15+25, 60, 15 ); + l36.setForeground( Color.red ); + l36.setFont( new Font( "Courier", 0, 10 ) ); + add( l36 ); + + l37.reshape( 210, (7)*15+25, 60, 15 ); + l37.setForeground( Color.red ); + l37.setFont( new Font( "Courier", 0, 10 ) ); + add( l37 ); + + l38.reshape( 210, (8)*15+25, 60, 15 ); + l38.setForeground( Color.red ); + l38.setFont( new Font( "Courier", 0, 10 ) ); + add( l38 ); + + l39.reshape( 210, (9)*15+25, 60, 15 ); + l39.setForeground( Color.red ); + l39.setFont( new Font( "Courier", 0, 10 ) ); + add( l39 ); + + l40.reshape( 210, (10)*15+25, 60, 15 ); + l40.setForeground( Color.red ); + l40.setFont( new Font( "Courier", 0, 10 ) ); + add( l40 ); + + l41.reshape( 210, (11)*15+25, 60, 15 ); + l41.setForeground( Color.red ); + l41.setFont( new Font( "Courier", 0, 10 ) ); + add( l41 ); + + l42.reshape( 210, (12)*15+25, 60, 15 ); + l42.setForeground( Color.red ); + l42.setFont( new Font( "Courier", 0, 10 ) ); + add( l42 ); + + l43.reshape( 210, (13)*15+25, 60, 15 ); + l43.setForeground( Color.red ); + l43.setFont( new Font( "Courier", 0, 10 ) ); + add( l43 ); + + l44.reshape( 210, (14)*15+25, 60, 15 ); + l44.setForeground( Color.red ); + l44.setFont( new Font( "Courier", 0, 10 ) ); + add( l44 ); + + l45.reshape( 210, (15)*15+25, 60, 15 ); + l45.setForeground( Color.red ); + l45.setFont( new Font( "Courier", 0, 10 ) ); + add( l45 ); + + l46.reshape( 210, (16)*15+25, 60, 15 ); + l46.setForeground( Color.red ); + l46.setFont( new Font( "Courier", 0, 10 ) ); + add( l46 ); + + l47.reshape( 210, (17)*15+25, 60, 15 ); + l47.setForeground( Color.red ); + l47.setFont( new Font( "Courier", 0, 10 ) ); + add( l47 ); + + l48.reshape( 210, (18)*15+25, 60, 15 ); + l48.setForeground( Color.red ); + l48.setFont( new Font( "Courier", 0, 10 ) ); + add( l48 ); + + l49.reshape( 210, (19)*15+25, 60, 15 ); + l49.setForeground( Color.red ); + l49.setFont( new Font( "Courier", 0, 10 ) ); + add( l49 ); + + l50.reshape( 210, (20)*15+25, 60, 15 ); + l50.setForeground( Color.red ); + l50.setFont( new Font( "Courier", 0, 10 ) ); + add( l50 ); + + l51.reshape( 210, (21)*15+25, 60, 15 ); + l51.setForeground( Color.red ); + l51.setFont( new Font( "Courier", 0, 10 ) ); + add( l51 ); + + l52.reshape( 210, (22)*15+25, 60, 15 ); + l52.setForeground( Color.red ); + l52.setFont( new Font( "Courier", 0, 10 ) ); + add( l52 ); + + l53.reshape( 210, (23)*15+25, 60, 15 ); + l53.setForeground( Color.red ); + l53.setFont( new Font( "Courier", 0, 10 ) ); + add( l53 ); + + l54.reshape( 210, (24)*15+25, 60, 15 ); + l54.setForeground( Color.red ); + l54.setFont( new Font( "Courier", 0, 10 ) ); + add( l54 ); + + l55.reshape( 210, (25)*15+25, 60, 15 ); + l55.setForeground( Color.red ); + l55.setFont( new Font( "Courier", 0, 10 ) ); + add( l55 ); + + l56.reshape( 210, (26)*15+25, 60, 15 ); + l56.setForeground( Color.red ); + l56.setFont( new Font( "Courier", 0, 10 ) ); + add( l56 ); + + l57.reshape( 210, (27)*15+25, 60, 15 ); + l57.setForeground( Color.red ); + l57.setFont( new Font( "Courier", 0, 10 ) ); + add( l57 ); + + l58.reshape( 210, (28)*15+25, 60, 15 ); + l58.setForeground( Color.red ); + l58.setFont( new Font( "Courier", 0, 10 ) ); + add( l58 ); + + l59.reshape( 210, (29)*15+25, 60, 15 ); + l59.setForeground( Color.red ); + l59.setFont( new Font( "Courier", 0, 10 ) ); + add( l59 ); + + l60.reshape( 210, (30)*15+25, 60, 15 ); + l60.setForeground( Color.red ); + l60.setFont( new Font( "Courier", 0, 10 ) ); + add( l60 ); + + l61.reshape( 210, (31)*15+25, 60, 15 ); + l61.setForeground( Color.red ); + l61.setFont( new Font( "Courier", 0, 10 ) ); + add( l61 ); + + l62.reshape( 210, (32)*15+25, 60, 15 ); + l62.setForeground( Color.red ); + l62.setFont( new Font( "Courier", 0, 10 ) ); + add( l62 ); + + + l63.reshape( 210, (33)*15+25, 60, 15 ); + l63.setForeground( Color.red ); + l63.setFont( new Font( "Courier", 0, 10 ) ); + add( l63 ); + + kernel.init( commands , config ); + + show(); + } + + public void paintPage( Page page ) + { + virtualPageValueLabel.setText( Integer.toString( page.id ) ); + physicalPageValueLabel.setText( Integer.toString( page.physical ) ); + RValueLabel.setText( Integer.toString( page.R ) ); + MValueLabel.setText( Integer.toString( page.M ) ); + inMemTimeValueLabel.setText( Integer.toString( page.inMemTime ) ); + lastTouchTimeValueLabel.setText( Integer.toString( page.lastTouchTime ) ); + lowValueLabel.setText(Long.toString( page.low , Kernel.addressradix ) ); + highValueLabel.setText(Long.toString( page.high , Kernel.addressradix ) ); + } + + public void setStatus(String status) { + statusValueLabel.setText(status); + } + + public void addPhysicalPage( int pageNum , int physicalPage ) + { + if ( physicalPage == 0 ) + { + l0.setText( "page " + pageNum ); + } + else if ( physicalPage == 1) + { + l1.setText( "page " + pageNum ); + } + else if ( physicalPage == 2) + { + l2.setText( "page " + pageNum ); + } + else if ( physicalPage == 3) + { + l3.setText( "page " + pageNum ); + } + else if ( physicalPage == 4) + { + l4.setText( "page " + pageNum ); + } + else if ( physicalPage == 5) + { + l5.setText( "page " + pageNum ); + } + else if ( physicalPage == 6) + { + l6.setText( "page " + pageNum ); + } + else if ( physicalPage == 7) + { + l7.setText( "page " + pageNum ); + } + else if ( physicalPage == 8) + { + l8.setText( "page " + pageNum ); + } + else if ( physicalPage == 9) + { + l9.setText( "page " + pageNum ); + } + else if ( physicalPage == 10) + { + l10.setText( "page " + pageNum ); + } + else if ( physicalPage == 11) + { + l11.setText( "page " + pageNum ); + } + else if ( physicalPage == 12) + { + l12.setText( "page " + pageNum ); + } + else if ( physicalPage == 13) + { + l13.setText( "page " + pageNum ); + } + else if ( physicalPage == 14) + { + l14.setText( "page " + pageNum ); + } + else if ( physicalPage == 15) + { + l15.setText( "page " + pageNum ); + } + else if ( physicalPage == 16) + { + l16.setText( "page " + pageNum ); + } + else if ( physicalPage == 17) + { + l17.setText( "page " + pageNum ); + } + else if ( physicalPage == 18) + { + l18.setText( "page " + pageNum ); + } + else if ( physicalPage == 19) + { + l19.setText( "page " + pageNum ); + } + else if ( physicalPage == 20) + { + l20.setText( "page " + pageNum ); + } + else if ( physicalPage == 21) + { + l21.setText( "page " + pageNum ); + } + else if ( physicalPage == 22) + { + l22.setText( "page " + pageNum ); + } + else if ( physicalPage == 23) + { + l23.setText( "page " + pageNum ); + } + else if ( physicalPage == 24) + { + l24.setText( "page " + pageNum ); + } + else if ( physicalPage == 25) + { + l25.setText( "page " + pageNum ); + } + else if ( physicalPage == 26) + { + l26.setText( "page " + pageNum ); + } + else if ( physicalPage == 27) + { + l27.setText( "page " + pageNum ); + } + else if ( physicalPage == 28) + { + l28.setText( "page " + pageNum ); + } + else if ( physicalPage == 29) + { + l29.setText( "page " + pageNum ); + } + else if ( physicalPage == 30) + { + l30.setText( "page " + pageNum ); + } + else if ( physicalPage == 31) + { + l31.setText( "page " + pageNum ); + } + else if ( physicalPage == 32) + { + l32.setText( "page " + pageNum ); + } + else if ( physicalPage == 33) + { + l33.setText( "page " + pageNum ); + } + else if ( physicalPage == 34) + { + l34.setText( "page " + pageNum ); + } + else if ( physicalPage == 35) + { + l35.setText( "page " + pageNum ); + } + else if ( physicalPage == 36) + { + l36.setText( "page " + pageNum ); + } + else if ( physicalPage == 37) + { + l37.setText( "page " + pageNum ); + } + else if ( physicalPage == 38) + { + l38.setText( "page " + pageNum ); + } + else if ( physicalPage == 39) + { + l39.setText( "page " + pageNum ); + } + else if ( physicalPage == 40) + { + l40.setText( "page " + pageNum ); + } + else if ( physicalPage == 41) + { + l41.setText( "page " + pageNum ); + } + else if ( physicalPage == 42) + { + l42.setText( "page " + pageNum ); + } + else if ( physicalPage == 43) + { + l43.setText( "page " + pageNum ); + } + else if ( physicalPage == 44) + { + l44.setText( "page " + pageNum ); + } + else if ( physicalPage == 45) + { + l45.setText( "page " + pageNum ); + } + else if ( physicalPage == 46) + { + l46.setText( "page " + pageNum ); + } + else if ( physicalPage == 47) + { + l47.setText( "page " + pageNum ); + } + else if ( physicalPage == 48) + { + l48.setText( "page " + pageNum ); + } + else if ( physicalPage == 49) + { + l49.setText( "page " + pageNum ); + } + else if ( physicalPage == 50) + { + l50.setText( "page " + pageNum ); + } + else if ( physicalPage == 51) + { + l51.setText( "page " + pageNum ); + } + else if ( physicalPage == 52) + { + l52.setText( "page " + pageNum ); + } + else if ( physicalPage == 53) + { + l53.setText( "page " + pageNum ); + } + else if ( physicalPage == 54) + { + l54.setText( "page " + pageNum ); + } + else if ( physicalPage == 55) + { + l55.setText( "page " + pageNum ); + } + else if ( physicalPage == 56) + { + l56.setText( "page " + pageNum ); + } + else if ( physicalPage == 57) + { + l57.setText( "page " + pageNum ); + } + else if ( physicalPage == 58) + { + l58.setText( "page " + pageNum ); + } + else if ( physicalPage == 59) + { + l59.setText( "page " + pageNum ); + } + else if ( physicalPage == 60) + { + l60.setText( "page " + pageNum ); + } + else if ( physicalPage == 61) + { + l61.setText( "page " + pageNum ); + } + else if ( physicalPage == 62) + { + l62.setText( "page " + pageNum ); + } + else if ( physicalPage == 63) + { + l63.setText( "page " + pageNum ); + } + else + { + return; + } + } + + public void removePhysicalPage( int physicalPage ) + { + if ( physicalPage == 0 ) + { + l0.setText( null ); + } + else if ( physicalPage == 1) + { + l1.setText( null ); + } + else if ( physicalPage == 2) + { + l2.setText(null ); + } + else if ( physicalPage == 3) + { + l3.setText( null ); + } + else if ( physicalPage == 4) + { + l4.setText( null ); + } + else if ( physicalPage == 5) + { + l5.setText( null ); + } + else if ( physicalPage == 6) + { + l6.setText( null ); + } + else if ( physicalPage == 7) + { + l7.setText( null ); + } + else if ( physicalPage == 8) + { + l8.setText( null ); + } + else if ( physicalPage == 9) + { + l9.setText( null ); + } + else if ( physicalPage == 10) + { + l10.setText( null ); + } + else if ( physicalPage == 11) + { + l11.setText( null ); + } + else if ( physicalPage == 12) + { + l12.setText( null ); + } + else if ( physicalPage == 13) + { + l13.setText( null ); + } + else if ( physicalPage == 14) + { + l14.setText( null ); + } + else if ( physicalPage == 15) + { + l15.setText( null ); + } + else if ( physicalPage == 16) + { + l16.setText( null ); + } + else if ( physicalPage == 17) + { + l17.setText( null ); + } + else if ( physicalPage == 18) + { + l18.setText( null ); + } + else if ( physicalPage == 19) + { + l19.setText( null ); + } + else if ( physicalPage == 20) + { + l20.setText( null ); + } + else if ( physicalPage == 21) + { + l21.setText( null ); + } + else if ( physicalPage == 22) + { + l22.setText( null ); + } + else if ( physicalPage == 23) + { + l23.setText( null ); + } + else if ( physicalPage == 24) + { + l24.setText( null ); + } + else if ( physicalPage == 25) + { + l25.setText( null ); + } + else if ( physicalPage == 26) + { + l26.setText( null ); + } + else if ( physicalPage == 27) + { + l27.setText( null ); + } + else if ( physicalPage == 28) + { + l28.setText( null ); + } + else if ( physicalPage == 29) + { + l29.setText( null ); + } + else if ( physicalPage == 30) + { + l30.setText( null ); + } + else if ( physicalPage == 31) + { + l31.setText( null ); + } + else if ( physicalPage == 32) + { + l32.setText( null ); + } + else if ( physicalPage == 33) + { + l33.setText( null ); + } + else if ( physicalPage == 34) + { + l34.setText( null ); + } + else if ( physicalPage == 35) + { + l35.setText( null ); + } + else if ( physicalPage == 36) + { + l36.setText( null ); + } + else if ( physicalPage == 37) + { + l37.setText( null ); + } + else if ( physicalPage == 38) + { + l38.setText( null ); + } + else if ( physicalPage == 39) + { + l39.setText( null ); + } + else if ( physicalPage == 40) + { + l40.setText( null ); + } + else if ( physicalPage == 41) + { + l41.setText( null ); + } + else if ( physicalPage == 42) + { + l42.setText( null ); + } + else if ( physicalPage == 43) + { + l43.setText( null ); + } + else if ( physicalPage == 44) + { + l44.setText( null ); + } + else if ( physicalPage == 45) + { + l45.setText( null ); + } + else if ( physicalPage == 46) + { + l46.setText( null ); + } + else if ( physicalPage == 47) + { + l47.setText( null ); + } + else if ( physicalPage == 48) + { + l48.setText( null ); + } + else if ( physicalPage == 49) + { + l49.setText( null ); + } + else if ( physicalPage == 50) + { + l50.setText( null ); + } + else if ( physicalPage == 51) + { + l51.setText( null ); + } + else if ( physicalPage == 52) + { + l52.setText( null ); + } + else if ( physicalPage == 53) + { + l53.setText( null ); + } + else if ( physicalPage == 54) + { + l54.setText( null ); + } + else if ( physicalPage == 55) + { + l55.setText( null ); + } + else if ( physicalPage == 56) + { + l56.setText( null ); + } + else if ( physicalPage == 57) + { + l57.setText( null ); + } + else if ( physicalPage == 58) + { + l58.setText( null ); + } + else if ( physicalPage == 59) + { + l59.setText( null ); + } + else if ( physicalPage == 60) + { + l60.setText( null ); + } + else if ( physicalPage == 61) + { + l61.setText( null ); + } + else if ( physicalPage == 62) + { + l62.setText( null ); + } + else if ( physicalPage == 63) + { + l63.setText( null ); + } + else + { + return; + } + } + + + public boolean action( Event e, Object arg ) + { + if ( e.target == runButton ) + { + setStatus( "RUN" ); + runButton.disable(); + stepButton.disable(); + resetButton.disable(); + kernel.run(); + setStatus( "STOP" ); + resetButton.enable(); + return true; + } + else if ( e.target == stepButton ) + { + setStatus( "STEP" ); + kernel.step(); + if (kernel.runcycles == kernel.runs) { + stepButton.disable(); + runButton.disable(); + } + setStatus("STOP"); + return true; + } + else if ( e.target == resetButton ) + { + kernel.reset(); + runButton.enable(); + stepButton.enable(); + return true; + } + else if ( e.target == exitButton ) + { + System.exit(0); + return true; + } + else if ( e.target == b0 ) + { + kernel.getPage(0); + return true; + } + else if ( e.target == b1 ) + { + kernel.getPage(1); + return true; + } + else if ( e.target == b2 ) + { + kernel.getPage(2); + return true; + } + else if ( e.target == b3 ) + { + kernel.getPage(3); + return true; + } + else if ( e.target == b4 ) + { + kernel.getPage(4); + return true; + } + else if ( e.target == b5 ) + { + kernel.getPage(5); + return true; + } + else if ( e.target == b6 ) + { + kernel.getPage(6); + return true; + } + else if ( e.target == b7 ) + { + kernel.getPage(7); + return true; + } + else if ( e.target == b8 ) + { + kernel.getPage(8); + return true; + } + else if ( e.target == b9 ) + { + kernel.getPage(9); + return true; + } + else if ( e.target == b10 ) + { + kernel.getPage(10); + return true; + } + else if ( e.target == b11 ) + { + kernel.getPage(11); + return true; + } + else if ( e.target == b12 ) + { + kernel.getPage(12); + return true; + } + else if ( e.target == b13 ) + { + kernel.getPage(13); + return true; + } + else if ( e.target == b14 ) + { + kernel.getPage(14); + return true; + } + else if ( e.target == b15 ) + { + kernel.getPage(15); + return true; + } + else if ( e.target == b16 ) + { + kernel.getPage(16); + return true; + } + else if ( e.target == b17 ) + { + kernel.getPage(17); + return true; + } + else if ( e.target == b18 ) + { + kernel.getPage(18); + return true; + } + else if ( e.target == b19 ) + { + kernel.getPage(19); + return true; + } + else if ( e.target == b20 ) + { + kernel.getPage(20); + return true; + } + else if ( e.target == b21 ) + { + kernel.getPage(21); + return true; + } + else if ( e.target == b22 ) + { + kernel.getPage(22); + return true; + } + else if ( e.target == b23 ) + { + kernel.getPage(23); + return true; + } + else if ( e.target == b24 ) + { + kernel.getPage(24); + return true; + } + else if ( e.target == b25 ) + { + kernel.getPage(25); + return true; + } + else if ( e.target == b26 ) + { + kernel.getPage(26); + return true; + } + else if ( e.target == b27 ) + { + kernel.getPage(27); + return true; + } + else if ( e.target == b28 ) + { + kernel.getPage(28); + return true; + } + else if ( e.target == b29 ) + { + kernel.getPage(29); + return true; + } + else if ( e.target == b30 ) + { + kernel.getPage(30); + return true; + } + else if ( e.target == b31 ) + { + kernel.getPage(31); + return true; + } + else if ( e.target == b32 ) + { + kernel.getPage(32); + return true; + } + else if ( e.target == b33 ) + { + kernel.getPage(33); + return true; + } + else if ( e.target == b34 ) + { + kernel.getPage(34); + return true; + } + else if ( e.target == b35 ) + { + kernel.getPage(35); + return true; + } + else if ( e.target == b36 ) + { + kernel.getPage(36); + return true; + } + else if ( e.target == b37 ) + { + kernel.getPage(37); + return true; + } + else if ( e.target == b38 ) + { + kernel.getPage(38); + return true; + } + else if ( e.target == b39 ) + { + kernel.getPage(39); + return true; + } + else if ( e.target == b40 ) + { + kernel.getPage(40); + return true; + } + else if ( e.target == b41 ) + { + kernel.getPage(41); + return true; + } + else if ( e.target == b42 ) + { + kernel.getPage(42); + return true; + } + else if ( e.target == b43 ) + { + kernel.getPage(43); + return true; + } + else if ( e.target == b44 ) + { + kernel.getPage(44); + return true; + } + else if ( e.target == b45 ) + { + kernel.getPage(45); + return true; + } + else if ( e.target == b46 ) + { + kernel.getPage(46); + return true; + } + else if ( e.target == b47 ) + { + kernel.getPage(47); + return true; + } + else if ( e.target == b48 ) + { + kernel.getPage(48); + return true; + } + else if ( e.target == b49 ) + { + kernel.getPage(49); + return true; + } + else if ( e.target == b50 ) + { + kernel.getPage(50); + return true; + } + else if ( e.target == b51 ) + { + kernel.getPage(51); + return true; + } + else if ( e.target == b52 ) + { + kernel.getPage(52); + return true; + } + else if ( e.target == b53 ) + { + kernel.getPage(53); + return true; + } + else if ( e.target == b54 ) + { + kernel.getPage(54); + return true; + } + else if ( e.target == b55 ) + { + kernel.getPage(55); + return true; + } + else if ( e.target == b56 ) + { + kernel.getPage(56); + return true; + } + else if ( e.target == b57 ) + { + kernel.getPage(57); + return true; + } + else if ( e.target == b58 ) + { + kernel.getPage(58); + return true; + } + else if ( e.target == b59 ) + { + kernel.getPage(59); + return true; + } + else if ( e.target == b60 ) + { + kernel.getPage(60); + return true; + } + else if ( e.target == b61 ) + { + kernel.getPage(61); + return true; + } + else if ( e.target == b62 ) + { + kernel.getPage(62); + return true; + } + else if ( e.target == b63 ) + { + kernel.getPage(63); + return true; + } + else + { + return false; + } + } +} diff --git a/EOPSY/lab4/task4/work/Instruction.class b/EOPSY/lab4/task4/work/Instruction.class new file mode 100644 index 00000000..9f6d3616 Binary files /dev/null and b/EOPSY/lab4/task4/work/Instruction.class differ diff --git a/EOPSY/lab4/task4/work/Instruction.java b/EOPSY/lab4/task4/work/Instruction.java new file mode 100644 index 00000000..3e3bbe3a --- /dev/null +++ b/EOPSY/lab4/task4/work/Instruction.java @@ -0,0 +1,12 @@ +public class Instruction +{ + public String inst; + public long addr; + + public Instruction( String inst, long addr ) + { + this.inst = inst; + this.addr = addr; + } + +} diff --git a/EOPSY/lab4/task4/work/Kernel.class b/EOPSY/lab4/task4/work/Kernel.class new file mode 100644 index 00000000..780ba7da Binary files /dev/null and b/EOPSY/lab4/task4/work/Kernel.class differ diff --git a/EOPSY/lab4/task4/work/Kernel.java b/EOPSY/lab4/task4/work/Kernel.java new file mode 100644 index 00000000..362f227d --- /dev/null +++ b/EOPSY/lab4/task4/work/Kernel.java @@ -0,0 +1,511 @@ +import java.lang.Thread; +import java.io.*; +import java.util.*; + +public class Kernel extends Thread +{ + // The number of virtual pages must be fixed at 63 due to + // dependencies in the GUI + private static int virtPageNum = 63; + + private String output = null; + private static final String lineSeparator = + System.getProperty("line.separator"); + private String command_file; + private String config_file; + private ControlPanel controlPanel ; + private Vector memVector = new Vector(); + private Vector instructVector = new Vector(); + private String status; + private boolean doStdoutLog = false; + private boolean doFileLog = false; + public int runs; + public int runcycles; + public long block = (int) Math.pow(2,12); + public static byte addressradix = 10; + + public void init( String commands , String config ) + { + File f = new File( commands ); + command_file = commands; + config_file = config; + String line; + String tmp = null; + String command = ""; + byte R = 0; + byte M = 0; + int i = 0; + int j = 0; + int id = 0; + int physical = 0; + int physical_count = 0; + int inMemTime = 0; + int lastTouchTime = 0; + int map_count = 0; + double power = 14; + long high = 0; + long low = 0; + long addr = 0; + long address_limit = (block * virtPageNum+1)-1; + + if ( config != null ) + { + f = new File ( config ); + try + { + DataInputStream in = new DataInputStream(new FileInputStream(f)); + while ((line = in.readLine()) != null) + { + if (line.startsWith("numpages")) + { + StringTokenizer st = new StringTokenizer(line); + while (st.hasMoreTokens()) + { + tmp = st.nextToken(); + virtPageNum = Common.s2i(st.nextToken()) - 1; + if ( virtPageNum < 2 || virtPageNum > 63 ) + { + System.out.println("MemoryManagement: numpages out of bounds."); + System.exit(-1); + } + address_limit = (block * virtPageNum+1)-1; + } + } + } + in.close(); + } catch (IOException e) { /* Handle exceptions */ } + for (i = 0; i <= virtPageNum; i++) + { + high = (block * (i + 1))-1; + low = block * i; + memVector.addElement(new Page(i, -1, R, M, 0, 0, high, low)); + } + try + { + DataInputStream in = new DataInputStream(new FileInputStream(f)); + while ((line = in.readLine()) != null) + + { + if (line.startsWith("memset")) + { + StringTokenizer st = new StringTokenizer(line); + st.nextToken(); + while (st.hasMoreTokens()) + { + id = Common.s2i(st.nextToken()); + tmp = st.nextToken(); + if (tmp.startsWith("x")) + { + physical = -1; + } + else + { + physical = Common.s2i(tmp); + } + if ((0 > id || id > virtPageNum) || (-1 > physical || physical > ((virtPageNum - 1) / 2))) + { + System.out.println("MemoryManagement: Invalid page value in " + config); + System.exit(-1); + } + R = Common.s2b(st.nextToken()); + if (R < 0 || R > 1) + { + System.out.println("MemoryManagement: Invalid R value in " + config); + System.exit(-1); + } + M = Common.s2b(st.nextToken()); + if (M < 0 || M > 1) + { + System.out.println("MemoryManagement: Invalid M value in " + config); + System.exit(-1); + } + inMemTime = Common.s2i(st.nextToken()); + if (inMemTime < 0) + { + System.out.println("MemoryManagement: Invalid inMemTime in " + config); + System.exit(-1); + } + lastTouchTime = Common.s2i(st.nextToken()); + if (lastTouchTime < 0) + { + System.out.println("MemoryManagement: Invalid lastTouchTime in " + config); + System.exit(-1); + } + Page page = (Page) memVector.elementAt(id); + page.physical = physical; + page.R = R; + page.M = M; + page.inMemTime = inMemTime; + page.lastTouchTime = lastTouchTime; + } + } + if (line.startsWith("enable_logging")) + { + StringTokenizer st = new StringTokenizer(line); + while (st.hasMoreTokens()) + { + if ( st.nextToken().startsWith( "true" ) ) + { + doStdoutLog = true; + } + } + } + if (line.startsWith("log_file")) + { + StringTokenizer st = new StringTokenizer(line); + while (st.hasMoreTokens()) + { + tmp = st.nextToken(); + } + if ( tmp.startsWith( "log_file" ) ) + { + doFileLog = false; + output = "tracefile"; + } + else + { + doFileLog = true; + doStdoutLog = false; + output = tmp; + } + } + if (line.startsWith("pagesize")) + { + StringTokenizer st = new StringTokenizer(line); + while (st.hasMoreTokens()) + { + tmp = st.nextToken(); + tmp = st.nextToken(); + if ( tmp.startsWith( "power" ) ) + { + power = (double) Integer.parseInt(st.nextToken()); + block = (int) Math.pow(2,power); + } + else + { + block = Long.parseLong(tmp,10); + } + address_limit = (block * virtPageNum+1)-1; + } + if ( block < 64 || block > Math.pow(2,26)) + { + System.out.println("MemoryManagement: pagesize is out of bounds"); + System.exit(-1); + } + for (i = 0; i <= virtPageNum; i++) + { + Page page = (Page) memVector.elementAt(i); + page.high = (block * (i + 1))-1; + page.low = block * i; + } + } + if (line.startsWith("addressradix")) + { + StringTokenizer st = new StringTokenizer(line); + while (st.hasMoreTokens()) + { + tmp = st.nextToken(); + tmp = st.nextToken(); + addressradix = Byte.parseByte(tmp); + if ( addressradix < 0 || addressradix > 20 ) + { + System.out.println("MemoryManagement: addressradix out of bounds."); + System.exit(-1); + } + } + } + } + in.close(); + } catch (IOException e) { /* Handle exceptions */ } + } + f = new File ( commands ); + try + { + DataInputStream in = new DataInputStream(new FileInputStream(f)); + while ((line = in.readLine()) != null) + { + if (line.startsWith("READ") || line.startsWith("WRITE")) + { + if (line.startsWith("READ")) + { + command = "READ"; + } + if (line.startsWith("WRITE")) + { + command = "WRITE"; + } + StringTokenizer st = new StringTokenizer(line); + tmp = st.nextToken(); + tmp = st.nextToken(); + if (tmp.startsWith("random")) + { + instructVector.addElement(new Instruction(command,Common.randomLong( address_limit ))); + } + else + { + if ( tmp.startsWith( "bin" ) ) + { + addr = Long.parseLong(st.nextToken(),2); + } + else if ( tmp.startsWith( "oct" ) ) + { + addr = Long.parseLong(st.nextToken(),8); + } + else if ( tmp.startsWith( "hex" ) ) + { + addr = Long.parseLong(st.nextToken(),16); + } + else + { + addr = Long.parseLong(tmp); + } + if (0 > addr || addr > address_limit) + { + System.out.println("MemoryManagement: " + addr + ", Address out of range in " + commands); + System.exit(-1); + } + instructVector.addElement(new Instruction(command,addr)); + } + } + } + in.close(); + } catch (IOException e) { /* Handle exceptions */ } + runcycles = instructVector.size(); + if ( runcycles < 1 ) + { + System.out.println("MemoryManagement: no instructions present for execution."); + System.exit(-1); + } + if ( doFileLog ) + { + File trace = new File(output); + trace.delete(); + } + runs = 0; + for (i = 0; i < virtPageNum; i++) + { + Page page = (Page) memVector.elementAt(i); + if ( page.physical != -1 ) + { + map_count++; + } + for (j = 0; j < virtPageNum; j++) + { + Page tmp_page = (Page) memVector.elementAt(j); + if (tmp_page.physical == page.physical && page.physical >= 0) + { + physical_count++; + } + } + if (physical_count > 1) + { + System.out.println("MemoryManagement: Duplicate physical page's in " + config); + System.exit(-1); + } + physical_count = 0; + } + if ( map_count < ( virtPageNum +1 ) / 2 ) + { + for (i = 0; i < virtPageNum; i++) + { + Page page = (Page) memVector.elementAt(i); + if ( page.physical == -1 && map_count < ( virtPageNum + 1 ) / 2 ) + { + page.physical = i; + map_count++; + } + } + } + for (i = 0; i < virtPageNum; i++) + { + Page page = (Page) memVector.elementAt(i); + if (page.physical == -1) + { + controlPanel.removePhysicalPage( i ); + } + else + { + controlPanel.addPhysicalPage( i , page.physical ); + } + } + for (i = 0; i < instructVector.size(); i++) + { + high = block * virtPageNum; + Instruction instruct = ( Instruction ) instructVector.elementAt( i ); + if ( instruct.addr < 0 || instruct.addr > high ) + { + System.out.println("MemoryManagement: Instruction (" + instruct.inst + " " + instruct.addr + ") out of bounds."); + System.exit(-1); + } + } + } + + public void setControlPanel(ControlPanel newControlPanel) + { + controlPanel = newControlPanel ; + } + + public void getPage(int pageNum) + { + Page page = ( Page ) memVector.elementAt( pageNum ); + controlPanel.paintPage( page ); + } + + private void printLogFile(String message) + { + String line; + String temp = ""; + + File trace = new File(output); + if (trace.exists()) + { + try + { + DataInputStream in = new DataInputStream( new FileInputStream( output ) ); + while ((line = in.readLine()) != null) { + temp = temp + line + lineSeparator; + } + in.close(); + } + catch ( IOException e ) + { + /* Do nothing */ + } + } + try + { + PrintStream out = new PrintStream( new FileOutputStream( output ) ); + out.print( temp ); + out.print( message ); + out.close(); + } + catch (IOException e) + { + /* Do nothing */ + } + } + + public void run() + { + step(); + while (runs != runcycles) + { + try + { + Thread.sleep(2000); + } + catch(InterruptedException e) + { + /* Do nothing */ + } + step(); + } + } + + public void step() + { + int i = 0; + + Instruction instruct = ( Instruction ) instructVector.elementAt( runs ); + controlPanel.instructionValueLabel.setText( instruct.inst ); + controlPanel.addressValueLabel.setText( Long.toString( instruct.addr , addressradix ) ); + getPage( Virtual2Physical.pageNum( instruct.addr , virtPageNum , block ) ); + if ( controlPanel.pageFaultValueLabel.getText() == "YES" ) + { + controlPanel.pageFaultValueLabel.setText( "NO" ); + } + if ( instruct.inst.startsWith( "READ" ) ) + { + Page page = ( Page ) memVector.elementAt( Virtual2Physical.pageNum( instruct.addr , virtPageNum , block ) ); + if ( page.physical == -1 ) + { + if ( doFileLog ) + { + printLogFile( "READ " + Long.toString(instruct.addr , addressradix) + " ... page fault" ); + } + if ( doStdoutLog ) + { + System.out.println( "READ " + Long.toString(instruct.addr , addressradix) + " ... page fault" ); + } + PageFault.replacePage( memVector , virtPageNum , Virtual2Physical.pageNum( instruct.addr , virtPageNum , block ) , controlPanel ); + controlPanel.pageFaultValueLabel.setText( "YES" ); + } + else + { + page.R = 1; + page.lastTouchTime = 0; + if ( doFileLog ) + { + printLogFile( "READ " + Long.toString( instruct.addr , addressradix ) + " ... okay" ); + } + if ( doStdoutLog ) + { + System.out.println( "READ " + Long.toString( instruct.addr , addressradix ) + " ... okay" ); + } + } + } + if ( instruct.inst.startsWith( "WRITE" ) ) + { + Page page = ( Page ) memVector.elementAt( Virtual2Physical.pageNum( instruct.addr , virtPageNum , block ) ); + if ( page.physical == -1 ) + { + if ( doFileLog ) + { + printLogFile( "WRITE " + Long.toString(instruct.addr , addressradix) + " ... page fault" ); + } + if ( doStdoutLog ) + { + System.out.println( "WRITE " + Long.toString(instruct.addr , addressradix) + " ... page fault" ); + } + PageFault.replacePage( memVector , virtPageNum , Virtual2Physical.pageNum( instruct.addr , virtPageNum , block ) , controlPanel ); controlPanel.pageFaultValueLabel.setText( "YES" ); + } + else + { + page.M = 1; + page.lastTouchTime = 0; + if ( doFileLog ) + { + printLogFile( "WRITE " + Long.toString(instruct.addr , addressradix) + " ... okay" ); + } + if ( doStdoutLog ) + { + System.out.println( "WRITE " + Long.toString(instruct.addr , addressradix) + " ... okay" ); + } + } + } + for ( i = 0; i < virtPageNum; i++ ) + { + Page page = ( Page ) memVector.elementAt( i ); + if ( page.R == 1 && page.lastTouchTime == 10 ) + { + page.R = 0; + } + if ( page.physical != -1 ) + { + page.inMemTime = page.inMemTime + 10; + page.lastTouchTime = page.lastTouchTime + 10; + } + } + runs++; + controlPanel.timeValueLabel.setText( Integer.toString( runs*10 ) + " (ns)" ); + } + + public void reset() { + memVector.removeAllElements(); + instructVector.removeAllElements(); + controlPanel.statusValueLabel.setText( "STOP" ) ; + controlPanel.timeValueLabel.setText( "0" ) ; + controlPanel.instructionValueLabel.setText( "NONE" ) ; + controlPanel.addressValueLabel.setText( "NULL" ) ; + controlPanel.pageFaultValueLabel.setText( "NO" ) ; + controlPanel.virtualPageValueLabel.setText( "x" ) ; + controlPanel.physicalPageValueLabel.setText( "0" ) ; + controlPanel.RValueLabel.setText( "0" ) ; + controlPanel.MValueLabel.setText( "0" ) ; + controlPanel.inMemTimeValueLabel.setText( "0" ) ; + controlPanel.lastTouchTimeValueLabel.setText( "0" ) ; + controlPanel.lowValueLabel.setText( "0" ) ; + controlPanel.highValueLabel.setText( "0" ) ; + init( command_file , config_file ); + } +} diff --git a/EOPSY/lab4/task4/work/Makefile b/EOPSY/lab4/task4/work/Makefile new file mode 100644 index 00000000..59bad64c --- /dev/null +++ b/EOPSY/lab4/task4/work/Makefile @@ -0,0 +1,24 @@ + +default: info + + +help: + less README.tjk + +compile: + javac -nowarn *.java + +run: + java MemoryManagement commands memory.conf + +setup: + ./setUp + +info: + @echo "" + @echo "Use 'make' with one argument:" + @echo "" + @echo " make help" + @echo " make compile" + @echo " make run" + @echo "" diff --git a/EOPSY/lab4/task4/work/MemoryManagement.class b/EOPSY/lab4/task4/work/MemoryManagement.class new file mode 100644 index 00000000..485d9585 Binary files /dev/null and b/EOPSY/lab4/task4/work/MemoryManagement.class differ diff --git a/EOPSY/lab4/task4/work/MemoryManagement.java b/EOPSY/lab4/task4/work/MemoryManagement.java new file mode 100644 index 00000000..7e3e6387 --- /dev/null +++ b/EOPSY/lab4/task4/work/MemoryManagement.java @@ -0,0 +1,61 @@ +// The main MemoryManagement program, created by Alexander Reeder, 2000 Nov 19 + +import java.applet.*; +import java.awt.*; +import java.io.*; +import java.util.*; + +public class MemoryManagement +{ + public static void main(String[] args) + { + ControlPanel controlPanel; + Kernel kernel; + + if ( args.length < 1 || args.length > 2 ) + { + System.out.println( "Usage: 'java MemoryManagement '" ); + System.exit( -1 ); + } + + File f = new File( args[0] ); + + if ( ! ( f.exists() ) ) + { + System.out.println( "MemoryM: error, file '" + f.getName() + "' does not exist." ); + System.exit( -1 ); + } + if ( ! ( f.canRead() ) ) + { + System.out.println( "MemoryM: error, read of " + f.getName() + " failed." ); + System.exit( -1 ); + } + + if ( args.length == 2 ) + { + f = new File( args[1] ); + + if ( ! ( f.exists() ) ) + { + System.out.println( "MemoryM: error, file '" + f.getName() + "' does not exist." ); + System.exit( -1 ); + } + if ( ! ( f.canRead() ) ) + { + System.out.println( "MemoryM: error, read of " + f.getName() + " failed." ); + System.exit( -1 ); + } + } + + kernel = new Kernel(); + controlPanel = new ControlPanel( "Memory Management" ); + if ( args.length == 1 ) + { + controlPanel.init( kernel , args[0] , null ); + } + else + { + controlPanel.init( kernel , args[0] , args[1] ); + } + } +} diff --git a/EOPSY/lab4/task4/work/Page.class b/EOPSY/lab4/task4/work/Page.class new file mode 100644 index 00000000..bb3b1cab Binary files /dev/null and b/EOPSY/lab4/task4/work/Page.class differ diff --git a/EOPSY/lab4/task4/work/Page.java b/EOPSY/lab4/task4/work/Page.java new file mode 100644 index 00000000..2e9ec1ff --- /dev/null +++ b/EOPSY/lab4/task4/work/Page.java @@ -0,0 +1,24 @@ +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; + } + +} diff --git a/EOPSY/lab4/task4/work/PageFault.class b/EOPSY/lab4/task4/work/PageFault.class new file mode 100644 index 00000000..d212c127 Binary files /dev/null and b/EOPSY/lab4/task4/work/PageFault.class differ diff --git a/EOPSY/lab4/task4/work/PageFault.java b/EOPSY/lab4/task4/work/PageFault.java new file mode 100644 index 00000000..546ef4f9 --- /dev/null +++ b/EOPSY/lab4/task4/work/PageFault.java @@ -0,0 +1,92 @@ +/* It is in this file, specifically the replacePage function that will + be called by MemoryManagement when there is a page fault. The + users of this program should rewrite PageFault to implement the + page replacement algorithm. +*/ + + // This PageFault file is an example of the FIFO Page Replacement + // Algorithm as described in the Memory Management section. + +import java.util.*; + +public class PageFault { + + /** + * The page replacement algorithm for the memory management sumulator. + * This method gets called whenever a page needs to be replaced. + *

+ * The page replacement algorithm included with the simulator is + * FIFO (first-in first-out). A while or for loop should be used + * to search through the current memory contents for a canidate + * replacement page. In the case of FIFO the while loop is used + * to find the proper page while making sure that virtPageNum is + * not exceeded. + *

+   *   Page page = ( Page ) mem.elementAt( oldestPage )
+   * 
+ * This line brings the contents of the Page at oldestPage (a + * specified integer) from the mem vector into the page object. + * Next recall the contents of the target page, replacePageNum. + * Set the physical memory address of the page to be added equal + * to the page to be removed. + *
+   *   controlPanel.removePhysicalPage( oldestPage )
+   * 
+ * Once a page is removed from memory it must also be reflected + * graphically. This line does so by removing the physical page + * at the oldestPage value. The page which will be added into + * memory must also be displayed through the addPhysicalPage + * function call. One must also remember to reset the values of + * the page which has just been removed from memory. + * + * @param mem is the vector which contains the contents of the pages + * in memory being simulated. mem should be searched to find the + * proper page to remove, and modified to reflect any changes. + * @param virtPageNum is the number of virtual pages in the + * simulator (set in Kernel.java). + * @param replacePageNum is the requested page which caused the + * page fault. + * @param controlPanel represents the graphical element of the + * simulator, and allows one to modify the current display. + */ + public static void replacePage ( Vector mem , int virtPageNum , int replacePageNum , ControlPanel controlPanel ) + { + int count = 0; + int oldestPage = -1; + int oldestTime = 0; + int firstPage = -1; + int map_count = 0; + boolean mapped = false; + + while ( ! (mapped) || count != virtPageNum ) { + Page page = ( Page ) mem.elementAt( count ); + if ( page.physical != -1 ) { + if (firstPage == -1) { + firstPage = count; + } + if (page.inMemTime > oldestTime) { + oldestTime = page.inMemTime; + oldestPage = count; + mapped = true; + } + } + count++; + if ( count == virtPageNum ) { + mapped = true; + } + } + if (oldestPage == -1) { + oldestPage = firstPage; + } + Page page = ( Page ) mem.elementAt( oldestPage ); + Page nextpage = ( Page ) mem.elementAt( replacePageNum ); + controlPanel.removePhysicalPage( oldestPage ); + nextpage.physical = page.physical; + controlPanel.addPhysicalPage( nextpage.physical , replacePageNum ); + page.inMemTime = 0; + page.lastTouchTime = 0; + page.R = 0; + page.M = 0; + page.physical = -1; + } +} diff --git a/EOPSY/lab4/task4/work/README.tjk b/EOPSY/lab4/task4/work/README.tjk new file mode 100644 index 00000000..e77b9a16 --- /dev/null +++ b/EOPSY/lab4/task4/work/README.tjk @@ -0,0 +1,45 @@ + + + WORKPLACE ORGANIZATION: +mkdir ../work +cd ../work +cp ../ftp/* . +gzip -d memory.tgz +tar -xvf memory.tar +rm memory.tar + + + READING: +more/less/vi/vim README.tjk +netscape/lynx/links install_unix.html +netscape/lynx/links user_guide.html + + + COMPILE: +javac -nowarn *.java + + + RUN: +java MemoryManagement commands memory.conf + + + FILES: +input file name: commands +initial content of the VM map: memory.conf +output file name: tracefile + + +--[ YOUR TASK ]------------------------------------------------------- + +Create a command file that maps any 8 pages of physical memory to the +first 8 pages of virtual memory, and then reads from one virtual memory +address on each of the 64 virtual pages. Step through the simulator one +operation at a time and see if you can predict which virtual memory +addresses cause page faults. What page replacement algorithm is being +used? + +Locate in the sources and describe to the instructor the page +replacement algorithm. + +---------------------------------------------------------------------- + diff --git a/EOPSY/lab4/task4/work/Virtual2Physical.class b/EOPSY/lab4/task4/work/Virtual2Physical.class new file mode 100644 index 00000000..c6d4da99 Binary files /dev/null and b/EOPSY/lab4/task4/work/Virtual2Physical.class differ diff --git a/EOPSY/lab4/task4/work/Virtual2Physical.java b/EOPSY/lab4/task4/work/Virtual2Physical.java new file mode 100644 index 00000000..8affc2e3 --- /dev/null +++ b/EOPSY/lab4/task4/work/Virtual2Physical.java @@ -0,0 +1,22 @@ +import java.util.Vector; + +public class Virtual2Physical +{ + public static int pageNum ( long memaddr , int numpages , long block ) + { + int i = 0; + long high = 0; + long low = 0; + + for (i = 0; i <= numpages; i++) + { + low = block * i; + high = block * ( i + 1 ); + if ( low <= memaddr && memaddr < high ) + { + return i; + } + } + return -1; + } +} diff --git a/EOPSY/lab4/task4/work/commands b/EOPSY/lab4/task4/work/commands new file mode 100644 index 00000000..d7a15e62 --- /dev/null +++ b/EOPSY/lab4/task4/work/commands @@ -0,0 +1,73 @@ +// Enter READ/WRITE commands into this file +// READ +// WRITE +// Enter READ/WRITE commands into this file +// READ +// WRITE +//64 addresses increasing by 16384 +READ 0 +READ 16384 +READ 32768 +READ 49152 +READ 65536 +READ 81920 +READ 98304 +READ 114688 +READ 131072 +READ 147456 +READ 163840 +READ 180224 +READ 196608 +READ 212992 +READ 229376 +READ 245760 +READ 262144 +READ 278528 +READ 294912 +READ 311296 +READ 327680 +READ 344064 +READ 360448 +READ 376832 +READ 393216 +READ 409600 +READ 425984 +READ 442368 +READ 458752 +READ 475136 +READ 491520 +READ 507904 +READ 524288 +READ 540672 +READ 557056 +READ 573440 +READ 589824 +READ 606208 +READ 622592 +READ 638976 +READ 655360 +READ 671744 +READ 688128 +READ 704512 +READ 720896 +READ 737280 +READ 753664 +READ 770048 +READ 786432 +READ 802816 +READ 819200 +READ 835584 +READ 851968 +READ 868352 +READ 884736 +READ 901120 +READ 917504 +READ 933888 +READ 950272 +READ 966656 +READ 983040 +READ 999424 +READ 1015808 +READ 1032192 + + diff --git a/EOPSY/lab4/task4/work/copying.txt b/EOPSY/lab4/task4/work/copying.txt new file mode 100644 index 00000000..60549be5 --- /dev/null +++ b/EOPSY/lab4/task4/work/copying.txt @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) 19yy + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/EOPSY/lab4/task4/work/install_unix.html b/EOPSY/lab4/task4/work/install_unix.html new file mode 100644 index 00000000..926e240a --- /dev/null +++ b/EOPSY/lab4/task4/work/install_unix.html @@ -0,0 +1,410 @@ + + +MOSS | Memory Management Simlulator | Installation | + + +Unix + + + + + +

MOSS Memory Management Simulator + + +
Installation on Unix/Linux/Solaris/HP-UX Systems

+ + +

Purpose

+ +

+This document provides instructions for the installation +of the MOSS Memory Management Simulator on + + +Unix + +operating systems. This procedure should be the same or similar on + + +Unix, Linux, Solaris, HP-UX and other Unix-compatible + +systems. +The MOSS software +is designed for use with +Andrew S. Tanenbaum, +Modern Operating Systems, 2nd Edition +(Prentice Hall, 2001). +The Memory Management Simulator was written by +Alex Reeder +(alexr@e-sa.org). +This installation guide was written by +Ray Ontko +(rayo@ontko.com). + +

+This installation guide only provides information about +installing the software and testing the configuration for + +Unix-like operating systems. To install on Windows +operating systems, please read the +Installation Guide for Win95/98/Me/NT/2000 Systems. + + +For more detailed information about the simulator, please +read the User Guide. +

+ +

Requirements

+ +The following software components are required +to install and use the MOSS Memory Management +Simulator. +
    + + +
  • X-windows environment for running Java Application Window Toolkit (AWT) programs + +
  • Java Development Kit (JDK) 1.0 or greater +
  • Text program editor (e.g., notepad) +
+ +

Pre-Installation

+

+Before installation, you should verify: +

+
    +
  • that you have a working java runtime environment, +
  • that you have a working java development environment, and +
  • that the working directory is in the classpath for the runtime environment. +
+

+If you're using a standard command-line java compiler, the following +instructions will help determine if your environment is configured +correctly. +

+
    +
  1. Verify that you have java installed and configured in your environment. + + +
    +$ java -version
    +
    + +You should see a message like this with possibly a different version number. +
    +java version "1.1.8"
    +
    +If you get a message like: + + +
    +java: Command not found.
    +
    + +Then java may not be installed on your system, or may not be configured +for your use. +

    +If you think that Java may already be installed on your system +but may not be in your "path", you can find it by + + +

    +$ find /usr -name java -print
    +
    +On my system, for example, the following is returned. +
    +/usr/lib/netscape/477/communicator/java
    +/usr/lib/netscape/477/netscape/java
    +/usr/lib/jdk1.1/bin/java
    +/usr/lib/jdk1.1/bin/ia32/green_threads/java
    +/usr/share/java
    +/usr/bin/java
    +/usr/src/kernel-source-2.2.17/include/config/binfmt/java
    +
    +On my system, I also searched for "javac" and found +that it exists in /usr/bin/java. I'll use this jdk for my +installation. + +

    +If Java isn't available on your system, you should check with +your instructor or system administrator. If you administer your +own system, then you should be able to find a copy of Java +for your operating system. +

    +If you find that java is installed but not configured for +your use, then perhaps you need to add it to your path. Consult +your instructor or system administrator if you need help adding this +to your path. +

    +

    + +
  2. Verify that the java compiler is installed and configured in +your environment. + + +
    +$ javac
    +
    + +If you're using a standard java command-line compiler, you should +see a message similar to this. +
    +use: javac [-g][-O][-debug][-depend][-nowarn][-verbose][-classpath path][-nowrite][-deprecation][-d dir][-J] file.java...
    +
    +If you get a message like: + + +
    +javac: Command not found.
    +
    + +then the java compiler may not be installed on your system, or +may not be configured for your use. Consult your instructor +or system administrator. +

    + +
  3. Verify that that the current directory is in your classpath. + + +
    +$ echo $CLASSPATH
    +
    +You should see a list of directories separated by colons (":") +or possibly just a blank line. If you don't see the directory +"." (a single period, which stands for the current directory), then +you should add it to the claspath. +

    +Determine which shell you're using: +

    +
    +$ echo $SHELL
    +
    + +

    +If you're using sh, ksh, or bash: +

    +
    +$ CLASSPATH=.:$CLASSPATH
    +$ export CLASSPATH
    +
    + +

    +If you're using csh, or tcsh: +

    +
    +% set CLASSPATH=.:$CLASSPATH
    +
    + +

    + +
+

+If you have a working java runtime environment, a working java +compiler, and the current directory is in your path, then you're +ready to proceed with the installation. +

+ + +

Installation

+ +Installation of the software can be accomplished with +these simple steps: +
    +
  1. + + +Create a directory in which you wish to install the +simulator (e.g., "moss/memory"). +
    +$ cd
    +$ mkdir moss
    +$ cd moss
    +$ mkdir memory
    +$ cd memory
    +
    + +

    + +
  2. + + +Download the compressed tar archive (memory.tgz) into +the directory. +The latest release for this file can always be found at +http://www.ontko.com/moss/memory/memory.tgz. + +

    + +
  3. + + +Expand the compressed tar archive. +
    +$ tar -xzf memory.tgz
    +
    +or +
    +$ gunzip memory.tgz
    +$ tar xf memory.tar
    +
    + +

    + +
+ +

Files

+

+The directory should now contain the following files: +

+ + + + + + + + + + +
Files +Description +
+ + +memory.tgz +Compressed tar + +archive which contains all the other files. +
Common.java +
ControlPanel.java +
Instruction.java +
Kernel.java +
MemoryManagement.java +
PageFault.java +
Page.java +
Virtual2Physical.java +
+Java source files (*.java) +
Common.class +
ControlPanel.class +
Instruction.class +
Kernel.class +
MemoryManagement.class +
PageFault.class +
Page.class +
Virtual2Physical.class +
+Compiled Java class files (*.class) +
commands +Sample input command file +
memory.conf +Sample configuration file +
install_unix.html +
install_windows.html +
user_guide.html +
user_guide_1.gif +
+Documentation and associated images +
copying.txtGnu General Public License: Terms and Conditions +for Copying, Distribution, and Modification +
+ +

Compilation

+ +

+The distribution includes compiled class files as +well as the source java files. You should not need +to recompile unless you decide to change the code. +If you wish to compile the code, +the following commands should work if you're using +a Java compiler that accepts the normal "javac" command +line. + + +

+$ javac -nowarn *.java
+
+ + +The -nowarn flag supresses warning messges, of which +there may be several. For backward compatability we use only +those features of Java which have been present from the beginning, +some of which are deprecated and are usually reported by the +compiler with warning messages. + +

Test

+ +

+To test the program, enter the following command line. + + + +

+$ java MemoryManagement commands memory.conf
+
+ + +

+The program will display a window allowing you to run the +simulator. +When the window presents itself, click on the Run +button. +You should see the +program "execute" 7 memory operations, about one per second. +When the simulation completes, click the +Exit button. +

+The memory operation commands are read from a file called +"commands", +and the initial configuration and various options are +specified in the file "memory.conf". +The program also produces a log file called "tracefile" +in the working directory. + +

+The "commands" file looks something like this: +

+// Enter READ/WRITE commands into this file
+// READ <OPTIONAL number type: bin/hex/oct> <virtual memory address or random>
+// WRITE <OPTIONAL number type: bin/hex/oct> <virtual memory address or random>
+READ bin 100
+READ 19
+WRITE hex CC32
+READ bin 10000000000000000
+READ bin 10000000000000000
+WRITE bin 11000000000000001
+WRITE random
+
+ +

+If things are working correctly, the "tracefile" should look +something like this: + +

+READ 4 ... okay
+READ 13 ... okay
+WRITE 3acc32 ... okay
+READ 10000000 ... okay
+READ 10000000 ... okay
+WRITE c0001000 ... page fault
+WRITE 1ff82cdc ... okay
+
+ +

+The program and its input and output files are described +more fully in the MOSS Memory Management Simulator +User Guide. +

+© Copyright 2001, Prentice-Hall, Inc. +This program is free software; it is distributed under the +terms of the Gnu General Public License. +See copying.txt, +included with this distribution. +

+Please send suggestions, corrections, and comments to +Ray Ontko (rayo@ontko.com). +

+Last updated: July 28, 2001 + + diff --git a/EOPSY/lab4/task4/work/install_windows.html b/EOPSY/lab4/task4/work/install_windows.html new file mode 100644 index 00000000..d3c3ffd0 --- /dev/null +++ b/EOPSY/lab4/task4/work/install_windows.html @@ -0,0 +1,385 @@ + + +MOSS | Memory Management Simlulator | Installation | + +Windows + + + + + + +

MOSS Memory Management Simulator + +
Installation on Windows 95/98/Me/NT/2000 Systems

+ + + +

Purpose

+ +

+This document provides instructions for the installation +of the MOSS Memory Management Simulator on + +Microsoft Windows + + +operating systems. This procedure should be the same or similar on + +Windows 95, 98, Me, NT, and 2000 + + +systems. +The MOSS software +is designed for use with +Andrew S. Tanenbaum, +Modern Operating Systems, 2nd Edition +(Prentice Hall, 2001). +The Memory Management Simulator was written by +Alex Reeder +(alexr@e-sa.org). +This installation guide was written by +Ray Ontko +(rayo@ontko.com). + +

+This installation guide only provides information about +installing the software and testing the configuration for + + +Windows operating systems. To install on Unix-like +operating systems, please read the +Installation Guide for Unix/Linux/Solaris/HP-UX Systems. + +For more detailed information about the simulator, please +read the User Guide. +

+ +

Requirements

+ +The following software components are required +to install and use the MOSS Memory Management +Simulator. +
    + +
  • Microsoft Windows 95, 98, Me, NT, or 2000 + + +
  • Java Development Kit (JDK) 1.0 or greater +
  • Text program editor (e.g., notepad) +
+ +

Pre-Installation

+

+Before installation, you should verify: +

+
    +
  • that you have a working java runtime environment, +
  • that you have a working java development environment, and +
  • that the working directory is in the classpath for the runtime environment. +
+

+If you're using a standard command-line java compiler, the following +instructions will help determine if your environment is configured +correctly. +

+
    +
  1. Verify that you have java installed and configured in your environment. + +
    +C:\WINDOWS> java -version
    +
    + + +You should see a message like this with possibly a different version number. +
    +java version "1.1.8"
    +
    +If you get a message like: + +
    +Bad command or file name
    +
    + + +Then java may not be installed on your system, or may not be configured +for your use. +

    +If you think that Java may already be installed on your system +but may not be in your "path", you can find it by + +choosing Start -> Find -> Files or Folders +and enter "java.exe" in the "Named:" field and click the Find Now button. +If found, make note of the directory folder in which it resides (e.g., +"C:\jdk1.1.8\bin"). +

    +While you're at it, also seach for javac.exe to see if the Java +compiler is installed and whether it's in the same directory as +the java.exe file. + + +

    +If Java isn't available on your system, you should check with +your instructor or system administrator. If you administer your +own system, then you should be able to find a copy of Java +for your operating system. +

    +If you find that java is installed but not configured for +your use, then perhaps you need to add it to your path. Consult +your instructor or system administrator if you need help adding this +to your path. +

    +

    + +
  2. Verify that the java compiler is installed and configured in +your environment. + +
    +C:\WINDOWS> javac
    +
    + + +If you're using a standard java command-line compiler, you should +see a message similar to this. +
    +use: javac [-g][-O][-debug][-depend][-nowarn][-verbose][-classpath path][-nowrite][-deprecation][-d dir][-J] file.java...
    +
    +If you get a message like: + +
    +Bad command or file name
    +
    + + +then the java compiler may not be installed on your system, or +may not be configured for your use. Consult your instructor +or system administrator. +

    + +
  3. Verify that that the current directory is in your classpath. + +
    +C:\WINDOWS> echo "%CLASSPATH%"
    +
    +You should see a list of directories separated by semi-colons (";") +or possibly just "". If you don't see the directory "." (a single +period, which stands for the current directory), then you should +add it to the classpath. +
    +C:\WINDOWS> set CLASSPATH=.;%CLASSPATH%
    +
    + + +

    + +
+

+If you have a working java runtime environment, a working java +compiler, and the current directory is in your path, then you're +ready to proceed with the installation. +

+ + +

Installation

+ +Installation of the software can be accomplished with +these simple steps: +
    +
  1. + +Create a directory folder in which you wish to install +the simulator (e.g., "C:\moss\memory"). You can do +this using the Windows explorer, or from the MS-DOS +prompt. To create the directory from the MS-DOS +prompt: +
    +C:\WINDOWS> cd \ 
    +C:\> mkdir moss
    +C:\> cd moss
    +C:\moss> mkdir memory
    +C:\moss> cd memory
    +C:\moss\memory>
    +
    + + +

    + +
  2. + +Download the self-extracting ZIP archive (memory.exe) into +the directory folder. +The latest release for this file can always be found at +http://www.ontko.com/moss/memory/memory.exe. + + +

    + +
  3. + +Double-click on the file you downloaded (memory.exe), +or invoke it using Start -> Run..., or invoke it +from an MS-DOS command prompt: +
    +C:\moss\memory> memory.exe
    +
    + + +

    + +
+ +

Files

+

+The directory should now contain the following files: +

+ + + + + + + + + + +
Files +Description +
+ +memory.exe +Self-extracting ZIP + + +archive which contains all the other files. +
Common.java +
ControlPanel.java +
Instruction.java +
Kernel.java +
MemoryManagement.java +
PageFault.java +
Page.java +
Virtual2Physical.java +
+Java source files (*.java) +
Common.class +
ControlPanel.class +
Instruction.class +
Kernel.class +
MemoryManagement.class +
PageFault.class +
Page.class +
Virtual2Physical.class +
+Compiled Java class files (*.class) +
commands +Sample input command file +
memory.conf +Sample configuration file +
install_unix.html +
install_windows.html +
user_guide.html +
user_guide_1.gif +
+Documentation and associated images +
copying.txtGnu General Public License: Terms and Conditions +for Copying, Distribution, and Modification +
+ +

Compilation

+ +

+The distribution includes compiled class files as +well as the source java files. You should not need +to recompile unless you decide to change the code. +If you wish to compile the code, +the following commands should work if you're using +a Java compiler that accepts the normal "javac" command +line. + +

+C:\moss\memory> javac -nowarn *.java
+
+ + + +The -nowarn flag supresses warning messges, of which +there may be several. For backward compatability we use only +those features of Java which have been present from the beginning, +some of which are deprecated and are usually reported by the +compiler with warning messages. + +

Test

+ +

+To test the program, enter the following command line. + + +

+C:\moss\memory> java MemoryManagement commands memory.conf
+
+ + + +

+The program will display a window allowing you to run the +simulator. +When the window presents itself, click on the Run +button. +You should see the +program "execute" 7 memory operations, about one per second. +When the simulation completes, click the +Exit button. +

+The memory operation commands are read from a file called +"commands", +and the initial configuration and various options are +specified in the file "memory.conf". +The program also produces a log file called "tracefile" +in the working directory. + +

+The "commands" file looks something like this: +

+// Enter READ/WRITE commands into this file
+// READ <OPTIONAL number type: bin/hex/oct> <virtual memory address or random>
+// WRITE <OPTIONAL number type: bin/hex/oct> <virtual memory address or random>
+READ bin 100
+READ 19
+WRITE hex CC32
+READ bin 10000000000000000
+READ bin 10000000000000000
+WRITE bin 11000000000000001
+WRITE random
+
+ +

+If things are working correctly, the "tracefile" should look +something like this: + +

+READ 4 ... okay
+READ 13 ... okay
+WRITE 3acc32 ... okay
+READ 10000000 ... okay
+READ 10000000 ... okay
+WRITE c0001000 ... page fault
+WRITE 1ff82cdc ... okay
+
+ +

+The program and its input and output files are described +more fully in the MOSS Memory Management Simulator +User Guide. +

+© Copyright 2001, Prentice-Hall, Inc. +This program is free software; it is distributed under the +terms of the Gnu General Public License. +See copying.txt, +included with this distribution. +

+Please send suggestions, corrections, and comments to +Ray Ontko (rayo@ontko.com). +

+Last updated: July 28, 2001 + + diff --git a/EOPSY/lab4/task4/work/javadoc/AllNames.html b/EOPSY/lab4/task4/work/javadoc/AllNames.html new file mode 100644 index 00000000..a7dce024 --- /dev/null +++ b/EOPSY/lab4/task4/work/javadoc/AllNames.html @@ -0,0 +1,274 @@ + + + + + + + Index of all Fields and Methods + + + + +

All Packages  Class Hierarchy

+A +B +C +D +E +F +G +H +I +J +K +L +M +N +O +P +Q +R +S +T +U +V +W +X +Y +Z + +
+

+ Index of all Fields and Methods +

+ +

+ A +

+
+
action(Event, Object). +Method in class ControlPanel +
+
addPhysicalPage(int, int). +Method in class ControlPanel +
+
addr. +Variable in class Instruction +
+
addressradix. +Static variable in class Kernel +
+
+ +
+

+ B +

+
+
block. +Variable in class Kernel +
+
+ +
+

+ C +

+
+
Common(). +Constructor for class Common +
+
ControlPanel(). +Constructor for class ControlPanel +
+
ControlPanel(String). +Constructor for class ControlPanel +
+
+ + + + +
+

+ G +

+
+
getPage(int). +Method in class Kernel +
+
+ +
+

+ H +

+
+
high. +Variable in class Page +
+
+ +
+

+ I +

+
+
id. +Variable in class Page +
+
init(Kernel, String, String). +Method in class ControlPanel +
+
init(String, String). +Method in class Kernel +
+
inMemTime. +Variable in class Page +
+
inst. +Variable in class Instruction +
+
Instruction(String, long). +Constructor for class Instruction +
+
+ + +
+

+ K +

+
+
Kernel(). +Constructor for class Kernel +
+
+ +
+

+ L +

+
+
lastTouchTime. +Variable in class Page +
+
low. +Variable in class Page +
+
+ +
+

+ M +

+
+
M. +Variable in class Page +
+
main(String[]). +Static method in class MemoryManagement +
+
MemoryManagement(). +Constructor for class MemoryManagement +
+
+ + + +
+

+ P +

+
+
Page(int, int, byte, byte, int, int, long, long). +Constructor for class Page +
+
PageFault(). +Constructor for class PageFault +
+
pageNum(long, int, long). +Static method in class Virtual2Physical +
+
paintPage(Page). +Method in class ControlPanel +
+
physical. +Variable in class Page +
+
+ + +
+

+ R +

+
+
R. +Variable in class Page +
+
randomLong(long). +Static method in class Common +
+
removePhysicalPage(int). +Method in class ControlPanel +
+
replacePage(Vector, int, int, ControlPanel). +Static method in class PageFault +
The page replacement algorithm for the memory management sumulator. +
reset(). +Method in class Kernel +
+
run(). +Method in class Kernel +
+
runcycles. +Variable in class Kernel +
+
runs. +Variable in class Kernel +
+
+ +
+

+ S +

+
+
s2b(String). +Static method in class Common +
+
s2i(String). +Static method in class Common +
+
s2l(String). +Static method in class Common +
+
setControlPanel(ControlPanel). +Method in class Kernel +
+
setStatus(String). +Method in class ControlPanel +
+
step(). +Method in class Kernel +
+
+ + + +
+

+ V +

+
+
Virtual2Physical(). +Constructor for class Virtual2Physical +
+
+ + + + + + diff --git a/EOPSY/lab4/task4/work/javadoc/Common.html b/EOPSY/lab4/task4/work/javadoc/Common.html new file mode 100644 index 00000000..5eb90559 --- /dev/null +++ b/EOPSY/lab4/task4/work/javadoc/Common.html @@ -0,0 +1,87 @@ + + + + + + + Class Common + + + + +

+ Class Common +

+
+java.lang.Object
+   |
+   +----Common
+
+
+
+
public class Common +
extends Object +
+
+ +

+ Constructor Index +

+
+
 o + Common() +
+
+

+ Method Index +

+
+
 o + randomLong(long) +
+
 o + s2b(String) +
+
 o + s2i(String) +
+
 o + s2l(String) +
+
+ +

+ Constructors +

+ + o +Common +
+ public Common()
+
+ +

+ Methods +

+ o +s2l +
+ public static long s2l(String s)
+
+ o +s2i +
+ public static int s2i(String s)
+
+ o +s2b +
+ public static byte s2b(String s)
+
+ o +randomLong +
+ public static long randomLong(long MAX)
+
+ + diff --git a/EOPSY/lab4/task4/work/javadoc/ControlPanel.html b/EOPSY/lab4/task4/work/javadoc/ControlPanel.html new file mode 100644 index 00000000..9a26c9b6 --- /dev/null +++ b/EOPSY/lab4/task4/work/javadoc/ControlPanel.html @@ -0,0 +1,129 @@ + + + + + + + Class ControlPanel + + + + +

+ Class ControlPanel +

+
+java.lang.Object
+   |
+   +----java.awt.Component
+           |
+           +----java.awt.Container
+                   |
+                   +----java.awt.Window
+                           |
+                           +----java.awt.Frame
+                                   |
+                                   +----ControlPanel
+
+
+
+
public class ControlPanel +
extends Frame +
+
+ +

+ Constructor Index +

+
+
 o + ControlPanel() +
+
 o + ControlPanel(String) +
+
+

+ Method Index +

+
+
 o + action(Event, Object) +
+
 o + addPhysicalPage(int, int) +
+
 o + init(Kernel, String, String) +
+
 o + paintPage(Page) +
+
 o + removePhysicalPage(int) +
+
 o + setStatus(String) +
+
+ +

+ Constructors +

+ + o +ControlPanel +
+ public ControlPanel()
+
+ o +ControlPanel +
+ public ControlPanel(String title)
+
+ +

+ Methods +

+ o +init +
+ public void init(Kernel useKernel,
+                  String commands,
+                  String config)
+
+ o +paintPage +
+ public void paintPage(Page page)
+
+ o +setStatus +
+ public void setStatus(String status)
+
+ o +addPhysicalPage +
+ public void addPhysicalPage(int pageNum,
+                             int physicalPage)
+
+ o +removePhysicalPage +
+ public void removePhysicalPage(int physicalPage)
+
+ o +action +
+ public boolean action(Event e,
+                       Object arg)
+
+
+
+
Overrides: +
action in class Component +
+
+ + diff --git a/EOPSY/lab4/task4/work/javadoc/Instruction.html b/EOPSY/lab4/task4/work/javadoc/Instruction.html new file mode 100644 index 00000000..ecfaea39 --- /dev/null +++ b/EOPSY/lab4/task4/work/javadoc/Instruction.html @@ -0,0 +1,72 @@ + + + + + + + Class Instruction + + + + +

+ Class Instruction +

+
+java.lang.Object
+   |
+   +----Instruction
+
+
+
+
public class Instruction +
extends Object +
+
+ +

+ Variable Index +

+
+
 o + addr +
+
 o + inst +
+
+

+ Constructor Index +

+
+
 o + Instruction(String, long) +
+
+ +

+ Variables +

+ o +inst +
+ public String inst
+
+ o +addr +
+ public long addr
+
+ +

+ Constructors +

+ + o +Instruction +
+ public Instruction(String inst,
+                    long addr)
+
+ + diff --git a/EOPSY/lab4/task4/work/javadoc/Kernel.html b/EOPSY/lab4/task4/work/javadoc/Kernel.html new file mode 100644 index 00000000..4c1aee21 --- /dev/null +++ b/EOPSY/lab4/task4/work/javadoc/Kernel.html @@ -0,0 +1,153 @@ + + + + + + + Class Kernel + + + + +

+ Class Kernel +

+
+java.lang.Object
+   |
+   +----java.lang.Thread
+           |
+           +----Kernel
+
+
+
+
public class Kernel +
extends Thread +
+
+ +

+ Variable Index +

+
+
 o + addressradix +
+
 o + block +
+
 o + runcycles +
+
 o + runs +
+
+

+ Constructor Index +

+
+
 o + Kernel() +
+
+

+ Method Index +

+
+
 o + getPage(int) +
+
 o + init(String, String) +
+
 o + reset() +
+
 o + run() +
+
 o + setControlPanel(ControlPanel) +
+
 o + step() +
+
+ +

+ Variables +

+ o +runs +
+ public int runs
+
+ o +runcycles +
+ public int runcycles
+
+ o +block +
+ public long block
+
+ o +addressradix +
+ public static byte addressradix
+
+ +

+ Constructors +

+ + o +Kernel +
+ public Kernel()
+
+ +

+ Methods +

+ o +init +
+ public void init(String commands,
+                  String config)
+
+ o +setControlPanel +
+ public void setControlPanel(ControlPanel newControlPanel)
+
+ o +getPage +
+ public void getPage(int pageNum)
+
+ o +run +
+ public void run()
+
+
+
+
Overrides: +
run in class Thread +
+
+ o +step +
+ public void step()
+
+ o +reset +
+ public void reset()
+
+ + diff --git a/EOPSY/lab4/task4/work/javadoc/MemoryManagement.html b/EOPSY/lab4/task4/work/javadoc/MemoryManagement.html new file mode 100644 index 00000000..5fc5f815 --- /dev/null +++ b/EOPSY/lab4/task4/work/javadoc/MemoryManagement.html @@ -0,0 +1,63 @@ + + + + + + + Class MemoryManagement + + + + +

+ Class MemoryManagement +

+
+java.lang.Object
+   |
+   +----MemoryManagement
+
+
+
+
public class MemoryManagement +
extends Object +
+
+ +

+ Constructor Index +

+
+
 o + MemoryManagement() +
+
+

+ Method Index +

+
+
 o + main(String[]) +
+
+ +

+ Constructors +

+ + o +MemoryManagement +
+ public MemoryManagement()
+
+ +

+ Methods +

+ o +main +
+ public static void main(String args[])
+
+ + diff --git a/EOPSY/lab4/task4/work/javadoc/Page.html b/EOPSY/lab4/task4/work/javadoc/Page.html new file mode 100644 index 00000000..2862fe45 --- /dev/null +++ b/EOPSY/lab4/task4/work/javadoc/Page.html @@ -0,0 +1,126 @@ + + + + + + + Class Page + + + + +

+ Class Page +

+
+java.lang.Object
+   |
+   +----Page
+
+
+
+
public class Page +
extends Object +
+
+ +

+ Variable Index +

+
+
 o + high +
+
 o + id +
+
 o + inMemTime +
+
 o + lastTouchTime +
+
 o + low +
+
 o + M +
+
 o + physical +
+
 o + R +
+
+

+ Constructor Index +

+
+
 o + Page(int, int, byte, byte, int, int, long, long) +
+
+ +

+ Variables +

+ o +id +
+ public int id
+
+ o +physical +
+ public int physical
+
+ o +R +
+ public byte R
+
+ o +M +
+ public byte M
+
+ o +inMemTime +
+ public int inMemTime
+
+ o +lastTouchTime +
+ public int lastTouchTime
+
+ o +high +
+ public long high
+
+ o +low +
+ public long low
+
+ +

+ Constructors +

+ + o +Page +
+ public Page(int id,
+             int physical,
+             byte R,
+             byte M,
+             int inMemTime,
+             int lastTouchTime,
+             long high,
+             long low)
+
+ + diff --git a/EOPSY/lab4/task4/work/javadoc/PageFault.html b/EOPSY/lab4/task4/work/javadoc/PageFault.html new file mode 100644 index 00000000..091f5c60 --- /dev/null +++ b/EOPSY/lab4/task4/work/javadoc/PageFault.html @@ -0,0 +1,107 @@ + + + + + + + Class PageFault + + + + +

+ Class PageFault +

+
+java.lang.Object
+   |
+   +----PageFault
+
+
+
+
public class PageFault +
extends Object +
+
+ +

+ Constructor Index +

+
+
 o + PageFault() +
+
+

+ Method Index +

+
+
 o + replacePage(Vector, int, int, ControlPanel) +
The page replacement algorithm for the memory management sumulator. +
+ +

+ Constructors +

+ + o +PageFault +
+ public PageFault()
+
+ +

+ Methods +

+ o +replacePage +
+ public static void replacePage(Vector mem,
+                                int virtPageNum,
+                                int replacePageNum,
+                                ControlPanel controlPanel)
+
+
+
The page replacement algorithm for the memory management sumulator. + This method gets called whenever a page needs to be replaced. +

+ The page replacement algorithm included with the simulator is + FIFO (first-in first-out). A while or for loop should be used + to search through the current memory contents for a canidate + replacement page. In the case of FIFO the while loop is used + to find the proper page while making sure that virtPageNum is + not exceeded. +

+   Page page = ( Page ) mem.elementAt( oldestPage )
+ 
+ This line brings the contents of the Page at oldestPage (a + specified integer) from the mem vector into the page object. + Next recall the contents of the target page, replacePageNum. + Set the physical memory address of the page to be added equal + to the page to be removed. +
+   controlPanel.removePhysicalPage( oldestPage )
+ 
+ Once a page is removed from memory it must also be reflected + graphically. This line does so by removing the physical page + at the oldestPage value. The page which will be added into + memory must also be displayed through the addPhysicalPage + function call. One must also remember to reset the values of + the page which has just been removed from memory. +

+

+
Parameters: +
mem - is the vector which contains the contents of the pages + in memory being simulated. mem should be searched to find the + proper page to remove, and modified to reflect any changes. +
virtPageNum - is the number of virtual pages in the + simulator (set in Kernel.java). +
replacePageNum - is the requested page which caused the + page fault. +
controlPanel - represents the graphical element of the + simulator, and allows one to modify the current display. +
+
+ + diff --git a/EOPSY/lab4/task4/work/javadoc/Virtual2Physical.html b/EOPSY/lab4/task4/work/javadoc/Virtual2Physical.html new file mode 100644 index 00000000..5b99bc98 --- /dev/null +++ b/EOPSY/lab4/task4/work/javadoc/Virtual2Physical.html @@ -0,0 +1,65 @@ + + + + + + + Class Virtual2Physical + + + + +

+ Class Virtual2Physical +

+
+java.lang.Object
+   |
+   +----Virtual2Physical
+
+
+
+
public class Virtual2Physical +
extends Object +
+
+ +

+ Constructor Index +

+
+
 o + Virtual2Physical() +
+
+

+ Method Index +

+
+
 o + pageNum(long, int, long) +
+
+ +

+ Constructors +

+ + o +Virtual2Physical +
+ public Virtual2Physical()
+
+ +

+ Methods +

+ o +pageNum +
+ public static int pageNum(long memaddr,
+                           int numpages,
+                           long block)
+
+ + diff --git a/EOPSY/lab4/task4/work/javadoc/images/BaseObject.gif b/EOPSY/lab4/task4/work/javadoc/images/BaseObject.gif new file mode 100644 index 00000000..66d51d5d Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/BaseObject.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/Category.gif b/EOPSY/lab4/task4/work/javadoc/images/Category.gif new file mode 100644 index 00000000..3982845e Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/Category.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/Class.gif b/EOPSY/lab4/task4/work/javadoc/images/Class.gif new file mode 100644 index 00000000..a47963e8 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/Class.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/Collection.gif b/EOPSY/lab4/task4/work/javadoc/images/Collection.gif new file mode 100644 index 00000000..305420d4 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/Collection.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/DataObject.gif b/EOPSY/lab4/task4/work/javadoc/images/DataObject.gif new file mode 100644 index 00000000..6a749587 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/DataObject.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/Group.gif b/EOPSY/lab4/task4/work/javadoc/images/Group.gif new file mode 100644 index 00000000..d6911e76 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/Group.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/Interface.gif b/EOPSY/lab4/task4/work/javadoc/images/Interface.gif new file mode 100644 index 00000000..dbd7235e Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/Interface.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/Job.gif b/EOPSY/lab4/task4/work/javadoc/images/Job.gif new file mode 100644 index 00000000..6967a3dd Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/Job.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/JobOutput.gif b/EOPSY/lab4/task4/work/javadoc/images/JobOutput.gif new file mode 100644 index 00000000..b2bae24e Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/JobOutput.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/JobParameter.gif b/EOPSY/lab4/task4/work/javadoc/images/JobParameter.gif new file mode 100644 index 00000000..0c6ee7b2 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/JobParameter.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/ObjectID.gif b/EOPSY/lab4/task4/work/javadoc/images/ObjectID.gif new file mode 100644 index 00000000..a79b42ea Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/ObjectID.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/ObjectType.gif b/EOPSY/lab4/task4/work/javadoc/images/ObjectType.gif new file mode 100644 index 00000000..00e40411 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/ObjectType.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/OpenBookIcon.gif b/EOPSY/lab4/task4/work/javadoc/images/OpenBookIcon.gif new file mode 100644 index 00000000..86384f77 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/OpenBookIcon.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/Permissions.gif b/EOPSY/lab4/task4/work/javadoc/images/Permissions.gif new file mode 100644 index 00000000..5c44ad87 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/Permissions.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/Query.gif b/EOPSY/lab4/task4/work/javadoc/images/Query.gif new file mode 100644 index 00000000..e398de53 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/Query.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/QueryVector.gif b/EOPSY/lab4/task4/work/javadoc/images/QueryVector.gif new file mode 100644 index 00000000..2d5511c7 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/QueryVector.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/ReportMartEntity.gif b/EOPSY/lab4/task4/work/javadoc/images/ReportMartEntity.gif new file mode 100644 index 00000000..42e45311 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/ReportMartEntity.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/ReportMartException.gif b/EOPSY/lab4/task4/work/javadoc/images/ReportMartException.gif new file mode 100644 index 00000000..bd0746be Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/ReportMartException.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/Repository.gif b/EOPSY/lab4/task4/work/javadoc/images/Repository.gif new file mode 100644 index 00000000..274e6292 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/Repository.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/SPFSet.gif b/EOPSY/lab4/task4/work/javadoc/images/SPFSet.gif new file mode 100644 index 00000000..22404774 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/SPFSet.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/SQRJob.gif b/EOPSY/lab4/task4/work/javadoc/images/SQRJob.gif new file mode 100644 index 00000000..08518736 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/SQRJob.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/SQRJobOutput.gif b/EOPSY/lab4/task4/work/javadoc/images/SQRJobOutput.gif new file mode 100644 index 00000000..873ecbc4 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/SQRJobOutput.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/Session.gif b/EOPSY/lab4/task4/work/javadoc/images/Session.gif new file mode 100644 index 00000000..afa3ce41 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/Session.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/SessionFactory.gif b/EOPSY/lab4/task4/work/javadoc/images/SessionFactory.gif new file mode 100644 index 00000000..e4376c1d Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/SessionFactory.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/UnimplementedMethodException.gif b/EOPSY/lab4/task4/work/javadoc/images/UnimplementedMethodException.gif new file mode 100644 index 00000000..efa20dd6 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/UnimplementedMethodException.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/UnknownReportMartException.gif b/EOPSY/lab4/task4/work/javadoc/images/UnknownReportMartException.gif new file mode 100644 index 00000000..5e60d9f1 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/UnknownReportMartException.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/User.gif b/EOPSY/lab4/task4/work/javadoc/images/User.gif new file mode 100644 index 00000000..6b0ac9ca Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/User.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/UserValidationException.gif b/EOPSY/lab4/task4/work/javadoc/images/UserValidationException.gif new file mode 100644 index 00000000..b77e2ab3 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/UserValidationException.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/blue-ball-small.gif b/EOPSY/lab4/task4/work/javadoc/images/blue-ball-small.gif new file mode 100644 index 00000000..d4c5cde5 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/blue-ball-small.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/blue-ball.gif b/EOPSY/lab4/task4/work/javadoc/images/blue-ball.gif new file mode 100644 index 00000000..edc29b78 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/blue-ball.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/class-index.gif b/EOPSY/lab4/task4/work/javadoc/images/class-index.gif new file mode 100644 index 00000000..7f276bcb Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/class-index.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/constructor-index.gif b/EOPSY/lab4/task4/work/javadoc/images/constructor-index.gif new file mode 100644 index 00000000..435cac42 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/constructor-index.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/constructors.gif b/EOPSY/lab4/task4/work/javadoc/images/constructors.gif new file mode 100644 index 00000000..d1a6ae50 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/constructors.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/cyan-ball-small.gif b/EOPSY/lab4/task4/work/javadoc/images/cyan-ball-small.gif new file mode 100644 index 00000000..7f743574 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/cyan-ball-small.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/cyan-ball.gif b/EOPSY/lab4/task4/work/javadoc/images/cyan-ball.gif new file mode 100644 index 00000000..97ca1f2b Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/cyan-ball.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/error-index.gif b/EOPSY/lab4/task4/work/javadoc/images/error-index.gif new file mode 100644 index 00000000..22835ff8 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/error-index.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/exception-index.gif b/EOPSY/lab4/task4/work/javadoc/images/exception-index.gif new file mode 100644 index 00000000..e3830d9c Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/exception-index.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/green-ball-small.gif b/EOPSY/lab4/task4/work/javadoc/images/green-ball-small.gif new file mode 100644 index 00000000..17fea5b3 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/green-ball-small.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/green-ball.gif b/EOPSY/lab4/task4/work/javadoc/images/green-ball.gif new file mode 100644 index 00000000..71e1b2ec Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/green-ball.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/interface-index.gif b/EOPSY/lab4/task4/work/javadoc/images/interface-index.gif new file mode 100644 index 00000000..bf93dda9 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/interface-index.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/magenta-ball-small.gif b/EOPSY/lab4/task4/work/javadoc/images/magenta-ball-small.gif new file mode 100644 index 00000000..bd0584b3 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/magenta-ball-small.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/magenta-ball.gif b/EOPSY/lab4/task4/work/javadoc/images/magenta-ball.gif new file mode 100644 index 00000000..5da03b84 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/magenta-ball.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/method-index.gif b/EOPSY/lab4/task4/work/javadoc/images/method-index.gif new file mode 100644 index 00000000..a05e7051 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/method-index.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/methods.gif b/EOPSY/lab4/task4/work/javadoc/images/methods.gif new file mode 100644 index 00000000..949e01b8 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/methods.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/package-index.gif b/EOPSY/lab4/task4/work/javadoc/images/package-index.gif new file mode 100644 index 00000000..f894d421 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/package-index.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/red-ball-small.gif b/EOPSY/lab4/task4/work/javadoc/images/red-ball-small.gif new file mode 100644 index 00000000..f6b3c372 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/red-ball-small.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/red-ball.gif b/EOPSY/lab4/task4/work/javadoc/images/red-ball.gif new file mode 100644 index 00000000..dca92960 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/red-ball.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/variable-index.gif b/EOPSY/lab4/task4/work/javadoc/images/variable-index.gif new file mode 100644 index 00000000..65cc029e Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/variable-index.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/variables.gif b/EOPSY/lab4/task4/work/javadoc/images/variables.gif new file mode 100644 index 00000000..e8a73539 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/variables.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/yellow-ball-small.gif b/EOPSY/lab4/task4/work/javadoc/images/yellow-ball-small.gif new file mode 100644 index 00000000..8e5f57cd Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/yellow-ball-small.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/images/yellow-ball.gif b/EOPSY/lab4/task4/work/javadoc/images/yellow-ball.gif new file mode 100644 index 00000000..2b8c0bb3 Binary files /dev/null and b/EOPSY/lab4/task4/work/javadoc/images/yellow-ball.gif differ diff --git a/EOPSY/lab4/task4/work/javadoc/packages.html b/EOPSY/lab4/task4/work/javadoc/packages.html new file mode 100644 index 00000000..2bfd63f8 --- /dev/null +++ b/EOPSY/lab4/task4/work/javadoc/packages.html @@ -0,0 +1,17 @@ + + + + + + + Package Index + + + + +
API User's Guide  Class Hierarchy  Index

+

+Package Index +

+ + diff --git a/EOPSY/lab4/task4/work/javadoc/tree.html b/EOPSY/lab4/task4/work/javadoc/tree.html new file mode 100644 index 00000000..a1975141 --- /dev/null +++ b/EOPSY/lab4/task4/work/javadoc/tree.html @@ -0,0 +1,45 @@ + + + + + + + Class Hierarchy + + + + +
All Packages  Index

+

+ Class Hierarchy +

+
    +
  • class java.lang.Object +
      +
    • class Common +
    • class java.awt.Component (implements java.awt.image.ImageObserver, java.awt.MenuContainer, java.io.Serializable) +
        +
      • class java.awt.Container +
          +
        • class java.awt.Window +
            +
          • class java.awt.Frame (implements java.awt.MenuContainer) + +
          +
        +
      +
    • class Instruction +
    • class MemoryManagement +
    • class Page +
    • class PageFault +
    • class java.lang.Thread (implements java.lang.Runnable) + +
    • class Virtual2Physical +
    +
+ + diff --git a/EOPSY/lab4/task4/work/memory.conf b/EOPSY/lab4/task4/work/memory.conf new file mode 100644 index 00000000..b8e40ab2 --- /dev/null +++ b/EOPSY/lab4/task4/work/memory.conf @@ -0,0 +1,33 @@ +// memset virt page # physical page # R (read from) M (modified) inMemTime (ns) lastTouchTime (ns) +memset 0 0 0 0 0 0 +memset 1 1 0 0 0 0 +memset 2 2 0 0 0 0 +memset 3 3 0 0 0 0 +memset 4 4 0 0 0 0 +memset 5 5 0 0 0 0 +memset 6 6 0 0 0 0 +memset 7 7 0 0 0 0 + +// enable_logging 'true' or 'false' +// When true specify a log_file or leave blank for stdout +enable_logging true + +// log_file +// Where is the name of the file you want output +// to be print to. +log_file tracefile + +// page size, defaults to 2^14 and cannot be greater than 2^26 +// pagesize or <'power' num (base 2)> +pagesize 16384 + +// addressradix sets the radix in which numerical values are displayed +// 2 is the default value +// addressradix +addressradix 16 + +// numpages sets the number of pages (physical and virtual) +// 64 is the default value +// numpages must be at least 2 and no more than 64 +// numpages +numpages 64 diff --git a/EOPSY/lab4/task4/work/setUp b/EOPSY/lab4/task4/work/setUp new file mode 100755 index 00000000..8a9877bb --- /dev/null +++ b/EOPSY/lab4/task4/work/setUp @@ -0,0 +1,9 @@ +echo "Creating ../work subdirectory" +mkdir ../work 2>/dev/null +cd ../work +cp ../ftp/* . +gzip -d memory.tgz +tar -xvf memory.tar +rm memory.tar +echo "" +echo "Now, go to the directory ../work and submit 'make'" diff --git a/EOPSY/lab4/task4/work/tracefile b/EOPSY/lab4/task4/work/tracefile new file mode 100644 index 00000000..6e1b2d31 --- /dev/null +++ b/EOPSY/lab4/task4/work/tracefile @@ -0,0 +1,64 @@ +READ 0 ... okay +READ 4000 ... okay +READ 8000 ... okay +READ c000 ... okay +READ 10000 ... okay +READ 14000 ... okay +READ 18000 ... okay +READ 1c000 ... okay +READ 20000 ... okay +READ 24000 ... okay +READ 28000 ... okay +READ 2c000 ... okay +READ 30000 ... okay +READ 34000 ... okay +READ 38000 ... okay +READ 3c000 ... okay +READ 40000 ... okay +READ 44000 ... okay +READ 48000 ... okay +READ 4c000 ... okay +READ 50000 ... okay +READ 54000 ... okay +READ 58000 ... okay +READ 5c000 ... okay +READ 60000 ... okay +READ 64000 ... okay +READ 68000 ... okay +READ 6c000 ... okay +READ 70000 ... okay +READ 74000 ... okay +READ 78000 ... okay +READ 7c000 ... okay +READ 80000 ... page fault +READ 84000 ... page fault +READ 88000 ... page fault +READ 8c000 ... page fault +READ 90000 ... page fault +READ 94000 ... page fault +READ 98000 ... page fault +READ 9c000 ... page fault +READ a0000 ... page fault +READ a4000 ... page fault +READ a8000 ... page fault +READ ac000 ... page fault +READ b0000 ... page fault +READ b4000 ... page fault +READ b8000 ... page fault +READ bc000 ... page fault +READ c0000 ... page fault +READ c4000 ... page fault +READ c8000 ... page fault +READ cc000 ... page fault +READ d0000 ... page fault +READ d4000 ... page fault +READ d8000 ... page fault +READ dc000 ... page fault +READ e0000 ... page fault +READ e4000 ... page fault +READ e8000 ... page fault +READ ec000 ... page fault +READ f0000 ... page fault +READ f4000 ... page fault +READ f8000 ... page fault +READ fc000 ... page fault \ No newline at end of file diff --git a/EOPSY/lab4/task4/work/user_guide.html b/EOPSY/lab4/task4/work/user_guide.html new file mode 100644 index 00000000..7dad10de --- /dev/null +++ b/EOPSY/lab4/task4/work/user_guide.html @@ -0,0 +1,460 @@ + + +Moss | Memory Management Simulator | User Guide + + +

+MOSS +Memory Management Simulator +
User Guide

+ +

Purpose

+ +

+This document is a user guide for the MOSS +Memory Management Simulator. It explains how to use the simulator and +describes the display and the various input files used by and output files +produced by the simulator. The MOSS software +is designed for use with +Andrew S. Tanenbaum, +Modern Operating Systems, 2nd Edition +(Prentice Hall, 2001). +The Memory Management Simulator was written by +Alex Reeder +(alexr@e-sa.org). +This user guide was written by +Ray Ontko +(rayo@ontko.com). +

+This user guide assumes that you have already installed and tested +the simulator. If you are looking for installation information, +please read the +Installation Guide for +Unix/Linux/Solaris/HP-UX Systems or the +Installation Guide for +Win95/98/Me/NT/2000 Systems. +

+ +

Introduction

+

+The memory management simulator illustrates page fault behavior +in a paged virtual memory system. The program reads the initial +state of the page table and a sequence of virtual memory +instructions and writes a trace log indicating the effect of each +instruction. It includes a graphical user interface so that +students can observe page replacement algorithms at work. Students +may be asked to implement a particular page replacement algorithm +which the instructor can test by comparing the output from the +student's algorithm to that produced by a working implementation. + +

+ +

Running the Simulator

+ +

+The program reads a command file, optionally reads +a configuration file, displays a GUI window which +allows you to execute the command file, and optionally +writes a trace file. +

+To run the program, enter the following command line. + +

+$ java MemoryManagement commands memory.conf
+
+ +

+The program will display a window allowing you to run the +simulator. You will notice a row of command buttons across +the top, two columns of "page" buttons at the left, and an +informational display at the right. +

+ +

+Typically you will +use the step button to execute a command from the +input file, examine information about any pages by clicking +on a page button, and when you're done, quit the +simulation using the exit button. + +

+The buttons: +

+ + +
Button +Description
run +runs the simulation to completion. Note that the simulation +pauses and updates the screen between each step. +
step +runs a single setup of the simulation and updates the display. +
reset +initializes the simulator and starts from the beginning of +the command file. +
exit +exits the simulation. +
page n +display information about this virtual page in the display +area at the right. +
+ +

+The informational display: +

+ + +
Field +Description
status: +RUN, STEP, or STOP. This indicates whether the current +run or step is completed. +
time: +number of "ns" since the start of the simulation. +
instruction: +READ or WRITE. The operation last performed. +
address: +the virtual memory address of the operation last performed. +
page fault: +whether the last operation caused a page fault to occur. +
virtual page: +the number of the virtual page being displayed in the +fields below. This is the last virtual page accessed by the simulator, +or the last page n button pressed. +
physical page: +the physical page for this virtual page, if any. -1 +indicates that no physical page is associated with this virtual page. +
R: +whether this page has been read. (1=yes, 0=no) +
M: +whether this page has been modified. (1=yes, 0=no) +
inMemTime: +number of ns ago the physical page was allocated to this virtual +page. +
lastTouchTime: +number of ns ago the physical page was last modified. +
low: +low virtual memory address of the virtual page. +
high: +high virtual memory address of the virtual page. +
+ +

The Command File

+ +

+The command file for the simulator specifies a sequence +of memory instructions to be performed. Each instruction +is either a memory READ or WRITE operation, and includes +a virtual memory address to be read or written. Depending on whether +the virtual page for the address is present in physical +memory, the operation will succeed, or, if not, a page fault +will occur. + +

Operations on Virtual Memory

+ +

+There are two operations one can carry out on pages in memory: +READ and WRITE. +

+The format for each command is +

+operation address
+
+or +
+operation random
+
+where operation is READ or WRITE, +and address is the numeric virtual memory address, optionally +preceeded by one of the radix keywords bin, oct, +or hex. If no radix is supplied, the number is assumed +to be decimal. +The keyword random will generate a random virtual +memory address +(for those who want to experiment quickly) +rather than having to type an address. + +

+For example, the sequence + +

+READ bin 01010101
+WRITE bin 10101010
+READ random
+WRITE random
+
+ +causes the virtual memory manager to: + +
    +
  1. read from virtual memory address 85 +
  2. write to virtual memory address 170 +
  3. read from some random virtual memory address +
  4. write to some random virtual memory address +
+ +

Sample Command File

+

+The "commands" input file looks like this: + +

+// Enter READ/WRITE commands into this file
+// READ  
+// WRITE  
+READ bin 100
+READ 19
+WRITE hex CC32
+READ bin 100000000000000
+READ bin 100000000000000
+WRITE bin 110000000000001
+WRITE random
+
+
+
+ +

The Configuration File

+ +The configuration file memory.conf is used to specify the +the initial content of the virtual memory map +(which pages of virtual +memory are mapped to which pages in physical memory) +and provide other configuration information, such +as whether operation should be logged to a file. + +

Setting Up the Virtual Memory Map

+

+The memset command is used to initialize each +entry in the virtual page map. +memset is followed by six integer values: + +

    +
  1. The virtual page # to initialize +
  2. The physical page # associated with this virtual page +(-1 if no page assigned) +
  3. If the page has been read from (R) (0=no, 1=yes) +
  4. If the page has been modified (M) (0=no, 1=yes) +
  5. The amount of time the page has been in memory (in ns) +
  6. The last time the page has been modified (in ns) +
+The first two parameters define the mapping between +the virtual page and a physical page, if any. +The last four parameters are values that might be used +by a page replacement algorithm. +

+For example, + +

+memset 34 23 0 0 0 0
+
+ +specifies that virtual page 34 maps to physical page 23, +and that the page has not been read or modified. +

+Note: +

    +
  • Each physical page should be mapped to exactly one virtual page. +
  • The number of virtual pages is fixed at 64 (0..63). +
  • The number of physical pages cannot exceed 64 (0..63). +
  • If a virtual page is not specified by any memset command, +it is assumed that the page is not mapped. +
+ +

Other Configuration File Options

+ +

There are a number of other options which can +be specified in the configuration file. These are +summarized in the table below. +

+ + +
KeywordValuesDescription +
enable_loggingtrue
false +
Whether logging of the operations should be enabled. If logging +is enabled, then the program writes a one-line message for each +READ or WRITE operation. By default, no logging is enabled. +See also the log_file option. + +
log_file +trace-file-name +The name of the file to which log messages should be written. +If no filename is given, then log messages are written to stdout. +This option has no effect if enable_logging is false +or not specified. + +
pagesizen
+power p +
The size of the page in bytes as a power of two. +This can be given as a decimal number which is a +power of two (1, 2, 4, 8, etc.) or as a power of two using +the power keyword. The maximum page size is +67108864 or power 26. The default +page size is power 26. + +
addressradixn +The radix in which numerical values are displayed. +The default radix is 2 (binary). You may prefer radix +8 (octal), 10 (decimal), or 16 (hexadecimal). +
+ +

Sample Configuration File

+

+The "memory.conf" configuration file looks like this: + +

+// memset  virt page #  physical page #  R (read from)  M (modified) inMemTime (ns) lastTouchTime (ns)
+memset 0 0 0 0 0 0      
+memset 1 1 0 0 0 0      
+memset 2 2 0 0 0 0      
+memset 3 3 0 0 0 0      
+memset 4 4 0 0 0 0      
+memset 5 5 0 0 0 0      
+memset 6 6 0 0 0 0      
+memset 7 7 0 0 0 0      
+memset 8 8 0 0 0 0      
+memset 9 9 0 0 0 0      
+memset 10 10 0 0 0 0            
+memset 11 11 0 0 0 0            
+memset 12 12 0 0 0 0            
+memset 13 13 0 0 0 0            
+memset 14 14 0 0 0 0            
+memset 15 15 0 0 0 0            
+memset 16 16 0 0 0 0            
+memset 17 17 0 0 0 0            
+memset 18 18 0 0 0 0            
+memset 19 19 0 0 0 0            
+memset 20 20 0 0 0 0            
+memset 21 21 0 0 0 0            
+memset 22 22 0 0 0 0            
+memset 23 23 0 0 0 0            
+memset 24 24 0 0 0 0            
+memset 25 25 0 0 0 0            
+memset 26 26 0 0 0 0            
+memset 27 27 0 0 0 0            
+memset 28 28 0 0 0 0            
+memset 29 29 0 0 0 0            
+memset 30 30 0 0 0 0            
+memset 31 31 0 0 0 0            
+
+// enable_logging 'true' or 'false'
+// When true specify a log_file or leave blank for stdout
+enable_logging true
+
+// log_file 
+// Where  is the name of the file you want output
+// to be print to.
+log_file tracefile
+
+// page size, defaults to 2^14 and cannot be greater than 2^26
+// pagesize  or <'power' num (base 2)>
+pagesize 16384
+
+// addressradix sets the radix in which numerical values are displayed
+// 2 is the default value
+// addressradix 
+addressradix 16
+
+// numpages sets the number of pages (physical and virtual)
+// 64 is the default value
+// numpages must be at least 2 and no more than 64
+// numpages 
+numpages 64
+
+
+ +

The Output File

+ +

+The output file contains a log of the operations +since the simulation started (or since the last reset). +It lists the command that was attempted and what happened +as a result. You can review this file after executing +the simulation. +

+The output file contains one line per operation +executed. The format of each line is: +

+command address ... status
+
+where: +
    +
  • command is READ or WRITE, +
  • address is a number corresponding to a virtual memory address, and +
  • status is okay or page fault. +
+ +

Sample Output

+The output "tracefile" looks something like this: + +
+READ 4 ... okay
+READ 13 ... okay
+WRITE 3acc32 ... okay
+READ 10000000 ... okay
+READ 10000000 ... okay
+WRITE c0001000 ... page fault
+WRITE 2aeea2ef ... okay
+
+ + +

Suggested Exercises

+ +
    +
  1. Create a command file that maps any 8 pages of physical memory to +the first 8 pages of virtual memory, and then reads from one virtual +memory address on each +of the 64 virtual pages. Step through +the simulator one operation at a time and see if you can predict +which virtual memory addresses cause page faults. What page replacement +algorithm is being used? +

    +
  2. Modify replacePage() in +PageFault.java to implement a round robin +page replacement algorithm +(i.e., first page fault +replaces page 0, next one replaces page 1, next one replaces page 2, +etc.). +

    +
  3. Modify replacePage() in +PageFault.java to implement a least recently used +(LRU) page replacement algorithm. +

    +
+ +

To Do

+
    +
  1. +The user guide should tell a little bit about how replacePage works, e.g. +what data structures it uses, what the arguments are, +how it operates, how it makes it choice known, etc. +Add a section of documentation on how to implement a new +page replacement algorithm. This should explain a little about +what changes are needed in the GUI, what to call the page replacement +class, what fields and methods it needs to provide, and what +other changes might be needed. +
+ +

Copyright

+ +© Copyright 2001, Prentice-Hall, Inc. +

+This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. +

+This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. +

+You should have received a copy of the GNU General Public License +along with this program (see copying.txt); +if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +

+ +Please send suggestions, corrections, and comments to +Ray Ontko +(rayo@ontko.com). +

+Last updated: July 28, 2001 + + diff --git a/EOPSY/lab4/task4/work/user_guide_1.gif b/EOPSY/lab4/task4/work/user_guide_1.gif new file mode 100644 index 00000000..1c34506e Binary files /dev/null and b/EOPSY/lab4/task4/work/user_guide_1.gif differ