4 This question is about multitasking In a co-operative multitasking operating system, the operating systems gives the appear- ance of running multiple processes at the same time by switching which process is cur- rently running on the CPU. Internally, the OS models the lifetime of a processes as moving between a series of states: Running, Blocked, and Runnable. (a) An extract from a C program is shown below, suppose that this code was executed on co-operative multitaskıng operating system.' which lines of the program would cause the operating system to move the process from the Running state to the Blocked state? tinclude tinclude tinclude define PRIME_LIMIT (1000000) int main(int arge, char **argv) int a,b; int prime[ PRIME_LIMIT]: char out [PRIME_LIMIT1: char *p, *q. **: int off; int i,j,n, ip; if (arge < 3) fprinti (stderr, "Not enough argumentau) ; exit (1) : a = atoi (argv[1]); b = atoi (argv121): if (b > 1000000 || a > b) { fprintf (etderr, "Invalid argumante0) ; exit (2) : printf("searching for prine numbers between and a, b) :

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Multitasking

4 This question is about multitasking
In a co-operative multitasking operating system, the operating systems gives the appear-
ance of running multiple processes at the same time by switching which process is cur-
rently running on the CPU. Internally, the OS models the lifetime of a processes as moving
between a series of states: Running, Blocked, and Runnable.
(a) An extract from a C program is shown below, suppose that this code was executed on
co-operative multitasking operating system. Which lines of the program would cause
the operating system to move the process from the Running state to the Blocked
state?
#include <stdio.h>
#include <string.h>
#include <stalib.h>
#define PRIME_LIMIT (1000000)
int main(int arge, char **arqv)
int a,b:
int prime [ PRIME_LIMIT];
char out [PRIME_LIMIT]:
*g.
char
*p.
int off;
int i,j,n, ip;
if (argc < 3)
iprinti (stderr,
exit (1):
"Not enough argumentau) :
a = atoi (argv[1]);
b = atoi(argv121):
if (b >
1000000 || a > b)
"Invalid argumante0) :
fprintf (etderr,
exit (2):
printi ("Searching
for
prine numbers between td
and
tdo,
a,
b) :
Transcribed Image Text:4 This question is about multitasking In a co-operative multitasking operating system, the operating systems gives the appear- ance of running multiple processes at the same time by switching which process is cur- rently running on the CPU. Internally, the OS models the lifetime of a processes as moving between a series of states: Running, Blocked, and Runnable. (a) An extract from a C program is shown below, suppose that this code was executed on co-operative multitasking operating system. Which lines of the program would cause the operating system to move the process from the Running state to the Blocked state? #include <stdio.h> #include <string.h> #include <stalib.h> #define PRIME_LIMIT (1000000) int main(int arge, char **arqv) int a,b: int prime [ PRIME_LIMIT]; char out [PRIME_LIMIT]: *g. char *p. int off; int i,j,n, ip; if (argc < 3) iprinti (stderr, exit (1): "Not enough argumentau) : a = atoi (argv[1]); b = atoi(argv121): if (b > 1000000 || a > b) "Invalid argumante0) : fprintf (etderr, exit (2): printi ("Searching for prine numbers between td and tdo, a, b) :
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Web Technologies
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education