Smith decides that every thread in his processes ought to have its own protected stack – all other regions in a process would be fully shared. Does this make sense?
What will be an ideal response?
If every thread has its own protected stack, then each must have its own address space. Smith’s idea is better described as a set of single-threaded processes, most of whose regions are shared. The advantage of sharing an address space has thus been lost.
Computer Science & Information Technology
You might also like to view...
A(n) ________ is a business intelligence tool which extrapolates future values based on current trends
A) standard deviation B) analysis of variance C) frequency D) forecast worksheet
Computer Science & Information Technology
The Fibonacci sequence is defined as the sequence that begins with 0 and 1, and every other number in the sequence is the sum of the two preceding numbers. Write a recursive method that computes the number in the Fibonacci sequence.
What will be an ideal response?
Computer Science & Information Technology