How do job objects facilitate resource management for servers?

a) A server can group all the processes dedicated to servicing a client’s request (or all clients’ requests) in a job object and restrict the resources (e.g., processor time and working set size) allocated to those processes.
b) A server can queue work items to a job object, which dispatches one of its dedicated system worker threads to fulfill the request. This frees the server from unnecessarily creating and terminating threads for each client request.
c) A server can register a job object with an I/O completion port. When an I/O for a file associated with the port completes, the job object dispatches one of its dedicated system worker threads to complete I/O processing, freeing the server from this responsibility.
d) all of the above


a) A server can group all the processes dedicated to servicing a client’s request (or all clients’ requests) in a job object and restrict the resources (e.g., processor time and working set size) allocated to those processes.

Computer Science & Information Technology

You might also like to view...

Write a C++ fragment that displays the row and column subscripts of all occurrences of the value of variable target that are found in M ? N matrix matrix.

What will be an ideal response?

Computer Science & Information Technology

Identify the letter of the choice that best matches the phrase or definition.

A. Two or more paths united as one complete path B. Makes blend steps editable objects C. A series of intermediate objects between two objects D. Object that you use to "clip" other objects so that only the parts of the objects that are clipped are visible E. The see-through areas of a compound path

Computer Science & Information Technology

Is recursion the major argument for using a functional language? If not, what is?

What will be an ideal response?

Computer Science & Information Technology

Text formatted with the ________ formatting code will be preceded by a dollar sign and will be displayed with two decimal places.

a) C b) F c) E d) G

Computer Science & Information Technology