Process and threads | Computer Science homework help

For this first assignment, you won’t be writing code; instead, you will be reading and executing the given below codes. Read the README instruction below for directions on how to compile and link the programs. Submit your answer in writing onto Blackboard.

  • Experiment 1. Thread and Process Creation
    Study the programs thr_create.c and fork.c. These programs measure the average time to create a thread using thr_create() and to create a process using fork(). Compile and execute the programs. What do you conclude from this experiment? Describe the reasons for the difference in timings.
  • Experiment 2. Processes vs Threads
    Study the two programs thr_shared.c and proc_shared.c. These programs are identical except that one uses threads and the other uses processes. Compile and execute the programs. What do you conclude from this second experiment? Explain the reason for the difference in behavior.
  • Experiment 3: The Update Problem
    Study the programs shared_data.c and SharedData.java. In these examples, multiple threads are both updating (i.e., modifying) a shared variable. Compile and execute both. Are the programs behaving “correctly”? What do you conclude from this experiment?
    README Instructions
  • Run the program on Linux platform.
  • To compile and run a C program (e.g., thr_create.c):
    gcc -o thr_create thr_create.c -lpthread thr_create
  • To build and run a classfile from the java code: javac SharedData.java
    java SharedData

page1image63834912 page1image63835200 page1image63835488 page1image63835776 page1image63836128 page1image63836416

Submission Guidelines and Requirements

  • Submit your answers for all the experiments as a PDF file onto Blackboard
  • Include your name, UCM ID and Certification statement in your solution:
    //Your name
    // Your UCM ID
    //Certificate of Authenticity: “I certify that the codes/answers of this assignment are entirely my own work.”

thr_create.c

page2image105196192

#include <sys/time.h> #include <stdio.h> #include <pthread.h> #include <errno.h> main()

{
struct timeval start,end; long forktime;
double avgtime; pthread_t last_thread; int i;
int iters = 250;
void *null_proc();

gettimeofday(&start,NULL);

for (i = 0; i < iters – 1; i++) /* create (iters-1) threads */ pthread_create(&last_thread,NULL,null_proc,NULL);

pthread_create(&last_thread,NULL,null_proc,NULL); /* create last thread */ gettimeofday(&end,NULL);

pthread_join(last_thread, NULL); /* wait for last thread */ forktime = (end.tv_sec – start.tv_sec)*1000000 +

(end.tv_usec – start.tv_usec); avgtime = (double)forktime/(double)iters;

printf(“Avg thr_create time = %f microsecn”, avgtime); }

void *null_proc() {}

for (i = 0; i < iters; i++) /* create iters processes */ {

if ((pid = fork()) == 0) /* child process */ {

null_proc();

exit(1); }

else if (pid == -1) {

/* error */

printf(“error %dn”,errno);

exit(-1); }

else /* parent process */ continue;

}

/* only parent process reaches this point */ gettimeofday(&end,NULL);
for ( i = 0; i < iters; i++) /* have to do a wait for each child */ wait(&status);
forktime = (end.tv_sec – start.tv_sec)*1000000 +

(end.tv_usec – start.tv_usec); avgtime = (double)forktime/(double)iters;

printf(“Avg fork time =%f microsecn”, avgtime);

} null_proc() {
}

fork.c

page3image65305088

#include <sys/time.h> #include <stdio.h> #include <errno.h>

main() {

int pid;
struct timeval start,end;
int i;
long forktime;
double avgtime;
int iters = 250;
int status; gettimeofday(&start,NULL);

#include <sys/time.h> #include <stdio.h> #include <pthread.h> #include <unistd.h> #include <stdlib.h>

void *proc();
int shared_number;

main() {

int i;
pthread_t new_thread; int sleep_time;
int seed;

shared_number = 1;

printf(“Enter a positive integer for seed: “);
scanf(“%d”,&seed);
srand48(seed); /* initialize seed of random number stream */

/* thr_create(NULL,0,proc,NULL,0,&new_thread);*/ pthread_create(&new_thread,NULL,proc,NULL);
/* create new thread */

for (i = 0; i < 50; i++) {

printf(“MAIN THREAD: i = %d, shared_number = %dn”,i,shared_number); sleep_time = 100000.0*drand48(); /* generate random sleep time */ printf(“sleep time = %d microsecondsn”,sleep_time);
usleep(sleep_time);

shared_number = shared_number + 2; }

pthread_join(new_thread,NULL);

printf(“MAIN THREAD: DONEn”); }

thr_shared.c

page4image105085200

void *proc() {

int i = 0; int DONE;

DONE = 0; while (!DONE)

{ i++;

if (i%10000 == 0)
printf(“CHILD THREAD: i = %d,shared_number = %dn”,i,shared_number);

if (i > 5000000) DONE = 1;

}
printf(“CHILD THREAD: DONEn”);

}

#include <sys/time.h> #include <stdio.h> #include <pthread.h> #include <unistd.h> #include <stdlib.h> #include <errno.h>

void *proc();
int shared_number;

main() {

int i;
pthread_t new_thread; int sleep_time;
int pid;
int status;
int seed;

shared_number = 1;

proc_shared.c

page5image105361792

printf(“Enter a positive integer for seed: “); scanf(“%d”,&seed);

srand48(seed);

if ((pid = fork()) == 0) {

proc();

exit(0); }

else if (pid == -1) {

printf(“error %dn”,errno);

exit(-1); }

else
{ /* parent process */

for (i = 0; i < 50; i++) {

/* initialize random number stream */ /* child process */

/* error */

printf(“MAIN PROCESS: i = %d, shared_number = %dn”,i,shared_number); sleep_time = 100000.0*drand48(); /* generate random sleep time */ printf(“sleep time = %d microsecondsn”,sleep_time);
usleep(sleep_time);

shared_number = shared_number + 2; }

wait(&status); /* wait for child process */

printf(“MAIN PROCESS: DONEn”); }

}

void *proc() {

int i;
int DONE;

DONE = 0;
i = 0;
while (!DONE)

{ i++;

if (i%10000 == 0)

printf(“CHILD PROCESS: i = %d,shared_number = %dn”,i,shared_number); if (i > 5000000)

DONE = 1; }

printf(“CHILD PROCESS: DONEn”); }

shared_data.c

page7image64682480

#include <sys/time.h> #include <stdio.h> #include <pthread.h> #include <unistd.h> #include <stdlib.h>

void *proc();
int shared_number;

main() {

int i;
pthread_t new_thread; int sleep_time;
int number;
int seed;

shared_number = 1;
printf(“Enter a positive integer for seed: “); scanf(“%d”,&seed);
srand48(seed);

pthread_create(&new_thread,NULL,proc,NULL);

for (i = 0; i < 20; i++) {

number = shared_number;
printf(“MAIN THREAD: i = %d, shared_number = %dn”,i,shared_number); sleep_time = 100000.0*drand48(); /* generate random sleep time */ printf(“sleep time = %d microsecondsn”,sleep_time);

usleep(sleep_time);

shared_number = number + 2; }

pthread_join(new_thread,NULL);

printf(“MAIN THREAD: DONEn”); }

void *proc() {

int number,i; int sleep_time;

printf(“CHILDn”); for (i = 0; i < 10; i++)

{
number = shared_number;
printf(“CHILD THREAD: i = %d, shared_number = %dn”,i,shared_number); sleep_time = 100000.0*drand48(); /* generate random sleep time */ printf(“sleep time = %d microsecondsn”,sleep_time);
usleep(sleep_time);
shared_number = number + 200000;

}
printf(“CHILD THREAD: DONEn”);

}

SharedData.java

import java.util.Random;
public class SharedData extends Thread {

static Random gRandom = new Random(); static int gSharedNumber = 0;
private int gID;
public SharedData(int id) {

page8image105399776

this.gID = id; }

public void run() { for(int i=0;i<20;i++) {

int number = gSharedNumber; System.out.println(“SharedData[“+gID+”](i=”+i+”) = “+gSharedNumber); try { Thread.sleep(gRandom.nextInt(1000));
} catch (InterruptedException e) { /* ignore */ }
if(gID == 0) gSharedNumber = number + 1;
else gSharedNumber = number + 1000;

} }

public static void main(String args[]) throws Exception { SharedData sd1 = new SharedData(0);
SharedData sd2 = new SharedData(1);

sd1.start(); sd2.start();

sd1.join(); sd2.join(); }

}

Calculate the price of your order

Choose an academic level, add pages, and the paper type you want.
To reduce the cost of our essay writing services, select the lengthier deadline.
We can't believe we just said that to you.

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more

Why is Purdue Papers the Most Helpful Essay Writing Service for You?

  1. Custom-written and plagiarism-free papers: Our authors create their work from scratch. Before presenting them to clients, we routinely verify them for signs of plagiarism. Our quality assurance group also double-checks and fixes any grammatical errors, assuring that all of our authors adhere to the same standards of writing.
  2. The significance of timely delivery cannot be overstated, and we consistently strive to meet or exceed our clients' deadlines. Regardless of the short time frame, you can count on our writers to get the job done. We always have a team of writers ready to go, even if the deadline is only six hours away.
  3. Customer Satisfaction: Our customer service representatives are the best in the business and have a wealth of knowledge in dealing with clients. All our customer service representatives are trained to listen and reply promptly until you are satisfied with their service. To ensure you're happy, our expert writers will strictly follow the criteria to generate a special report. Our customer service may be contacted by chat, email, or phone. In addition, we provide round-the-clock assistance to all of our clients.
  4. Confidentiality: Our systems are safe, and your information is always protected. We're constantly looking for new facts when it comes to finishing your work. We use a safe and secure payment channel. Since our ordering process is completely anonymous, you don't have to provide any credit card information to place a purchase with us.
  5. Highly Trained Authors: Our writers have received extensive training and are committed to delivering only the best papers. They are fluent in APA, MLA, HARVARD, IEEE, CHICAGO, and AMA referencing styles. To meet your expectations, our skilled writers always pay close attention to your instructions.
  6. Lowered prices: We have set prices that are already discounted. Our prices are the best and affordable for all our esteemed customers.

Let Professionals Take Care of your Academic Paper